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'?
Hello danenatoli ,
Please let us know if you have further questions after Viktor's assistance.
That's fine, I'll wait to see what changes there are in the service release scheduled for September.
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://ko.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.