Home >Backend Development >PHP Tutorial >How to Highlight jqGrid Rows Based on Checkbox Selection?
Highlighting Rows Based on Checkbox Status in jqGrid
When working with jqGrid, you may encounter a scenario where you want to highlight rows based on the state of a checkbox. This feature can provide a clear and visual representation of selected rows.
Implementation:
jQuery UI ThemeRoller
A simpler approach is to utilize the jQuery UI ThemeRoller to style your checkbox cell. This method involves customizing the appearance of the cell based on the checked state. You can achieve this by adding the following CSS to your code:
.ui-jqgrid .ui-sgfcb .ui-state-checked { background-color: #ffff99; }
Custom Styling
If you prefer a more tailored approach, you can implement your own styling using the rowattr callback. This callback allows you to define custom attributes for each grid row, enabling you to dynamically modify the row's appearance based on the checkbox value. A sample implementation would be:
rowattr: function (rd) { if (rd.GroupHeader === "1") { return {"class": "highlighted-row"}; } }
In this case, the highlighted-row class would contain your custom styling for the highlighted rows.
Other Considerations:
The above is the detailed content of How to Highlight jqGrid Rows Based on Checkbox Selection?. For more information, please follow other related articles on the PHP Chinese website!