这是我的代码
$("#list").jqxGrid(
{
{ text: 'Confirm Note', columntype: 'textarea', datafield: 'confirmNote', width: 110,
initeditor: function (row, column, editor) {
editor.attr('maxlength', 1500);
}
}
}
这是创建textarea框。
问题是当我在文本框中粘贴某些文本时
这是在文字下面:
测试1
测试2
测试3
然后只有TEST 1进入文本框,省略了TEST 2和TEST 3.