Table of Contents
- Getting Started
- EO.Pdf
- EO.Web
- Overview
- Installation & Deployement
- EO.Web ToolTip
- EO.Web Rating
- EO.Web Slider & RangeSlider
- EO.Web ListBox
- EO.Web ComboBox
- EO.Web Captcha
- EO.Web ASPX To PDF
- EO.Web Slide
- EO.Web Flyout
- EO.Web EditableLabel
- EO.Web ImageZoom
- EO.Web Floater
- EO.Web Downloader
- EO.Web ColorPicker
- EO.Web HTML Editor
- EO.Web File Explorer
- EO.Web SpellChecker
- EO.Web Grid
- EO.Web MaskedEdit
- EO.Web Splitter
- EO.Web Menu
- EO.Web Slide Menu
- EO.Web TabStrip
- EO.Web TreeView
- EO.Web Calendar
- EO.Web Callback
- EO.Web MultiPage
- EO.Web Dialog
- EO.Web AJAXUploader
- EO.Web ProgressBar - Free!
- EO.Web ToolBar - Free!
- EO.WebBrowser
- EO.Wpf
- Common Topics
- Reference
Localization |
The default UI and messages for the editor is in English. In order to support other languages, the following elements must be customized:
If the editor uses ColorPicker (through ColorPickerID property), SpellChecker (through SpellCheckerID property) or ContextMenu (through ContextMenuID property), those controls should be localized as well.
Localizing prompt messages
The editor also displays certain messages. For example, when Find and Replace dialog can not find a match, it displays a message "Can not find 'xxx'.". To customize/localize this message, handle the editor's ClientSideOnMessage event. For example:
<eo:Editor ClientSideOnMessage="on_editor_msg" ...> .... </eo:Editor>
Localizing emoticons
The default tool tip text for emoticons are in English. In order to replace the default tool tip text, a custom emoticon set must be used. Follow these steps to use custom emoticon sets:
- If you wish to use existing images provided by EO.Web Controls. Unzip Images.zip found under the installation folder. This file contains all the image files used by EO.Web Controls. Locate all the emoticon files under "Editor\emoticons" folder. Then copy the files you wish to use to a directory on your website;
- If you do not wish to use existing images provided by EO.Web Controls. Copy the files you wish to use directory to a directory on your website;
- This step is optional, see next step for details. Name each file using each file's intented tooltip text. For example, if an image's intended tooltip text is "Big Smile", the name the file "Big Smile.gif" (assuming .gif file is used);
- Call Editor.RegisterEmoticonSet to register a custom emoticon set. Depending on which version of RegisterEmoticonSet you call, step 3 may or may not be necessary. This function only needs to be called once per application;
- Set the editor's EmoticonSet to the name of the custom emoticon set registered on step 4;