Ask a Question related to ASP.NET, Design and Development.
-
Amit Varia #1
Textarea
I am making a simple blog, and was wondering if anyone had any suggestions
on making a wysiwyg editor. I want to try and make it as much cross platform
as possible.
My current thoughts are gearing towards a textarea that isn't wysiwg but
similar to b2's textarea where tags are added via buttons.
What are your suggestions out there?
Amit Varia Guest
-
Printjob for TextArea
Below the code snipped :Q: it works fine and print the textarea. But it prints only the visible Textarea and ignores the rest of the text(that... -
textArea formatting
I am using a php html form with data which is loaded from a mysql database. Three of the fields are textareas. The data loads into these fields... -
textarea value
I am trying to collect the value of an HTML textarea. The problem I am having is that I only can get he first line in the textarea. When a user... -
Removing carriage returns from <textarea></textarea> input
Hiya, I have a form with a <textarea></textarea> to receive user input. This input is then stored in a database and sent by fax... I need to... -
<textarea> bug????
Simple vbscript,html page loading into access. Input pg posting to Confirm pg, then sending to access. when using; <textarea name="name"... -
Tyrone Slothrop #2
Re: Textarea
On Sun, 18 Jan 2004 01:41:51 -0600, "Amit Varia" <spam@amitvaria.com>
wrote:
The best I have seen works with IE 5.5+ only (though there is a plugin>I am making a simple blog, and was wondering if anyone had any suggestions
>on making a wysiwyg editor. I want to try and make it as much cross platform
>as possible.
>
>My current thoughts are gearing towards a textarea that isn't wysiwg but
>similar to b2's textarea where tags are added via buttons.
>
>What are your suggestions out there?
that will make it work with Mozilla/Netscape). Check out:
[url]http://www.interactivetools.com/products/htmlarea/[/url]
Tyrone Slothrop Guest
-
Amit Varia #3
Re: Textarea
I used that that before, and liked it, but was hoping to have something more
cross platform. And now I am beging to think that if I want something to be
really cross platform I am going to have to go with my second idea of a
textarea where you can add tags from menu. I doubt the WYSIWYG edior is
going to be possible.
"Tyrone Slothrop" <ts@paranoids.com> wrote in message
news:jirk00lv5j5iv2bfrnqqp8o0t22b8u9s7d@4ax.com...suggestions> On Sun, 18 Jan 2004 01:41:51 -0600, "Amit Varia" <spam@amitvaria.com>
> wrote:
>> >I am making a simple blog, and was wondering if anyone had anyplatform> >on making a wysiwyg editor. I want to try and make it as much cross>> >as possible.
> >
> >My current thoughts are gearing towards a textarea that isn't wysiwg but
> >similar to b2's textarea where tags are added via buttons.
> >
> >What are your suggestions out there?
> The best I have seen works with IE 5.5+ only (though there is a plugin
> that will make it work with Mozilla/Netscape). Check out:
> [url]http://www.interactivetools.com/products/htmlarea/[/url]
>
>
Amit Varia Guest
-
Barnabas Yohannes #4
TextArea
Is it possible to create a TextArea Item Template inside a datagrid? If so, how?
Barnabas Yohannes Guest
-
Scott Mitchell [MVP] #5
Re: TextArea
> Is it possible to create a TextArea Item Template inside a datagrid? If
so, how?
Sure.
<asp
ataGrid ...>
<Columns>
<asp:TemplateColumn>
<ItemTemplate>
<asp:TextBox runat="server" TextMode="Multiline"
Text='<%# DataBinder.Eval(Container.DataItem,
"SomeColumnName") %>'></asp:TextBox>
</ItemTemplate>
</asp:TemplateColumn>
</Columns>
</asp
ataGrid>
Happy Programming!
--
<shameless plug>
For more information on the DataGrid, DataList, and Repeater controls,
consider picking up a copy of my latest book:
ASP.NET Data Web Controls
[url]http://www.amazon.com/exec/obidos/ASIN/0672325012/4guysfromrollaco[/url]
</shameless plug>
Happy Programming!
Scott Mitchell
[email]mitchell@4guysfromrolla.com[/email]
[url]http://www.4GuysFromRolla.com[/url]
[url]http://www.ASPFAQs.com[/url]
[url]http://www.ASPMessageboard.com[/url]
* When you think ASP, think 4GuysFromRolla.com!
Scott Mitchell [MVP] Guest
-
thephantom6969 #6
textarea
Is there anyway to have different colors, fonttypes, bold, etc. in the text in
a text area? I have done it with using the html tag, but it would seem logical
that one should be able do this in a normal flex textarea.
Thanks
thephantom6969 Guest
-
slaingod #7
Re: textarea
Not sure exactly what you mean, but textarea has an htmlText property that can
work with a subset of html-ish tags. Otherwise, if you are talking about
editing, then you should take a look at the RichTextEditor component.
slaingod Guest
-
thephantom6969 #8
Re: textarea
Lets say I have some text in the text area. Can I change the color of one word in the text area or could I underline a word?
thephantom6969 Guest
-
slaingod #9
Re: textarea
You should be able to do that by setting the htmlText as mentioned. If you
meant for the user to be allowed to edit the text, you would be better off
using RichTExtEditor and hiding the control bars for instance, as I imagine as
soon as the user edited the TextArea you might lose the underlines, tho I'm not
sure.
If for some reason you absolutely have to use TextArea, then you can probably
accomplish what you want by detecting the change event on the TextArea and
reapplying the formatting as needed.
Say you are writing a word processor with dictionary underlining for
misspelled words: You would allow the user to type their text, and then after
each letter typed, you could look for changes and apply the underline as
needed. But using RichTextEditor seems like it would be a lot easier.
slaingod Guest



Reply With Quote

