Hi, how do we change the font weight of a cell on client: something like:
rowOfInterest.get_cell(1).get_element().style.font-weight = 'bold';
But that s not working for me !!
I tried the following also without success:
rowOfInterest.get_cell(1).get_element().style.font.weight = 'bold';
Thanks :)
Hi rtutus,
Thank you for posting in the community and sharing your solution. This information may prove useful to the other community members.
Please let me know if you need further assistance.
Best Regards,
Petar IvanovDeveloper Support EngineerInfragistics, Inc.http://es.infragistics.com/support
as the guy said in other post, 2 minutes after i post the question, i found the answer:
rowOfInterest.get_cell(1).get_element().style.fontWeight = 'bold';
Thanks for looking :)