Browse By Tags

  • WebPercentEditor Round Off

    Round off is working fine with infragisitcs V11.1 but it is not working in V21.2?

    Please help me!!

    Thanks in advance!!

  • Ajax Indicator

    How to use ajax indicator for webdatagrid? 

    I'm  using server side to add row in the grid and infragistics V21.

    Please help me!!!

    Thanks in advance!!!

  • WebDropDown and WebDataGrid

    Hi, I have a WebDropDown and WebDataGrid on the page. when selection is changed in WebDropDown I need to repopulate Grid - and do this without full postback I don’t’ want to reload all page,

    I only want to refresh grid control.

    Please suggest…

  • WebDataGrid - AJAX Postback vs Full Page Postback

    For the older UltraWebGrid, we were able to use grid.IsXmlHttpRequest to differentiate between the grid's AJAX postback vs a full page postback, where the AJAX postback was initiated by grid.invokeXmlHttpRequest(...).

    In the new WebDataGrid, is there…

  • Multiple grids with ajax enabled - can't update other grids

    Hi everybody, i'm wandering if someone can help me in the following scenario. 

    I have multiple grids within update panel where selection on one grid changes data in other grids. Grids are dynamically populated based on filter built from selection…

  • Full page postback issue, instead of AJAX

    I have created a page with a WebImageButton within a WebDataGrid.  When the button is pushed, it does a full page postback instead of just the grid.  I add the OnItemCommand="grdClasses_ItemCommand" code to my markup and it causes the page to abend.…

  • UltraWebGrid pagination is not working when Browser="Xml"

    Hi,

    I am using Infragistics UltraWebGrip (Version=7.3.20073.1053). Following is the design code that is being used:

    </

     

    igtbl:ultrawebgrid><igtbl:ultrawebgrid id="grdPOItem"

     

     

    style="Z-INDEX: 114; LEFT: 8px

  • WebDataGrid1_RowUpdated

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

  • WebDataGrid Returning Undefined using igtbl_getGridById

    Hello all,

    I have recently been expriencing a problem regarding my WebDataGrid returning as undefined when using the client-side igtbl_getGridById method, as shown below:

    var grid = igtbl_getGridById("<%= myWebDataGrid.ClientID %>");…

  • webdatagrid filtered but not paging afterwards- nullreference error

    I have a problem with a webdatagrid which has a linq datasource with 12,00 rows and paging and filtering enabled the paging works fine alone but when I filter and try to page I get a null reference error?  Can you Help?
  • Async Show/Hide WebDataGrid

    I have a web page with a WebDataGrid that is hidden initially. Postback from a radio button turns the visibility on. If I perform a full postback, the grid loads fine and is styled correctly. If I wrap the controls in an UpdatePanel, the grid still loads…

  • WebDataGrid: AJAX Error

    I get a "ASP.NET AJAX client-side framework failed to load" error when I do the following, using NA 2010 Volume 3 SR 2134, VS 2010 and .NET 4.0.

    I have a webdatagrid binded to a sqldatasource, but the grid's visible property is set to false…

  • Sorting Problem

    Whenever I sort my WebDataGrid (which is tied to an OjectDataSource), I get a javascript error when the page renders.

    The error is in the javascript function:  _renderOnAsyncResponse: function (props, html)

    It is on the line:  newElement = newElement.firs…

  • Problem with EnableCrossPageSelection

    Hi,

    I'm using infragistics version 10.3.
    I have a problem with the EnableCrossPageSelection property of webDataGrid.
    This is my webdatagrid:

    <

     

    ig:WebDataGrid ID="WebDataGrid1" runat="server" Width="100%"    EnableDat…

  • WebDataGrid's columns do not hide in AJAX mode while their Hidden property is set to true

    I have a WebDataGrid, a multiselect WebDropDown above it and an "Apply" button

    All are placed in one UpdatePanel.

    The WebDropDown is populated with the columns of the WebDataGrid and the user can check the multiselect ceckboxes of the WebDropDown…

  • Affect the page during AJAX calls

    Is there a way to affect page during WebDataGrid AJAX calls? For example during grid paging I want to generate JavaScript on the server and emit it to the client to execute. This is possible for old WARP panel partial postbacks as well as Microsoft's UpdatePanel…

  • Deserialization failure,Invalid response

    Hi,

    I am new to infragistics control,i am working on asp.net website,whenever i run my website on google chrome and if the users session is expired then sorting the columns or performing any operation on infragistic grid fetch an error .'Deserialization…

  • Ajax Updates in Firefox

    In my webdatagrid (10.3) I had problems with IE9 and Safari (if I clicked on a row, it would select another row in Safari and in IE9 it would select a few cells not even on the same row). This problem was fixed in the 10.3 Service Release for Safari but…

  • Cascading databoud dropdowns

    I have a WebDataGrid with 3 dropdown edit providers, which need to cascade off the value of the first one (the value, not the text). All three are databound to seperate SQL sources. I've had a good look around the forums and found nothing useful, has…

  • WebDataGrid sorting on IBindingList object

    Hi, I have a simple page that contains a WebDataGrid, and I am having some issues with the column sorting.  I have databound the grid to a collection of objects that implements the IBindingList interface. 

    public class BaseBindingList<T> : BindingList…

  • WebDataGrid ScriptManager Error!

    I am having a problem trying to add a WebDataGrid version 2010 to a page.

    1. Createad an AjaxEnabledWebsite in VS2005

    2. Added a script manager in a page and below it placed the webdatagrid

    3. Added datasource for the grid.

    when i run the project…

  • WebDataTree and WebDataGrid

    Hi, I'm trying to refresh the contents of the WebDataGrid using the selected node of the WebDataTree. I would like to do this using ajax.  I can created a service call to return a list of data (JSON) used to repopulate the WebDataGrid, and could use…

  • Changing grid rows per page dynamically (AJAX way)

    I have a dropdown combo box on my web page that lets the user 'pick' the number of lines per page they want to see on a WebDataGrid at one time. This helps with long (and short) lists so the user is not swamped with lots of rows or lots of pages - they…

  • get_index() function always returns 0!!!

    I have WebSplitter that contains in one pane a WebGrid and in the other let say an info based on the currently selected row of a grid.

    I have buttons outside the splitter to move next - previous on the grid.

    PROBLEM:

    when the pane containing grid is…

  • Add and Remove Rows from Grid Client Side with AJAX

    I am using WebDataGrid and am making AJAX calls to add and delete records to the grid.  The AJAX call is successful and when it returns to the Successful function I try to manually add or delete the row from the grid with:

    ADD(where newExpenseRow is…