On 25 Apr., 08:09, Xploit <
dimat...@gmail.com> wrote:
> Cut of my code for grid:
>
> Setup ColModel:
>
> $colconfig = new PhpExt_Grid_ColumnConfigObject($row['Field']);
> $colconfig->createColumn($row['Field'],$row['Field'],
> $row['Field'],null, null, null, true, false);
> $f = new PhpExt_Form_TextField();
> $f->setAllowBlank(false);
> $colconfig->setEditor($f);
>
> Setup Grid:
>
> $grid = new PhpExt_Grid_EditorGridPanel();
> $grid->setStore($store)
> ->setColumnModel($colModel)
> ->setAutoWidth(true)
> ->setAutoHeight(true)
> ->setBorder(false);
>
> After, grid allow to edit my data. But when click on cell i see that
> cell value:
>
> <div id="ext-gen2126" class="x-grid3-cell-inner x-grid3-col-2"
> unselectable="on">xploit</div>
>
> How i can create working editable grid. Result should behttp://