I am using JQuery Bootgrid for my table display, pagination, search, etc. What I do not like about it are the command buttons, I just want to add simple html buttons to my tables such as:
echo "<td><a href='expensereport.php?source=editexpenses&p_id=$expenseID'><button class='btn btn-primary btn-icon' type='button'><span class='zmdi zmdi-edit'></span></button></a>";
This approach works great until I use
<table id="data-table">
which tuirns on bootgrid. Bootgrid will not display the button, at all in my table. Does anyone know how to turn off the bootgrid command buttons so I can add my own? My buttons work great until I add bootgrid, which is refusing to display them in my tables. Thank you for your help I am new to Bootgrid.