text box giving problems on ASP.Net page - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T18:09:02Zhttp://stackoverflow.com/feeds/question/126154http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/126154/text-box-giving-problems-on-asp-net-page0text box giving problems on ASP.Net page MSIL2008-09-24T09:11:57Z2008-09-24T10:02:56Z
<p>I am designing a page to Add/Edit users - I used a repeater control and a table to display users. In users view the individual columns of the table row have labels to display a record values and when users click on edit button, the labels are hidden and text boxes are displayed for users to edit values - The problem is - as soon as the text boxes are visible, the table size increases - the row height and cells size becomes large. Is there a way to display the text boxes so that they take the same size as the labels</p>
http://stackoverflow.com/questions/126154/text-box-giving-problems-on-asp-net-page/126254#1262540Answer by Oli for text box giving problems on ASP.Net page Oli2008-09-24T09:43:57Z2008-09-24T09:43:57Z<p>I'd use JS+CSS... You'll have to get your hands dirty for this one though. Visual Studio isn't going to help you much. </p>
<p>Here's how I'd do it:</p>
<ol>
<li>Get the <code><td></code> clientWidth and clientHeight.</li>
<li><em>Set</em> the <code><td></code>'s width and height to those px values (so they're no longer relative)</li>
<li>Swap the text for the input</li>
<li>In your CSS, make sure the input has no padding/margin/border and set width:100%, line-height:1em, and height:1em</li>
</ol>
<p>When you switch back, make sure you un-set the <code><td></code> width and height so they return to automatic values.</p>
<p>You'll need to tweak this all slightly. I'm sure you'll have to play around with the padding on the <code><td></code> and perhaps set overflow:hidden but you should be able to do what you want.</p>
http://stackoverflow.com/questions/126154/text-box-giving-problems-on-asp-net-page/126311#1263111Answer by Filini for text box giving problems on ASP.Net page Filini2008-09-24T10:02:56Z2008-09-24T10:02:56Z<p>Dealing with tables, the question is: can your labels span on multiple text rows (ie: can you have long texts)? If yes, you may encounter layout problems any way. If no, a simple approach can be creating a CSS Class:</p>
<pre><code>
.CellContent { display:block; width: ...; height: ...; }
</code></pre>
<p>with your preferred cell width/height. Just stay a bit "large" with your height.</p>
<p>Assign the class to both your label and textbox, and you should not get width/height changes when switching control (thanks to the display:block property). </p>
<p>Again, if you have long texts, you will still encounter issues, and may want to use multilines. In that case, I would suggest ignoring height problems: just set the width to be consistent, and always show a 3-4 lines textbox for editing. Users will not be bothered to see a row height change, if they are ready to type long texts.</p>