1. For the subgrid, I want to change the “>” symbol to a different symbol, or image, or a button.
If possible, how?
2 Answers
To change the subgrid icon, refer to this grid option.
$opt["subGridOptions"]["plusicon"] = "ui-icon-carat-1-e";
$opt["subGridOptions"]["minusicon"] = "ui-icon-carat-1-s";
You can see all icon css classes here: https://github.com/mkkeck/jquery-ui-iconfont
append “ui-icon-” before icon name in above sheet.
Most likely this font is updated and we’re using older version. I’ll update + test new version and update you back.
Your Answer