Urgent Help not showing the grid on the page..
- by kumar
hello Friends,
I have two user controlers
1) name.ascx
2) friends.ascx
in both controlers Code is same just changing the Grid name and columns but URL pointing is differnt..
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<JQGridMVCExamples.Models.OrdersJqGridModel>" %>
<div>
<%= Html.Trirand().JQGrid(Model.OrdersGrid, "JQGrid1") %>
</div>
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<JQGridMVCExamples.Models.OrdersJqGridModel2>" %>
<div>
<%= Html.Trirand().JQGrid(Model.OrdersGrid2, "JQGrid2") %>
</div>
But what hapeening is for second gri JQGrid2 is not showing up..
but First Grid is showing..
when i do first time second grid execution is not shoiwng up
but when I do after first grid.. I am getting the result but Frist grid columns I am getting not the second grid columns..
can any body have sujjestion on this?
thanks