| Attributes |
| Name | Required | Request-time | Type | Description |
| list | false | true | java.util.List | Contains the list to display. This list must be filled with standard bean. This attribute is not compatible with the processProvider one. |
| beanClass | false | true | java.lang.String | The type of bean contained in the list. Required if canAdd attribute is set to true, for instantiation. Full packaged class name is required. |
| processProvider | false | true | com.ideo.sweetdevria.taglib.list.process.IListProcessProvider | Set a custom process provider for this list enabling you to define your own methods add, modify, delete and move. This attribute is not compatible with the list one. Type is com.ideo.sweetdevria.taglib.list.process.IListProcessProvider. |
| format | false | true | java.lang.String | Javascript format method name to format the bean data in the list. |
| canDelete | false | true | java.lang.Boolean | True if the user can delete list items, false otherwise. Default value is false. |
| canAdd | false | true | java.lang.Boolean | True if the user can add a new list item, false otherwise. |
| canModify | false | true | java.lang.Boolean | True if the user can modify a list item, false otherwise. Default value is false. |
| canResize | false | true | java.lang.Boolean | True if the user can resize the list, false otherwise. Default value is false. |
| canOrder | false | true | java.lang.Boolean | True if the user can modify the list order, false otherwise. Default value is false. |
| width | false | true | java.lang.Integer | The list width in pixel, as an integer. By default, no width is defined (100%). |
| height | false | true | java.lang.Integer | The list height. If null, the height will get adapted to the number of items. |
| windowWidth | false | true | java.lang.Integer | The window width. Default is 400 |
| windowHeight | false | true | java.lang.Integer | the window height. Default is 300 |
| formId | false | true | java.lang.String | The window form identifier. Default is this.id+'_form' |
| articlesFetched | false | true | int | The number of article fetched among the last one. |
| itemPerPage | false | true | int | The number of items shown on one page. |
| rss | false | true | java.lang.String | The address of a Rss feed. Incompatible with processProvider attribute. |
| frameDisplayed | false | true | boolean | Specify whether or not a frame should be displayed around the component. (true by default) |
| stateful | false | true | boolean | Define whether this attribute must keep its state according to the page configuration |
| id | true | true | java.lang.String | Unique Identifier. Accepts EL. |
| style | false | true | java.lang.String | Css style. Accepts EL. |
| styleClass | false | true | java.lang.String | Css class style. Accepts EL. |
| rendered | false | true | boolean | Rendered or not, acceptable values are: [true(default), false]. |
| templateStart | false | true | java.lang.String | Special velocity start template to replace default. Accepts EL. |
| templateEnd | false | true | java.lang.String | Special velocity end template to replace default. Accepts EL. |