This question is locked. New answers and comments are not allowed.
Hi.
I have a partial view:
<%Html.Grid(Model).Name("Tasks").Columns(
column =>
{
column.Add(x => x.Status).Width(25);
column.Add(x => x.AssignedCompletionDate).Title("Due Date");
column.Add(x => Html.ActionLink(x.Task, "TaskDetail", new { taskId = x.Id })).Title("Task");
})
.Pageable()
.Render();
%>
I user ajax to render the partial view in a <div>. When I use IE I get the error: Error: Object doesn't support this property or method. In firefox I get no error but, when I try to go to the next page I get something like this :
http://s006.radikal.ru/i213/1001/08/1c705f27a29d.jpg
Thanks!
I have a partial view:
<%Html.Grid(Model).Name("Tasks").Columns(
column =>
{
column.Add(x => x.Status).Width(25);
column.Add(x => x.AssignedCompletionDate).Title("Due Date");
column.Add(x => Html.ActionLink(x.Task, "TaskDetail", new { taskId = x.Id })).Title("Task");
})
.Pageable()
.Render();
%>
I user ajax to render the partial view in a <div>. When I use IE I get the error: Error: Object doesn't support this property or method. In firefox I get no error but, when I try to go to the next page I get something like this :
http://s006.radikal.ru/i213/1001/08/1c705f27a29d.jpg
Thanks!