From: Argiris K. <be...@us...> - 2005-12-13 06:25:38
|
Update of /cvsroot/magicajax/magicajax/Core/UI/Controls In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4658/Core/UI/Controls Modified Files: Tag: STABLE AjaxPanel.cs Log Message: --Single-selection listbox and dropdownlist were not cleared for firefox; fixed it. --Optimization changes to the DoAjaxCall function, provided by Eyal Mey-Tal. Index: AjaxPanel.cs =================================================================== RCS file: /cvsroot/magicajax/magicajax/Core/UI/Controls/AjaxPanel.cs,v retrieving revision 1.37 retrieving revision 1.37.4.1 diff -C2 -d -r1.37 -r1.37.4.1 *** AjaxPanel.cs 12 Dec 2005 12:10:41 -0000 1.37 --- AjaxPanel.cs 13 Dec 2005 06:25:31 -0000 1.37.4.1 *************** *** 507,511 **** { if ( oneSelection != form[name] ) ! AjaxCallHelper.WriteSetFieldScript (clientID, oneSelection); } else --- 507,516 ---- { if ( oneSelection != form[name] ) ! { ! if ( oneSelection == null ) ! AjaxCallHelper.WriteFormat ("document.forms[0][\"{0}\"].selectedIndex=-1;\r\n", clientID); ! else ! AjaxCallHelper.WriteSetFieldScript (clientID, oneSelection); ! } } else |