Dynamic editor on my site.

  • Thread starter Thread starter Mr. X.
  • Start date Start date
M

Mr. X.

Hello.
I want to create an editor on my site, that can do things as word do :
(adding pictures, mark text as bold, underline, make bullets, and write a
text ...).

How can I do that, and is there any component for doing that ?

Thanks :)
 
It's the same link !

The link has a right alignment,
but I didn't see any Hebrew compitabilities, for RTL reading.

....

Bullets list should be from the right sides.
Also when typing (RTL) , something like :

(123)

It should be on the right order, and not :
)123(

Thanks :)
 
I see that the site freetextbox.com is a recommanded one.

Also, I have tried as the first google, and there is the same problem, as
one has stated :
no left align.

Here is the full code :

<%@ Import Namespace="System.IO" %>
<%@ Import Namespace="FreeTextBoxControls" %>
<%@ Register TagPrefix="FTB" Namespace="FreeTextBoxControls"
Assembly="FreeTextBox" %>

<html>
<head>
<META HTTP-EQUIV="CONTENT-TYPE" CONTENT="TEXT/HTML; CHARSET=WINDOWS-1255">
<title>CSM page</title>
<script runat="server" charset="windows-1255">
sub Page_Load(sender as Object, e as EventArgs)
FreeTextBox1.TextDirection = FreeTextBoxControls.TextDirection.LeftToRight
end sub
</script>
</head>
<body>
<form runat="server">
<FTB:FreeTextBox id="FreeTextBox1" runat="Server"/>
<font = "arial">
</font>
</form>
</body>
</html>

I don't know whether the line :
<%@ Import Namespace="FreeTextBoxControls" %>
is O.K.


Besides,
The FreeTextBox has no save button.
How can I save my file ?

Thanks :)
 
Well.
1. RTL problem was solved (not elegant way, but :
I did on page load :
FreeTextBox1.Text = "<div align='right' dir = 'rtl'><br></div>"

2. About save button :
<FTB:FreeTextBox id="FreeTextBox1" runat="server">
<Toolbars>
<FTB:Toolbar runat="server">
<FTB:Save runat="server" />
</FTB:Toolbar>
</Toolbars>

The above add the save button appearence,
but I still have a problem : Save button does nothing !
Can I capture the event when clicking the save button ?

Thanks :)
 
Thanks, I will check that out.

About the other post of yours (started with : FreeTextBox is, as you have
seen, a very popular RTF editor), still I looked at the links, and didn't
find full support of Hebrew.
(Except from right to left button, there should be a button : RTL - reading,
which looks like a PI (Latin sign) and a right arrow + PI & Left arrow
button, and there isn't.
I have solved the problem in a i-regular way).

I'll keep your advice sending posts to the FreeTextBox forum.

Thanks :)
 
Still I didn't understand :

Something like the following (on code behind, main_text is the freeTextBox
element) :
Protected Sub main_text_SaveClick(ByVal sender As Object, ByVal e As
EventArgs) Handles main_text.SaveClick

MsgBox("abc !!!")

End Sub



The above doesn't event reach the code when debugging.

What may be wrong ?

and what is the correct syntax ?



Thanks :)
 
Back
Top