In continuation with this post:
https://community.skuid.com/t/is-it-possible-to-render-a-picklist-field-in-a-field-edi…
Can I display this rendered Multiselect picklist in ‘Checkboxes’ format? Like the same way Skuid displays for multiselect picklist when we select ‘checkboxes’ as field renderer.
Page 1 / 1
Yes, use this Snippet:
var field = arguments[0],<br> value = skuid.utils.decodeHTML(arguments[1]);<br>field.options.type = "CHECKBOXES";<br>skuid.ui.fieldRenderers.MULTIPICKLIST[field.mode](field,value);<br>field.options.type = "CUSTOM";
It worked, thanks!
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.