• Re: How to add editor provider?

    Hi,

    Yes, It is possible to use a dropdown editor provider for the WebDataGrid out of the box. You can refer to the following sample:

    https://ko.infragistics.com/samples/aspnet/data-grid/dropdown-editors => WebDataGrid => Editors => DropDown Editors…

  • Webdatagrid Calls a Webdialogwindow with a Webdatagrid to search for an item

    Hello

    I have a WebDataGrid that contains a template column with an imagebutton that displays a magnifying glass.  This is to allow the user to do a search in a completely different table for a product.  I've built the WebDataGrid that does the search and…

  • WebDataGrid loses select when LinkButton clicked

    Can you confirm a strange issue:  When I click a "LinkButton" on my aspx page, the WebDataGrid on that page loses its selection.  Checking Behavior.Selection.SelectedRows in the button event handler shows that there are no selected rows.  But simply…

  • Re: Can edit the column header caption by JS?

    Hi sismm,

    In order to change the caption of a WebDataGrid's column, you can use something similar to:

    ig_controls.WebDataGrid1.get_columns().get_column(0).get_headerElement().textContent = "New Header Caption"

    You may find more useful…

  • webdatagrid row hidden property in java script

    I have to move rows from one left webdatagrid to right grid. I have to remove a selected row from a webdatagrid when the row moved to the right grid through java script on the client side. In the old infragistics we are doing the below way. Could you help…

  • Webdatagrid sorting within folders/files

    Hi There, 
                    I would like to bind the directories and files information into webdatagrid (refer to attached the layout of my webdatagrid) and in that, the sorting should works within the directories first and files then for ascending. In case of descending…
  • How to get filtered data from Infragistics webdataGrid in to a Datatable

    Hi team,

    We are using webdataGrid.We are trying to copy data form webdataGrid in to a Datatable  after a filter, but it will copy all data from the webdataGrid(we need only filtered data).

    Code using for copy data : DataTable dt = this.wdgDataload.DataSource…

  • Re: Manual Update Each Row after Changing Row

    Additionally,

    I want to use a barcode scanner to enter data and keypress either an <Enter> or <Down Arrow> to save the current record and advance to the next.  I can handle the barcode entry and control, but have not found a way - other than…

  • Re: Update all tabs from WebDataGrid selection event.

    Hello and thank you for posting on our forums.

    The WebDataGrid has it's EnableAJAX set to true by default. For this reason, when changing the selection of a row, the WebDataGrid is going to request a Partial Page Postback. This property setting will…

  • how to save existing data in webdatagrid to a database without editing cells

    I have a webdatagrid bound to a sqldatasource which containing TransactionNo, ItemName and Quantity fields. I need to save ItemName and Quantity without changing their existing values in the webdatagrid with different TransactionNo,  when a button is pressed…