DayPilot Forums

AJAX Calendar/Scheduling Controls
DayPilot » Forums » Bugs » InnerHTML using Google Chrome browser

InnerHTML using Google Chrome browser

Hi, I've encountered an issue with rendering when using google chrome. For example : protected void daypilot_BeforeEventRender(object sender, DayPilot.Web.Ui.Events.BeforeEventRenderEventArgs e) { e.InnerHTML = "" + e.InnerHTML + ""; } It works fine when the page is loaded but there is no display after a PostBack... I tried : e.InnerHTML = Server.HTMLEncode("" + e.InnerHTML + ""); It works after postbacks but the whole HTML code is displayed after the first load of the page... Any help will be appreciated, Thanks
Anonymous - 5/29/2009 4:21:48 PM
PS: the example is e.InnerHTML = "<b>" + e.InnerHTML + "</b>";
Anonymous - 5/29/2009 5:00:54 PM
Post reply