私は項目のドロップダウンを表示し、複数のエントリ(トークンボックスを考慮)を許可しなければならない列の1つに対してjqGridを持っています。現在のところ、トークンボックスは1行だけに表示されていますが、すべてのレコードに対してトークンボックスが必要です。複数のエントリのjQgridの列の1つにトークンボックス?
$(document).ready(function() {
createCSDGrid();
})
function createCSDGrid() {
var lastsel
$('#Grid').jqGrid({
url: CSDDataUrl,
datatype: "json",
mtype: 'GET',
colNames: ['ID', 'A', 'B', 'C', 'D', 'E'],
colModel: [
{
name: 'ID',
index: 'ID',
hidden: true,
editable: true
}, {
name: 'a',
index: 'a'
}, {
name: 'b',
index: 'b'
}, {
name: 'c',
index: 'c',
editable: true,
editoptions: {
dataEvents: [{
type: 'blur',
fn: function(e) {
try {
$('#grid').jqGrid('editCell', 4, false);
} catch (e) {
//Do nothing}
}
}
}]
}
}, {
name: 'd',
index: 'd',
editable: true,
formatter: function(cellValue, options, cellObject) {
var id = options.rowId;
return "</p><input type='text' id='tokeninput-demo'/></p>";
},
editoptions: {
dataEvents: [{
type: 'blur',
fn: function(e) {
try {
$('#grid').jqGrid('editCell', 5, false);
} catch (e) {
//Do nothing}
}
}
}],
}
}, {
name: 'e',
index: 'e',
editable: true,
editoptions: {
dataEvents: [{
type: 'blur',
fn: function(e) {
try {
$('#grid').jqGrid('editCell', 6, false);
} catch (e) {
//Do nothing}
}
}
}]
}
}
],
toolbarfilter: true,
scrollrows: true,
rowNum: 100,
rownumbers: true,
pager: '#jqGridPager',
'cellEdit': true,
'cellsubmit': 'clientArray',
//editurl: addNewRowUrl,
loadonce: true,
recordtext: "Record Count: {1}",
sortable: true,
pgbuttons: false,
pgtext: null,
jsonReader: {
repeatitems: false
},
viewrecords: true,
rownumWidth: '50px',
width: $('#Grid').width(),
loadComplete: function() {
$("#tokeninput-demo").tokenInput("http://jquery-tokeninput-demo.herokuapp.com", {
theme: "facebook"
});
});
}
どのようにすればいいですか?
質問を編集して関連コードを追加してください。 –