ChangeLog 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. 2008-10-02 Marek Habersack <[email protected]>
  2. * ScriptManager.cs: reverting revision 114552 since the real bug
  3. was somewhere else. The correct fix is to make sure UpdatePanels
  4. which output something _or_ have been named in the POST request as
  5. requiring a refresh are marked as such. Only in that situation
  6. HasBeenRendered returns true (as it should for those panels)
  7. 2008-09-23 Marek Habersack <[email protected]>
  8. * ScriptManager.cs: CultureInfoSerializer no longer derives from
  9. the obsolete LazyDictionary.
  10. 2008-09-01 Marek Habersack <[email protected]>
  11. * UpdatePanel.cs: if the writer passed to RenderChildren is not
  12. derived from ScriptManager.AlternativeHtmlTextWriter, check
  13. whether its InnerWriter derives from that type and, if yes, use
  14. it from that point onwards.
  15. 2008-08-13 Marek Habersack <[email protected]>
  16. * ScriptManager.cs: always request the webform.js script to be
  17. present. It may happen that a control during a dynamic update will
  18. need to call one of the WebForm_* functions and the call will fail
  19. as the script will be absent.
  20. If debugging is enabled, send the full exception backtrace in
  21. WriteCallbackException - helps debugging AJAX errors.
  22. 2008-08-08 Marek Habersack <[email protected]>
  23. * UpdatePanel.cs: do not check whether a panel whose children are
  24. to be rendered has been marked for update in the async postback
  25. mode. It prevents complex scenarios where there is one superior
  26. update panel which owns an inferior one, and only the superior one
  27. has Update called on it.
  28. 2008-06-05 Marek Habersack <[email protected]>
  29. * ScriptManager.cs: do not throw NREX when there are no profile or
  30. authentication service sections in the config files.
  31. 2008-05-15 Marek Habersack <[email protected]>
  32. * AsyncPostBackTrigger.cs: don't thrown an exception if EventName
  33. is null or empty and there is no DefaultEventAttribute attached to
  34. the control.
  35. 2008-05-14 Marek Habersack <[email protected]>
  36. * ScriptComponentDescriptor.cs: do not add the same
  37. entry twice to a dictionary.