Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
830
How to change the font-weight of a cell in client side
posted

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 :)

 

Parents
No Data
Reply
  • 830
    Verified Answer
    posted

    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 :)

Children