Hi,
How I can make a iggrid row strike through .
Thanks,
Hi Manju HM,
You can handle the igUpdating's editCellEnded event to accomplish this. You can handle this event and get access to the row with the igGrid's cellById method to add/remove the class to it.
I have modified my previous jsFiddle and you can find the new one here. This sample uses the rowsRendered event to determine if any rows should have the strike through class added during initialization and uses the above method to add a strike through for a row when the user edits the checkbox column and commits the row.
If you need further assistance with this, please let me know.
Thanks for your help.
Could you please help me in below scenario.
In my grid i have columns called shipment id, location, item , in delete(which is check box) . Now I need to see all the rows for this grid and if the "in delete" check box is checked then i need to do some thing for that row. So how I can do this.
Thanks
Hello Manju HM,
Thank you for posting in our forums!
You can apply strike-through to a row by adding a class to the tr element for the row and by creating some CSS to use the text-decoration: line-through style.
You can see an example of how to achieve this during the rowsRendered event with this jsFiddle I have created.
If you have any further questions or concerns with this, please let me know and I will be glad to help.