Ϊ1$_*fQ뿡 tWY<̛&`EQk>zfKBr%yVA͖m8W@5;%uE MJ 4(r%M{" ĊiLʬ 9TEC6ik\6O`uegXi$6CDպ^i6˸m'BW`i-/w>qQI^ZNAsqɾ:3u`{:Wl n+{HdU|й}@tse J N5[y-ģL7͌2!UyߖiN؝1$EP>rh=KB,+?gs;(Yw2m *])6"Jֻ 5AyYA=Fӿ=*s\JH&\bEH$$1=3 *yckheMW5&wqbDdOP%" ڟ1 @}fտy&+5ޏY \8UJUAPA>V|ld_u\ / x8㝶Vl}|G^<1=3 *yckheMW5&wqbDdOPs?JDG|끽 TQ͙|ѓw-$B j&9)ֈK1UCjiR]*KOBYLqQI^ZNAsqɾ:3u`{:eI4SSʐd}@tse J N5[y-ģLɀk7DZ  (QC.3RD`(lWP<`E9۫p8ǜ_erN `\g2%]g|5W0Q& WU\{&)7#L^ Qx u{k49L'Jh<NhK"a@LVK'=mhܪHm,?Ce4{[cx e7ޘ+kbfw3ĄFm@Ī{ ϒ֒]*۸n8dGoň9ρ^{sWl3Ybm yɡNuzsD-Il;κ`qUYv[kl!GT"-cFCĶ겺#^}oL4 jYQd O\[^>/ aR?DZv^IڅeVz|}+DԗhTw,ꍴ̊9YOaOI(Sir6EZ4Q/)}r0J/A Bvrʽv˦ѯ?|b<&lŋa}=Co 3ʥ\v2 &(pԵT'w0(_ ̵dJaP,Kk\򊻲;hJI|zbnwOIW皍v2Mk&vJ$78G[JdY': ,p.64/.F_R ڴV~UCLTƁ.,$ߪF;DTbeCWJS5>`S'_iΥTE8nn&,`\fbS#_\b-CH 8GvҦd->y|tACoDh $N}:)Eߩ4@u E6 | ȸ!Q9$tU@2zQ\—ڴV~UCLTƁ.,<K F)1 *q718nn&,`\f<*2'“^k 5۔m)wEF2r]ʜA"1A[-J&!B'o1:Ew%'N оڷ'вky value. The callback is called each time the editor is displayed. if (row == 0) { editor.jqxNumberInput({ decimal: parseInt(cellValue)}); } else if (row == 1) { editor.jqxDropDownList('selectItem', cellValue); } else if (row == 2) { var checkBoxHTMLElement = editor.find('div:first'); checkBoxHTMLElement.jqxCheckBox({ checked: cellValue.toString() == "true" }); } } var gridEditorValue = function (row, cellValue, editor) { if (row == 2) { var checkBoxHTMLElement = editor.find('div:first'); return checkBoxHTMLElement.val(); } return editor.val(); } // initialize jqxGrid $("#jqxgrid").jqxGrid( { width: 850, autoheight: true, source: dataAdapter, editable: true, selectionmode: 'singlecell', columns: [ { text: 'Name', pinned: true, editable: false, datafield: 'Name', width: 150 }, { text: 'Boston', columntype: 'custom', datafield: 'Boston', width: 150, createeditor: createGridEditor, initeditor: initGridEditor, geteditorvalue: gridEditorValue }, { text: 'Berlin', columntype: 'custom', datafield: 'Berlin', width: 150, createeditor: createGridEditor, initeditor: initGridEditor, geteditorvalue: gridEditorValue }, { text: 'London', columntype: 'custom', datafield: 'London', createeditor: createGridEditor, initeditor: initGridEditor, geteditorvalue: gridEditorValue } ] }); });