Hi,
is there a way to get the jqxEditor as cell editor into the grid?
I’ve tried the initeditor and createeditor functions, but I do not get it running:
initeditor: function (row, cellvalue, editor, celltext, pressedChar)
{
var editorElement = editor.find('textarea');
var ds = $("#mygrid").jqxGrid('source');
editorElement.val(ds.records[row].Text);
},
createeditor: function (row, cellvalue, editor, celltext, cellwidth, cellheight)
{
var editorElement = $('<div><textarea></textarea></div>').prependTo(editor);
editorElement.jqxEditor({ height: '100%', width: '100%' });
}