Is it possible to change the look of a Slickgrid so that in a mobile application every row looks like a button? Also, seems like applying a formatter to a column (in order to put a button in it), like this:
function linkFormatter(row, cell, value, columnDef, dataContext) {
return "<a href='myUrl' data-role='button'>View... </a>";
}
does not affect the appearence of the cell, and its content always looks like a normal link. Any suggestion would be appreciated.
Thanks!