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

[Solved] .Hidden(true) Hides Rows but not Header.. ?

4 Answers 89 Views
Grid
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Robert
Top achievements
Rank 1
Robert asked on 29 Mar 2010, 04:44 AM
So, I'm using .Width(0) as a workaround...

Has anyone else experienced this?

4 Answers, 1 is accepted

Sort by
0
Atanas Korchev
Telerik team
answered on 29 Mar 2010, 08:04 AM
Hello Robert,

We are not aware of such problem. Could you please paste here your grid declaration? Which browser are you using for testing your web site?

All the best,
Atanas Korchev
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0
Robert
Top achievements
Rank 1
answered on 29 Mar 2010, 02:13 PM
I am using IE8 and FF 3.5.8

<%= Html.Telerik().Grid<RewriteRule>()  
        .Name("RulesGrid")  
        .DataKeys(keys => 
        {  
            keys.Add(rr => rr.Id);  
        })  
        .ToolBar(commands => commands.Insert())  
        .DataBinding(dataBinding => 
        {  
            dataBinding.Ajax()  
                .Select("_SelectAjaxEditing", "Home")  
                .Insert("_InsertAjaxEditing", "Home")  
                .Update("_SaveAjaxEditing", "Home")  
                .Delete("_DeleteAjaxEditing", "Home");  
        })  
        .Columns(columns => 
        {  
            columns.Bound(rr => rr.Id).Hidden(true);  
            columns.Bound(rr => rr.OldUrl).Width(200);  
            columns.Bound(rr => rr.NewUrl).Width(200);  
            columns.Command(commands => 
            {  
                commands.Edit();  
                commands.Delete();  
            }).Width(180).Title("Commands");  
        })  
        .Pageable()  
        .Scrollable()  
        .Sortable()  
%> 
0
Atanas Korchev
Telerik team
answered on 29 Mar 2010, 02:55 PM
Hi Robert,

Find attached a new build which should resolve this bug.

Regards,
Atanas Korchev
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0
Robert
Top achievements
Rank 1
answered on 03 Apr 2010, 06:52 AM
Awesome!
Tags
Grid
Asked by
Robert
Top achievements
Rank 1
Answers by
Atanas Korchev
Telerik team
Robert
Top achievements
Rank 1
Share this question
or