WebHTMLEditor: How to add toolbar button which inserts object at caret Alex Kartavov / Wed, Aug 25, 2010 The WebHtmlEditor allows to add various custom items to toolbar. In case a toolbar button it is the ToolbarButtonType.Custom. That new item can be added at visual design time within Toolbar.Items property...
How to process keyup event in WebHtmlEditor Alex Kartavov / Wed, Aug 25, 2010 ClientSideEvents of WebHtmlEditor do not have KeyUp event. If application needs to process that event, then it may use following codes. They contain some internal objects methods and mimic internal logic...
WebHTMLEditor: How to build toolbar button with custom dialog Alex Kartavov / Wed, Aug 25, 2010 In order to add a toolbar button which shows custom dialog, the ToolbarDialogButton object with type Custom should be added to the Toolbar of WebHtmlEditor. It can be done at visual design time using...
How to add custom drop-down button to toolbar of WebHtmlEditor Alex Kartavov / Wed, Aug 25, 2010 In order to add another ToolbarDropDown to WebHtmlEditor, the Type="Custom" should be used. The toolbar items expose property Key and if that property is set, then action on client is defined not by Type...
How add custom button which resets styles of selected text/objects in WebHtmlEditor Alex Kartavov / Wed, Aug 25, 2010 The WebHtmlEditor allows to add custom items to toolbar and process their events on client. WebHtmlEditor on client has a shortcut method _format which wraps execCommand method of document. Application...
WebHTMLEditor: How to trigger actions for WebHtmlEditor from javascript Alex Kartavov / Wed, Aug 25, 2010 Most actions of WebHtmlEditor are wrappers for document.execCommand (action, params). The wrapper function for that action has name _format . It was intended for internal usage, though, application may...
How to get reference to a TABLE create within WebHTMLEditor Alex Kartavov / Tue, Aug 10, 2010 WebHtmlEditor allows to insert TABLE object from toolbar menu and customize its properties by dialog. However, that TABLE is not referenced by WebHtmlEditor. If application needs to access that new TABLE...