or

So I tried NewLineBr = true instead although this is not what we wan't.
But as this mode render different html in IE vs. FF this is not an option for us.
In IE you get the paragrahs as you expect after a heading, but not in FF.
Any Idea how we can get NewLineBr = false to work in FF?
Regards Niklas

Hi,
I have to open a rad window on click of image button. But when I click on image button I get the error as
"Microsoft JScript runtime error: 'undefined' is null or not an object". I am not sure why I am getting this error.
I have declared the RadWindow as follows:
| <telerik:RadWindow ID="TreatmentDetail" runat="server" Height="412px" Left="10px" ShowContentDuringLoad="false" |
| Modal="true" ReloadOnShow="True" Title="Edit Protocols" Width="800px" NavigateUrl="" |
| SkinsPath="~/RadControls/Window/Skins" Top="10px" VisibleStatusbar="False" Behavior="None"> |
| </telerik:RadWindow> |
| Protected Sub imgAddNewTreat_Click(ByVal sender As Object, ByVal e As System.Web.UI.ImageClickEventArgs) Handles imgAddNewTreat.Click |
| Try |
| Dim NewTreatID As Integer = CType(Session("NewTreatID"), Integer) |
| Session("TreatWindowTitle") = "Add New Treatment" |
| Session("TreatmentMode") = "Add" |
| Session("NewTreatID") = NewTreatID - 1 |
| Session("TreatId") = NewTreatID |
| Dim scriptstring As String = "ShowEditForm('" & NewTreatID & "' , 'Add' );" |
| ScriptManager.RegisterStartupScript(Me, Me.GetType, "TreatmentWindow", scriptstring, True) |
| Catch ex As Exception |
| End Try |
| End Sub |
| function ShowEditForm(id, Mode) { |
| window.radopen("EditTreatmentProtocol.aspx?Id=" + id + "&Mode=" + Mode, "TreatmentDetail"); |
| return false; |
| } |