Width of the GridControl

S

Samuel Shulman

I Set the width of the table/TR/TD and the grid Control to 100% but at run
time the DataGrid takes only 60% of the screen while it wraps some of the
text within the control

Anything to change that?

thank you,
Samuel
 
S

Samuel Shulman

I forgot to point out that I use a MasterPage and the container control
doesn't fill the entire width though I am not sure whether it is possible to
set it
 
J

John Timney \(MVP\)

Sounds to me like your DIV's have conflicts over width positioning. As a
way forward, try and set the width of a div surrounding the content
placeholder in your master page to be whatever width you need, and dont set
a width on your table and see if it fixes your problem or at least helps you
work out whats wrong

For example
<div style=position:absolute;left:150px;width:150px;top :100px>
<asp:contentPlaceholder></asp:contentPlaceholder>
</div>

--
Regards

John Timney (MVP)
VISIT MY WEBSITE:
http://www.johntimney.com
 
S

Samuel Shulman

Thank you for yor advice

It was the Width of the <td > where the ContentPlaceHolder was

Samuel
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top