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
630
CssClass For RowAdding and RowUpdating
posted

I use the Default style of infragistics 14.1

What is the CSS i need to change see in my image:

RowUpdating :  i want to have text color in blue and italic - myCSSRowUpdating  {color:blue;font-style: italic;}

RowAdding : i want i backcolor yellow - myCSSRowAdding   {background-color: yellow;}

Parents
No Data
Reply
  • 7499
    Verified Answer
    posted

    Hello Danjut,

    By overriding the following CSS classes you will  get the desired results

     

    .igg_Alt.igg_UpdatedRow td

    {  

    color:red !important;

    font-style: italic;

    }

    tbody tr.igg_AddedRow td

    {

    background-color: yellow;

    color:#666;

    font-style: italic;

    }

Children
No Data