Rank: Newbie Groups: Member
Joined: 2/6/2014 Posts: 2
|
Hi, I have a problem with my grid, currently has paging and shows me 10 objects on each page, but when I run an object of the second page refreshes page and shows me the objects in the 1 again, and it appears that still in page 2, and I can not click again at 2 or 1, it's like stay locked ... I need that when I run an object in the following pages I still see the objects on the page to which it belongs, could you please help me? Thanks in advance
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,229
|
Hi,
I do not know what you meant by "running an object". The Grid supports multiple running mode. First you have to know which running mode you are using, then you can compare your page with the sample page for that running mode. If the sample works fine and your code does not work, then you can compare the code to find out what's wrong.
Thanks!
|
Rank: Newbie Groups: Member
Joined: 2/6/2014 Posts: 2
|
hi! when I say run an object, I mean that the grid have objects that perform an action, so did a refresh on the page ... but today I realized that this was because the grid is inside an UpdatePanel, so I solved it adding ChildrenAsTriggers = "false" property.
<asp:UpdatePanel ID="UpdateGrid" runat="server" UpdateMode="Conditional" ChildrenAsTriggers="false">
Thanks Regards!
|