Hi team,
I would like to set the tool tip text for toolbar disabled items. For eg: If the user is not authorized to perform any adding/editing/deleting operations on the datagrid, the user should be able to see a tool tip saying "You are not authorized to perform any changes to the data, To make changes please login."
I was able to disable/enable the toolbar items using the below code. AllowEditing is a bool variable and is set to true or false based on user authorization status.
<GridEditSettings AllowAdding="@AllowEditing" AllowEditing="@AllowEditing" AllowDeleting="@AllowEditing" />
Thanks
Baba