Update of /cvsroot/magicajax/magicajax/Core/UI/Controls
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4378/Core/UI/Controls
Modified Files:
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.38
diff -C2 -d -r1.37 -r1.38
*** AjaxPanel.cs 12 Dec 2005 12:10:41 -0000 1.37
--- AjaxPanel.cs 13 Dec 2005 06:23:02 -0000 1.38
***************
*** 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
|