Urgent Help not showing the grid on the page..
Posted
by kumar
on Stack Overflow
See other posts from Stack Overflow
or by kumar
Published on 2010-05-11T17:20:26Z
Indexed on
2010/05/11
17:24 UTC
Read the original article
Hit count: 227
jQuery
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
© Stack Overflow or respective owner