New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
getting width
To get the width of the editor, first get the editor's HTML element, then retrieve the style.width.
JavaScript
function onClientLoad(editor, args)
{
alert('Editor width is: ' + editor.get_element().style.width);
}