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
975
how to ad a button to an unbound column
posted

Ive used this code to try to ad a buton to an unbound column

.Columns(column =>
        {

              column.Unbound("View").Width("100px").Template("<input type='button' onclick='viewDetail(${Detaild})' value='View' class='fa fa-binoculars'/>");

              display columns here.......

})

and an associated js function

but as soo n as i ad this, the grid stops rendering

whats the best way to add buttons in an igGrid ?