Hi experts, my customer need to see bold content as long as this row is expandable. Is is possible to do that?
Hello srajagopal,
Try with the following style:
.ui-iggrid-headerbutton.ui-icon + span { font-weight: bold;}
Hope this helps,Martin PavlovInfragistics, Inc.
this really bold my expandable header buttons!! How to bold corresponding rows content in grid area?
Making the row content bold cannot be achieved with CSS, so you'll need some JavaScript code executed on "pivotGridRendered" event.
Here is a code snippet:
pivotGridRendered: function (evt, ui) {
ui.owner.element.find(".ui-iggrid-headerbutton.ui-icon").each(function (ix, el) {
$(el).parents("tr").css("font-weight", "bold");
});
}
it works thank you very much!