Hi,
I'm using a RadAlert to display a text like this: "Test <br/> Test <br/>". The line breaks cause the left and right border of the window to disappear. This is only the case when using the RadAlert server-side.
This will work:
Using this text client-side doesn't cause any problems (but the generated code differs from the server-side radalert - there is an additional div around the message).
How can I add line breaks server-side without having any layout problems?
I'm using a RadAlert to display a text like this: "Test <br/> Test <br/>". The line breaks cause the left and right border of the window to disappear. This is only the case when using the RadAlert server-side.
windowManager.RadAlert("Test <br/> Test <br/> Test", null, null, "Title", string.Empty);This will work:
windowManager.RadAlert("Test Test Test", null, null, "Title", string.Empty);Using this text client-side doesn't cause any problems (but the generated code differs from the server-side radalert - there is an additional div around the message).
windowManager.radalert("Test <br/> Test <br/> Test", null, null, "Title");How can I add line breaks server-side without having any layout problems?