Hi,
I'd asked this before but the solution did not work (completely).
I need to reduce the border width to 1px around the RadEditor.
I've almost got it working by hiding he TR's via javascript on OnClientLoad
however my issue is that the Toolbar offsetwidth (toolbarmode=OnSetFocus) when you click on the RadEditor defauts to 10px.
Can initialize the Toolbar or set it's width in the OnClientLoad JS code?
My RadEditor.OnClientLoad() event handler code
I'd asked this before but the solution did not work (completely).
I need to reduce the border width to 1px around the RadEditor.
I've almost got it working by hiding he TR's via javascript on OnClientLoad
however my issue is that the Toolbar offsetwidth (toolbarmode=OnSetFocus) when you click on the RadEditor defauts to 10px.
Can initialize the Toolbar or set it's width in the OnClientLoad JS code?
My RadEditor.OnClientLoad() event handler code
editor.get_element().children[1].children[0].children[0].style.display=
'none';
editor.get_element().children[1].children[0].children[1].style.display=
'none';
editor.get_element().children[1].children[0].children[3].style.display=
'none';
editor.get_element().children[1].children[0].children[4].style.display=
'none';
editor.get_element().children[1].children[0].children[5].style.display=
'none';
editor.get_element().children[1].children[0].children[2].style.height=editor.get_element().style.height;
editor.get_element().children[1].children[0].children[2].children[0].children[1].style.height=(editor.get_element().offsetHeight-1) +
ditor.get_element().offsetHeight-1) +"px";