Popup From Grid

Hi,

If i click to edit a particular cell iam displaying a popup in that iam displaying a textbox with populating the cell value, but after edit in the popup (populated cell value) iam not able to get that edited value in to the particular cell value (even in to the grid)???



can u help me out???



Thanks

Praveen

By default, value from popup editor will be set back in grid after finishing edit operation. It can be forced by clicking anywhere outside of edit area or programmatically (grid.editStop)
If value not set in grid even after edit finished - please check if onEditCell event used in your code. If such event used - be sure that it returns true at the end of custom event code, because returning false or no returning anything from this event handler will be threated as “deny edit result” command.