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
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 PavlovInfragistics, Inc.