4 Answers, 1 is accepted
0
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.
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
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.
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!