• KeyedObjectBase

    Hello, We use KeyedObjectBase in the old UltraWebGrid, we are migrating to WebDataGrid, and that class does not exist anymore.

    What is the equivalent in WebDataGrid?

    Thank you in advance.

  • Can't see row in WebDataGrid when page is first loaded

    Hi.

    I can't see data row in WebDataGrid when the start page was loaded.

    I have Ultrawebgrid and Webdatagrid components in the same page, and ultrawebgrid component only display data.

    I want to display data in WebDataGrid, can you helpme with this…

  • Charset encode after rowUpdating.

    I have a WebDataGrid which contains data fields with special characters like 'México'. The grid displays these codes correctly.

    However after a row updating  the grid display does not show the symbol, instead it displays the code.

  • How to Tab functionality in the grid as existed for the WebGrid

    Hello,

    The facility like tab direction of Ultrawebgrid is missing from the Webdatagrid. Or we can determine where it is or how to implement this feature. This is important as we migrate from the UltraWebGrid to the WebDataGrid 


    Can you help us get this functionality…

  • WebDataGrid inside of WebDropDown Template

    Hi All/Angel,

    Is there a way to get a reference to the WebDataGrid that sits inside of a Template on a WebDropDown?

    Following on from my other post, I've created a Template with the WebDataGrid inside of it.  With the intellisense in the code behind…

  • Re: [MissingRecordException]: Requested record cannot be found by key

    I'm having the same problem with WebDataGrid in 12.2.20122.2075 with a page that has multiple WebDataGrids on it when I insert a row in more than one grid.  The insert in the 2nd grid throws this JavaScript exception every time. The workaround I just…

  • Re: Datagrid inside webexplorerbar lose data on postback

    Thanks your reply. We are using .NET datagrid not infragistics webdatagrid.

    Is it compulsory that we have to use webdatagrid nested Infragisitcs webexplorer bar?

    Replacing .NET datagrid with webdatagrid will resolve data loss issue on postback?

  • Re: WebGrid with AllowUpdate=false, allow selection of text inside a cell

    Hello Karthick,

    Which grid are you using, (UltraWebGrid or WebDataGrid)?  This is an older post and the javascript code in the previous posts will only work for the older UltraWebGrid control and will not work for the new WebDataGrid control.  Please let…

  • Re: Export several grid to a single Excel

    Hi Parthiban,

    You should just pass an array of WebDataGrids to the Export method:

    protected void Button1_Click(object sender, EventArgs e)

    {

        WebDataGrid[] gridsToExport = new WebDataGrid[2];

        gridsToExport[0] = WebDataGrid1;

        gridsToExport[1] …

  • Re: Accessing TemplatedDataField controls from InitializeRow event

    dinoboy said:
    I read that thread already but with any luck. It's about UltraGrid I think or at list I didn't find such properties on my WebDataGrid.

    My response was based on WebGrid, rather than WebDataGrid, since the question was originally posted…