Is there a way in jqgrid to have an editable column that uses a select like in this colModel example:
{
name: 'Options',
index: 'Options',
width: 150,
align: 'left',
resizable: false,
editable: true,
edittype: 'select',
editoptions: {
value: function() { return buildSelect(); }
},
formatter: 'select'
}
but always shows the select?
I've got this working before with checkboxes, but there doesn't seem to be a way of doing it with selects. Ideally I'd like this to work in celledit mode. Any ideas?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…