How to Change default setting for ACT HTML Editor? I want to load editor with for example Selected Bold Button or with rtl direction instead of ltr defaultly.
How can I perform that?
I overrided FillTopToolbar() method to add Custom buttons but I dont Know how to change default settings.
as Default ltr is selected I want to change it to rtl.
| ||||
feedback
|
|
I edited my answer to correct some things The HTMLEditor doesn't provide a way to set the state of those buttons using serverside code. Although, on the client, it initializes by using Sys.Application.load Event. If you ran your code after their initializers, but before the user will interact with the UI, you could then set whatever properties you want to set in that event handler. Here is the code you need to set the bold button and the rtl buttons states. You can take it from here if you want to change the states of other buttons:
Sys (and therefore Sys.Application) is a namespace that comes from the ASP.Net AJAX javascript (file(s) that are added thanks to the ScriptManager that you add to your page). If you use this, you need to be sure that this line
If you move your script into a separate file, you'll notice that To fix that, here is what you do: Add this to your aspx markup (in the head section):
So it looks something like this:
(If you are using a Master Page, you'll just add the script tag below the ScriptManager in your page) And in your JS file, replace this
with this
| |||||||||||||
feedback
|
|
You will need to do this using CSS as the editor control doesn't support rtl natively. The following CSS will set direction to rtl -
The default styles for the HTML editor can be found in the Editor.css file. | |||||||
feedback
|