0

我有一个要求,我需要在单元格中放置文本框并输入值,并且必须在 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;

这对我不起作用。谁能帮我?

4

1 回答 1

1

这将在您的数据网格中放置一个文本框

    var _count = 0;
{
    field      : 'costCenter',
    name       : "Cost Center",
    style      : "width: 180px; height: 20px; text-align: center;",
    editable   : true,
    type       : dojox.grid.cells._Widget,
    formatter  : function(){
       return new dijit.form.TextBox({
         id: "id_"+_count++
       });
    }
}
于 2012-10-16T14:57:56.107 回答