text box giving problems on ASP.Net page - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T18:09:02Z http://stackoverflow.com/feeds/question/126154 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/126154/text-box-giving-problems-on-asp-net-page 0 text box giving problems on ASP.Net page MSIL 2008-09-24T09:11:57Z 2008-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#126254 0 Answer by Oli for text box giving problems on ASP.Net page Oli 2008-09-24T09:43:57Z 2008-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>&lt;td&gt;</code> clientWidth and clientHeight.</li> <li><em>Set</em> the <code>&lt;td&gt;</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>&lt;td&gt;</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>&lt;td&gt;</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#126311 1 Answer by Filini for text box giving problems on ASP.Net page Filini 2008-09-24T10:02:56Z 2008-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>