From: Argiris K. <be...@us...> - 2006-02-08 20:48:53
|
Update of /cvsroot/magicajax/magicajax/Core/UI/Controls In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7502/Core/UI/Controls Modified Files: AjaxPanel.cs Log Message: Removed the disabling of client validators. Index: AjaxPanel.cs =================================================================== RCS file: /cvsroot/magicajax/magicajax/Core/UI/Controls/AjaxPanel.cs,v retrieving revision 1.58 retrieving revision 1.59 diff -C2 -d -r1.58 -r1.59 *** AjaxPanel.cs 8 Feb 2006 08:29:12 -0000 1.58 --- AjaxPanel.cs 8 Feb 2006 20:48:43 -0000 1.59 *************** *** 276,290 **** } - //disabling clientside validation inside AjaxPanels (not yet handled correctly for Page-store mode) - // Clientside validation throws errors when a validator becomes invisible - // during an AjaxCall (the validator is gone while the script checking for - // it remains). - // TODO: Find a way to avoid problems of scripts that invisible controls - // leave behind. - if (!this.MagicAjaxContext.IsPageNoStoreMode) - { - DisableClientValidators(); - } - #if !MEDIUM_TRUST // Attach to prerendercomplete event so we can do --- 276,279 ---- |