3.2.0

Cell Edition -- Revert Changes Possible ?? .....

Although the mentioned ( possible bug ?? ) in Moz/FF with the line:
obj.raiseEvent("editCurrentCell", {}, col, row);
/javascript.forum.13363.3/setting-focus-on-a-cell.html
It is OK in IE, but i can not get the desire results on this.

note: What i am trying is not leave (re-enter) edition untill pass validation.
issue: double-click on a different cell ( while editing) broke my test.

Is there a better way to arcieve it ?? ( I admit I'm missing the point )
8-) Thanks

var lastText;
obj.onCellEditStarted = function(event, column, row){
lastText = this.getCellText(column,row);
}

obj.onCellEditEnded =    function(text, col, row){
if(obj.getCellText(col,row)== "validvalue" ){}
else{
if(text != lastText ){
if (confirm("VALIDATION ERROR !! -- Revert Changes to ?" + lastText + ' ' + col + ' ' + row)){
obj.setCellText(lastText,col,row);
obj.raiseEvent("editCurrentCell", {}, col, row);
}
else{ obj.raiseEvent("editCurrentCell", {}, col, row);} 
}
}
} ;
Carlos
April 13,
Sorry, seems to be something wrong in my code ( not sure what) ???,
It's working fine now, just a small issue ( but not a big problem), if double-click in a cell ( but not on current selected one) the edition is open in the selected instead of the new d-c one ?
Thks
Carlos
April 13,
And also the only way to leave edition is by single-click on another cell (but not dbl-click) ??
Well not too bad, but wondering about user clicks-interaction when editing validated or not-V mixed cells.
Carlos
April 13,
Carlos,

for validation it might be better using onCellValidating and onCellValidated events.

http://www.activewidgets.com/aw.ui.grid/cell-edit-events.html

There is an example in /examples/new/editing.htm which shows how to use onCellValidating event - if you return non-zero value (error message) then the focus will stay in the cell.
Alex (ActiveWidgets)
April 13,
Thanks Alex, I tried that before this test ,but I was not able to make the revert-value plus maitain edit-focus works with onCellValidating/ed events.

i.e : obj.setCellText(lastText,col,row);

So I tried the onCellEditEnded event. Sorry if I am missing something simple , (as I said before my point today is a little....).
Could you Please (nothing urgent) show a small test-sample with this events to make both things work ??
Thanks
Carlos
April 13,

This topic is archived.

See also:


Back to support forum