I can not set the width of bound field. Is there any problem in the following markup.

 <asp:BoundField DataField="UserName" HeaderText="User Name"
                                                                meta:resourcekey="BoundFieldUNCUserNameResource1">
                                                                <HeaderStyle Width="50%" />
                                                            </asp:BoundField>

enter image description here

Please refer to the image. I set width using the following. The yellow colored numbers are corresponding width. The marked user name is always Wrapped even I set a width to a large value (say 50%) and set Wrap="false".

<HeaderStyle Width="20%" Wrap="true" />
<ItemStyle Width="20%" Wrap="true" />
link|improve this question

54% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Try This:

ItemStyle-Width="50%" ItemStyle-Wrap="false" in the BoundField tag

link|improve this answer
feedback

For BoundField:

 <asp:BoundField DataField="UserName" HeaderText="User Name" ItemStyle-Width="50px" />
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.