ChangeLog 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. Cosmetical output change - the hidden fields are output after the
  8. update panels contents is sent in an async request. It makes the
  9. async response look similar to the MS.NET's one but, more
  10. importantly, makes debugging easier.
  11. 2008-09-23 Marek Habersack <[email protected]>
  12. * ScriptManager.cs: CultureInfoSerializer no longer derives from
  13. the obsolete LazyDictionary.
  14. 2008-09-01 Marek Habersack <[email protected]>
  15. * UpdatePanel.cs: if the writer passed to RenderChildren is not
  16. derived from ScriptManager.AlternativeHtmlTextWriter, check
  17. whether its InnerWriter derives from that type and, if yes, use
  18. it from that point onwards.
  19. 2008-08-13 Marek Habersack <[email protected]>
  20. * ScriptManager.cs: always request the webform.js script to be
  21. present. It may happen that a control during a dynamic update will
  22. need to call one of the WebForm_* functions and the call will fail
  23. as the script will be absent.
  24. If debugging is enabled, send the full exception backtrace in
  25. WriteCallbackException - helps debugging AJAX errors.
  26. 2008-08-08 Marek Habersack <[email protected]>
  27. * UpdatePanel.cs: do not check whether a panel whose children are
  28. to be rendered has been marked for update in the async postback
  29. mode. It prevents complex scenarios where there is one superior
  30. update panel which owns an inferior one, and only the superior one
  31. has Update called on it.
  32. 2008-06-05 Marek Habersack <[email protected]>
  33. * ScriptManager.cs: do not throw NREX when there are no profile or
  34. authentication service sections in the config files.
  35. 2008-05-15 Marek Habersack <[email protected]>
  36. * AsyncPostBackTrigger.cs: don't thrown an exception if EventName
  37. is null or empty and there is no DefaultEventAttribute attached to
  38. the control.
  39. 2008-05-14 Marek Habersack <[email protected]>
  40. * ScriptComponentDescriptor.cs: do not add the same
  41. entry twice to a dictionary.