Is it possible to have some different icons in checkbox ?
Like for the Reject column I want a 'cross' when clicked
The Datasource of table is like below :
The Datasource of table is like below :
You can render a checkbox view for that column by providing the viewPath in columns property of the table.
In the checkbox view, set checkedIcon.path as material/close. You can style it as per your requirement.
Agreed, but , let's say we render a view for the checkbox, on that check box we can have selected / deselected functionality, but it would be on that check box view,
How to get the data after performing some operation on that view. I was not able to find a property, where I can fetch the data of the row.
After this I'm making the Approve checkbox High
How to have the feedback of the view with respect to row, as there will be manny rows
There are few methods for doing that. I have used message handler to write back to the data property of the table after the change has been made.
Ryan has suggested writing to the database directly when you make the change if the data is coming from database.
Try whatever works for you.
I think message handler would be the solution for me as of now, just because I do have some other operations to perform before updating that in my database table.
Currently,Other than this I do not see any more options to achieve the said functionality.
Thanks!