Skip to content

Replies

0
Hristo
Hristo answered on Feb 29, 2012 9:22 AM

Hello mland,

try with this:

    protected void Button1_Click1(object sender, EventArgs e)
    {
        WebHierarchicalDataGrid1.GridView.Behaviors.Paging.PageIndex = 2;
    }
0
Hristo
Hristo answered on Feb 27, 2012 9:32 AM

Hello mland,

you should be able to change page index on a button click. What is your datasource?

0
Hristo
Hristo answered on Jun 2, 2011 8:39 AM

1013 is the RTM version. 2120 is not the latestet service release. Currently the latest service release is 10.3.20103.2134. You can download it from Infragistics website. Go to My IG -> My Keys and Downloads, select Product Name and scroll down. Go to Service Releases and select NetAdvantage for ASP.NET 2010 Vol. 3 – ASP.NET Service Release.

After installation finish you will have all 10.3.20103.2134 assembies in the GAC, which means that there is no need to copy it in Bin folder. Just be sure that you have changed references version everywhere in your application.

0
Hristo
Hristo answered on Jun 1, 2011 8:51 AM

Hi julieandduane,

Probably you receive this error because there is syntax error in your code or assemblies are not referred correctly and Visual Studio Designer cannot recognize properties.

If you copy assemblies in the Bin folder be sure that you have Infragistics35.Web.Design.v10.3.dll, VS Designer uses it. After add this assembly you may need to refresh the designer

 

Try to change the code snippet in your aspx with this:

<%@ Register assembly="Infragistics35.Web.v10.3, Version=10.3.20103.2120, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"

    Namespace="Infragistics.Web.UI.NavigationControls" tagprefix="ig" %>

 

<%@ Register assembly="Infragistics35.Web.v10.3, Version=10.3.20103.2120, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"

    Namespace="Infragistics.Web.UI.NavigationControls" TagPrefix="ig" %>

 

<%@ Register assembly="Infragistics35.Web.v10.3, Version=10.3.20103.2120, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"

    Namespace="Infragistics.Web.UI.DisplayControls" TagPrefix="ig" %>

0
Hristo
Hristo answered on Jun 1, 2011 8:51 AM

Hi julieandduane,

Probably you receive this error because there is syntax error in your code or assemblies are not referred correctly and Visual Studio Designer cannot recognize properties.

If you copy assemblies in the Bin folder be sure that you have Infragistics35.Web.Design.v10.3.dll, VS Designer uses it. After add this assembly you may need to refresh the designer

 

Try to change the code snippet in your aspx with this:

<%@ Register assembly="Infragistics35.Web.v10.3, Version=10.3.20103.2120, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"

    Namespace="Infragistics.Web.UI.NavigationControls" tagprefix="ig" %>

 

<%@ Register assembly="Infragistics35.Web.v10.3, Version=10.3.20103.2120, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"

    Namespace="Infragistics.Web.UI.NavigationControls" TagPrefix="ig" %>

 

<%@ Register assembly="Infragistics35.Web.v10.3, Version=10.3.20103.2120, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"

    Namespace="Infragistics.Web.UI.DisplayControls" TagPrefix="ig" %>