Yeah because the textbox in Atlas is actually renders as the following HTML:
<input type="text" id="txtBox" />
The TextBox control in ASP.NET if it's set to single line renders as the same.
Though, if you select the multiline property for the ASP.NET control, then it renders as the following HTML:
<textarea id="txtBox">text here</textarea>
You can see the association between the Atlas TextBox and the Atlas InputControl as evidence of this via Wilco's
Atlas Class Browser:
I have currently problem with updating values, so I don't know if it really works, but there is textarea html control which works as target for atlas textbox like:
Willgart
Member
345 Points
70 Posts
no multirow textbox support?
Oct 22, 2005 01:20 PM|LINK
williaml
Member
95 Points
19 Posts
Re: no multirow textbox support?
Oct 23, 2005 07:46 AM|LINK
Yeah because the textbox in Atlas is actually renders as the following HTML:
<input type="text" id="txtBox" />
The TextBox control in ASP.NET if it's set to single line renders as the same.
Though, if you select the multiline property for the ASP.NET control, then it renders as the following HTML:
<textarea id="txtBox">text here</textarea>
You can see the association between the Atlas TextBox and the Atlas InputControl as evidence of this via Wilco's Atlas Class Browser:
<div>Class hierarchy: <div id=hierarchySection>Object > Web.Component > Web.UI.Control > Web.UI.InputControl > Web.UI.TextBoxIn the Atlas Class Browser, just select Web.UI as the namespace, then TextBox as the class you wish to view.
You could possibly create your own Atlas Multiline TextBox if you wish, by following Wilco's Building a ProgressBar tutorial:
http://www.wilcob.com/wilco/Default/159/showpost.aspx
</div></div>
King.Fisher
Member
230 Points
46 Posts
Re: no multirow textbox support?
Oct 26, 2005 04:25 PM|LINK
....
<textarea id="commentTextArea" cols="50" rows="10" style="border-right: #333333 1px solid;border-top: #333333 1px solid; border-left: #333333 1px solid; width: 100%; border-bottom: #333333 1px solid"></textarea>
....
<textBox targetElement=
"commentTextArea" />dblock
Member
367 Points
96 Posts
Re: no multirow textbox support?
Dec 13, 2005 04:44 PM|LINK