RE: [flexcoders] Can validation prevent text input entry?

2007-03-20 Thread Alex Harui
No, validation is not blocking. It is just that the itemEditor is going away. What most folks do is check validation on ITEM_EDIT_END and prevent the change to the dataprovider by calling preventDefault(). You can also catch ITEM_EDIT_BEGINNING and return the editor to the bad cell if the user

Re: [flexcoders] Can validation prevent text input entry?

2007-03-20 Thread Lex
: RE: [flexcoders] Can validation prevent text input entry? No, validation is not blocking. It is just that the itemEditor is going away. What most folks do is check validation on ITEM_EDIT_END and prevent the change to the dataprovider by calling preventDefault(). You can also catch