Hi,
I have RadMarkupDialog hosted in a form (Editor.Parent = form). My scenario is: write something into editor (text, not markup), add a color or size for that text and click Apply.
When I use it in VS without SP1, everything works fine. But when i try the same scenario in VS with SP1, size and color is returned to default values.
When I looked deeper into code, I've found out, that InnerHTML value of Editor.DesignViewDomDocument.body is without size and color in FONT tag
There are different versions of mshtml.dll (probably because of that SP) on those two computers, could that be the cause of that problem?
Primitive app I use looks like this
Thank you
I have RadMarkupDialog hosted in a form (Editor.Parent = form). My scenario is: write something into editor (text, not markup), add a color or size for that text and click Apply.
When I use it in VS without SP1, everything works fine. But when i try the same scenario in VS with SP1, size and color is returned to default values.
When I looked deeper into code, I've found out, that InnerHTML value of Editor.DesignViewDomDocument.body is without size and color in FONT tag
There are different versions of mshtml.dll (probably because of that SP) on those two computers, could that be the cause of that problem?
Primitive app I use looks like this
public
Form1()
{
InitializeComponent();
radMarkupDialog1.Editor.Parent = panel1;
radMarkupDialog1.Editor.EditorClosed +=
new
EventHandler(Editor_EditorClosed);
}
void
Editor_EditorClosed(
object
sender, EventArgs e)
{
// Track down ((radMarkupDialog1.Editor.DesignViewDomDocument).body).innerHTML - In VS without SP, there are font styles for color, size etc., but in VS with SP, they're gone
;
}
Thank you