English 中文(简体)
Inline-editable fields goes away on clicking them
原标题:

When I just load the page there are all the fields, but when I click on them, then the clicked field just disappears. However, no changes are applied to DB.

This is the code:

function page_users_listing($p){
            $g = $this->add( Grid );
            $g->addColumn( inline , first_name );
            $g->addColumn( inline , last_name );
            $g->addColumn( text , telephone );
            $g->addColumn( expander , comments );
            $g->setSource( client );
        }

What could I missing?

最佳回答

It seems to work fine with 4.0.3.

http://codepad.agiletoolkit.org/editablef

If you are on 4.1 branch it might have something to do with changes to "reloading" mechanism and is a bug.

问题回答

暂无回答




相关问题
How to get row index of the selected cell in WPF grid

Does anyone knows how to get row index of the selected cell in DevExpress WPF grid? In WinForms it was something like that: dataGridViewControll.SelectedCells[0].RowIndex;

TextBoxColumn in DevexpressGridControl (WPF)

In Windows grid is sucha a thing like DataGridViewTextBoxColumn col = new DataGridViewTextBoxColumn(); Is something like that in DevExpress GridControll for WPF?Or maybe is possible to do some ...

Grid Chart using GWT

Is there any library in gwt that will create grid chart, something similar to this : http://www.eyescience.com/images/vision/amsler_grid.gif. Thank you.

PBS and specify nodes to use

when you submit jobs to a PBS server, is it possible to specify the nodes that we want to use in a list? Thanks

Grid sorting with persistent master sort

I have a UI with a grid. Each record in the grid is sorted by a "master" sort column, let s call it a page number. Each record is a story in a magazine. I want the user to be able to drag and drop ...

热门标签