-
Notifications
You must be signed in to change notification settings - Fork 351
Closed
Description
Ok, I can set a field to be 'selectable' with data-identifier="true", but and what else?
I'm using a dirt tricks to get the ids:
<form id='myDirtForm'>
<table id='myTable'>
<thread>
<th data-column-id="id" data-identifier="true" data-visible="false">Id</th>
<th data-column-id="name">Id</th>
...
</thread>
</table>
</form>
<script>
var dataToBeManipuled = $('#myDirtForm').serializeArray();
...
</script>
Unfortunately this trick doesn't work when I'm using pages.
What's the point to be able to select rows if I can get that selection back?
Looking at the source, I found the variable 'selectedRows', but I couldn't expose it.
Any help?
Reactions are currently unavailable