Dear Abu,
I want to use "jQuery Tokeninput" library instead of "Select2" library. Can u please help me in that.
Reference:-
———–
http://loopj.com/jquery-tokeninput/
Thanks
Rankaj
1 Answers
As this lib need json data from backend, this is not support in phpgrid right now.
If you can code your php script that return json data, then it's doable to connect it with any column of grid using dataInit option.
For reference, review demos/integration/<any-file>
$col["editoptions"]["dataInit"] = "function(){ setTimeout(function(){ ……. },200); }";
Inside function, you can put tokeninput init code.
Your Answer