rstaib/jquery-bootgrid

'selection' and 'rowSelect' properties don't work with Ajax

ShaydullinR opened this issue · 1 comments

'selection' and 'rowSelect' properties don't work with Ajax

settings:
$("#grid-basic").bootgrid({
ajax: true,
url: "response.php",
selection: true,
multiSelect: true,
rowSelect: true
});

putting data-type to 'string' in the identifier column solved the issue
<th data-column-id="id" data-type="string" data-identifier="true" data-width="5%">ID</th>