javascript - Is it possible to style jsTree checkboxes like input controls -
i have web application using standard checkboxes in various places
<input type="checkbox"...
recently have added jstree (v3.3.0) checkbox plug in. i've not come across jstree before.
what style check-boxes same input control.
i have seen various solutions along lines of altering images in png file (like these) seems bit fiddly , worry after managing solution hack input controls rendered differently in different browsers.
i'm not sure useful tbh include code...
/** * prepare tree data */ $(document).ready(function() { $('#divid') .on( "changed.jstree", function(e, data) {}).jstree({ 'core' : { 'data' : $scope.treedata, "themes" : { "icons" : false, "responsive":true } }, "plugins" : [ "checkbox","search"] }); });
is there different way override jstree use 'standard' styling rather images ?
Comments
Post a Comment