This is a migrated thread and some comments may be shown as answers.

[Solved] BUG about columns disappaering

0 Answers 40 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Harold
Top achievements
Rank 1
Harold asked on 12 Apr 2011, 05:35 PM

I'm trying to use the scrolling and then I changed the First Look Razor View  in telerik example project like that

...
@(Html.Telerik().Grid(Model)
        .Name("Grid")
        .Columns(columns =>
        {
            columns.Bound(o => o.OrderID).Width(200);
            columns.Bound(o => o.ContactName).Width(200);
            columns.Bound(o => o.ShipAddress);
            columns.Bound(o => o.OrderDate).Format("{0:MM/dd/yyyy}").Width(200);
....
You can omit the width specification and everything works fine but
           
...
            columns.Bound(o => o.OrderID).Width(400);
            columns.Bound(o => o.ContactName).Width(400);
            columns.Bound(o => o.ShipAddress);
            columns.Bound(o => o.OrderDate).Format("{0:MM/dd/yyyy}").Width(400);
...
The scrollbar is visible but the third column disappear

Regards!
Tags
General Discussions
Asked by
Harold
Top achievements
Rank 1
Share this question
or