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
845
Make italic edited row bold
posted

Hello,

How do you make the text of an edited row bold? By default, an edited row's text becomes italic, which is fine, but i would like to make it bold and italic. How do you do this?

Thanks

Deon

Parents
  • 20255
    Verified Answer
    Offline posted

    Hello Deon Meyer,

     Thank you for using our forum!

     About you question, how to set the row's text italic and bold after updating, it depends how you are referencing the .css files of your webpage. If there are local, you can find the infragistics.css file and add font-weight attribute to the .ui-iggrid-modifiedrecord class:

    .ui-iggrid-modifiedrecord>td{font-style:italic; font-weight:bold;}

     If you are using CDN links my suggestion is to override the css class like this:

    <style>
            .ui-iggrid-modifiedrecord > td
            {
                font-style: italic;
                font-weight: bold;
            }
     </style>

     If you have any further questions regarding this do not hesitate to contact me!

Reply Children
No Data