I have an editable boolean column. At the moment when it is not in 'edit mode' it shows either the word 'true' or 'false'. When I go into 'edit mode' it displays a tick box. Is there any way I can make it display that tick box even when it is not in 'edit mode'?
I don't know if this will fit your requirements, but one way of doing this is by using Row Templating. With it you can apply conditional styles to the row based upon a field value. You can also insert a checkbox column and convert your data to checked/unchecked.
A tutorial by Taz Abdeali can be found here:
https://es.infragistics.com/community/blogs/b/taz_abdeali/posts/jquery-templating-tips-amp-tricks
Example template might look like this:
<td> <input type='checkbox' {{if FieldName == 'yes'}} checked='checked'{{/if}} /></td>
Hope that helps.
That's fine, I'll wait to see what changes there are in the service release scheduled for September.
Hello danenatoli ,
Please let us know if you have further questions after Viktor's assistance.
Hi Danenatoli,
Current version of grid displays strings for bool columns. Display of checkbox images is on list of features to implement.
For consistancy, (not released version) uses editor for boolean column as drop-down list with 2 true/false values instead of <INPUT type=checkbox>.