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
460
Delete row option
posted

In igGrid (Jquery UI Grid),

I wanted to have the delete row icon at the front of the row (left aligned) instead of the right end of the row. How can I accomplish this?

Thank you

Parents
No Data
Reply
  • 23953
    Verified Answer
    Offline posted

    Hello Krishna,

    You can use CSS to change the position of the delete button. Here is an example CSS:

    <style type="text/css">
    .ui-iggrid-deletebutton {
    margin-left: 10px !important;
    }
    </style>

    You also have to keep in mind the alignment of the text of the most left column.

    Hope this helps,
    Martin Pavlov
    Infragistics, Inc. 

Children
No Data