Browse By Tags

  • EditorProviders and TemplateDataField

    Hi,

    I have just started using the Aikido WebDataGrid (Infragistics35.Web.v9.2, Version=9.2.20092.1003) and have been able to successfully display a number of fields bound to an Access data source, and associate one of the columns with a DropDownProvider…

  • Applying filters on webdatagrid results in object reference error

    Good day,

    I have a webdatagrid on my page and have a datasource for it as object list. The code is like this:

            private List<AccommodationPrio> GetPrioritiesSelectionData()
            {
                GoGoYield_Entities entities = Master.GetEntities();
                int? intBrandId …

  • "datasource contains no schema data" error

    Good day,

    I get a "datasource contains no schema data" error on my 2010v2 webdatagrid. The biggest problem is that i do have data in the datasource. I have the following errorStackTrace:

    [NotSupportedException: Data source contains no schema…

  • Problem with templatecolumn

    Hi,

    I have a dropdown templated column in my webdatagrid. This dropdown is bound to a sqldatasource and return a bit huge data, Nearly 3 thousand records.

    My problem is whenever i do a asnypostback. i.e on virtual scroll,sorting,filtering etc... i get…

  • WebDataGrid Databinding Flat DataSource

    Hi ,

    I havent seen any example for Runtime databinding with Relationship based DataSet.I wanna do this scenario in my site.

     I have got Access Database.There is two table with relationship many to one named Products and Categories.So i wanna show my Foreign…

  • One more with Akidowebdatagrid on IE

    Hi All,

    One more problem with Webdatagrid. I am not sure if i am missing any setting here. The webdatagrid is enabled all the edit,delete and Addnewrow behaviors. Sqldatasource is the datasource ID. The datasource is having around 2000 recors. The problem…

  • Template column as Label with WebDataGrid

    Hello,

    I have issue with WebDataGrid and template column when I bound the grid with data using (! Ispostback) and on another full postback template controls (label) does not retain its caption after postback. Here is the code how I am binding to template…

  • Re: How to get the WebHierarchicalDataGrid in NetAdvantage for . NET 2009 Vol 1?

    Hi,

    I am looking for the same for a WebDataGrid in Volume 1. Is it possible to get the new WHDG with an existing license (upgrade/patch)?

    Thanks

  • Pagination in sub(child grid) and child->parent relation under the main hierarchical grid

    Normal 0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4 …

  • Display two column split row collection

    Hi everyone,

    I would like to know if it's possible (and more important HOW it's possible) to create/databind a webdatagrid with the rowcollection displayed over 2 columns.

    E.g.: I have a datasource with 20 rows of different products.
    I want to…

  • Webdatagrid with slow query (large data)

    Hi,

    I have a query with a lot of joins which return 5K records. This query take around 4sec to be executed on my Sql Management Studio.

    I bind the results to my webdatagrid
    I enabled the paging

    Each time I choose a page on the webdatagrid, it takes…

  • How do I trigger a Data Bind on the WebDataGrid via the CSOM (Client-Side)

    I have my WebDataGrid bound to a SqlDataSource that uses a ControlParameter.  Using javascript, I've updated that control's value, but the WebDataGrid is not re-binding until a postback; I'd like to trigger the databind without a postback.

  • Re: ClearDataSource call causes Multiple controls with the same ID error

    I have the same problem with WebDataGrid Version=10.3.20103.2073, and the DataBind code below

        private void BindData()

        {
            this.WebDataGrid1.Rows.Clear();
            this.WebDataGrid1.ClearDataSource();
            this.WebDataGrid1.DataSource = this.ods_DataPointValueSet.Select…

  • WebDataGrid with MasterPage

    I am following the example from https://www.infragistics.com/community/product_platforms/aspnet/w/aspnet-wiki/49/data-binding-the-webdatagrid-to-common-data-sources to bind to an ObjectDataSource. As it stands, it is working and I am also successful activating…

  • How do I bind the WebDataGrid to my business objects?

    The WebDataGrid can bind to a variety of objects, including an IList which is what we'll use in the example below.

    protected void Page_Load(object sender, EventArgs e) 
    { 
        //Assign the DataSource property 
        this.WebDataGrid1.DataSource…