我有一个要求,我需要在单元格中放置文本框并输入值,并且必须在 submitaction 上读取值。我已经尝试编写如下代码...
field : 'costCenter',
name : "Cost Center",
width : '180px',
height : '20px',
styles : "text-align: center;",
cellStyles : "text-align: left;font-weight: normal;",
classes : 'grid_header_title',
editable : true,
type : dojox.grid.cells.DateTextBox,
formatter: function(item){
var txt= new dijit.form.TextBox();
return txt;
这对我不起作用。谁能帮我?