i need to change some cells from one of the columns in my jqgrid.
I need to put a conditional statements to differentiate each cell, but I have 4.0.0 jqGrid version and the colModel hasn't got the attribute cellattr
Now, this is what I have:
colModel:[
{
name : 'compras',
index : 'num_compras',
jsonmap : 'num_veces',
width : 50,
edittype :'select',
formatter:'showlink',
formatoptions:
{
baseLinkUrl:'/myURL'
}
}
]
I need to make not clickable some of that cells, because they are like anchor tag.
Thank you in advance!!