You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/components/action-list/readme.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,9 +20,9 @@
20
20
|`model`| -- | This property lets you define the model of the control. |`ActionListItemModel[]`|`[]`|
21
21
|`modifyItemCaptionCallback`| -- | Callback that is executed when a item request to modify its caption. |`(actionListItemId: string, newCaption: string) => Promise<void>`|`undefined`|
22
22
|`removeItemCallback`| -- | Callback that is executed when and item requests to be removed. If the callback is not defined, the item will be removed without further confirmation. |`(itemInfo: ActionListItemActionable) => Promise<boolean>`|`undefined`|
23
-
|`renderItem`| -- | This property allows us to implement custom rendering of tree items.|`(itemModel: ActionListItemModel, actionListRenderState: ChActionListRender, disabled?: boolean, nested?: boolean, nestedExpandable?: boolean) => any`|`defaultRenderItem`|
23
+
|`renderItem`| -- | This property allows us to implement custom rendering of action-list items. |`(itemModel: ActionListItemModel, actionListRenderState: ChActionListRender, disabled?: boolean, nested?: boolean, nestedExpandable?: boolean) => any`|`defaultRenderItem`|
24
24
|`selection`|`selection`| Specifies the type of selection implemented by the control. |`"multiple" \| "none" \| "single"`|`"none"`|
25
-
|`sortItemsCallback`| -- | Callback that is executed when the treeModel is changed to order its items.|`(subModel: ActionListModel) => void`|`defaultSortItemsCallback`|
25
+
|`sortItemsCallback`| -- | Callback that is executed when the action-list model is changed to order its items. |`(subModel: ActionListModel) => void`|`defaultSortItemsCallback`|
26
26
|`translations`| -- | Specifies the literals required for the control. |`{ confirmDelete: string; cancelDelete: string; confirmModify: string; cancelModify: string; }`|`actionListDefaultTranslations`|
0 commit comments