• RE: Where is the WebDataGrid Javascript Documentation?

    Hello Randy, 

    Below you can find the Client-side Object Model of the WebDataGrid:

    https://ko.infragistics.com/help/aspnet/webdatagrid~infragistics.web.ui_namespace 

    It consists of all classes that are used for each feature and behavior of the grid. It…

  • Re: Grid pager with icons?

    Hello, 

    You can use custom paging to put any HTML you want in the page area and fire off events to change pages. Here is an example on how to implement custom paging. 

    http://help.infragistics.com/NetAdvantage/ASPNET/2010.2/CLR4.0/?page=WebGrid_Using_Custom_Paging…

  • System.Web.HttpException: File does not exist.

    Hello

    I am using the WebDataGrid and I keep getting this error when I load the page that only has a WebDataGrid on it.

    System.Web.HttpException: File does not exist.

    at System.Web.StaticFileHandler.GetFileInfo(String virtualPathWithPathInfo, String…

  • Re: WebDataGrid 2005 Vol. 2 vs WebDataGrid 2010 Vol. 2 Comparison

    Hi David -

    It's correct, I just realize the WebDataGrid does not exist at the 2005 version instead it's UltraWebGrid. I will like to understand what will be the benefits of moving from UltraWebGrid to WebDataGrid.

    I have a requirement to build…

  • Re: Database side paging and sorting

    Hi Vikas,
     
     
    Thank you for posting in the community.
    The behavior you have described seems to be the default for WebDataGrid when sorting and paging are enabled. Demonstrative samples of these features can be found at the following links - http://samples…
  • WebDatagrid paging with entitydatasource

    HI Guys,

        I am using the webdatagrid version 2011.2,  We use the entityframework as our datalayer and I am having issues with the paging.

    I use an entityDataSource control on the page to access the framework.  It appears that the webdatagrid doesnt support…

  • Multi-Column WebDropDown using Templates - DataBind Issue

    How can i bind WebDataGrid inside of WebDropDown?

    I'm using c# and "Infragistics 14.2 CLR 4.5.1". 


    When i bind WebDataGrid it works fine but when i try to bind the webdatagrid inside the webdropdown, its not showing the values(data…

  • Re: Webdatagrid add controls to internal grid

    Hello Sravani,

     

    I have been looking into your scenario and I could suggest you use the SelectionChanged event of the DropDownProvider in order to set  the data source of your nested WebDataGrid:

        void EditorControl_SelectionChanged(object sender…
  • How to Insert/Delete Row to WebDataGrid?

    I'm upgrading UltraWebGrid to WebDataGrid.

    I need to delete or insert row to the Grid on the SERVER-SIDE.

    when I use UWG, all I have to do is using Add() or Delete() method like below.

       ultraWebGrid1.Rows.Add();
       ultraWebGrid1.Rows[0].Delete();

  • Cell Edit and Lock in Webdatagrid of Infragistics controls

    Hello All,

    I want to Edit a particular Cell in Webdatagrid from Server side.

     

    I want to do this in "OnInitializeRow" event of the Webdatagrid 

     Is there any event to Capture a particular cell and Set the property to Editable or non editable…