Browse By Tags

  • In a WebDataGrid with an UnboundCheckBoxField, how to hook a callback to the "checkbox clicked" event programmatically?

    I have a WebDataGrid to which I added an UnboundCheckBoxField.

    Now I want to handle the "checkbox clicked" event on he client side. How to configure that programmatically?

    I saw the example at "https://www.infragistics.com/help/aspnet/webdatagrid…

  • WebDataGrid- Pass Custom Arguments to Client Side Events

    Hello,

                   My asp.net application runs in mulitple user controls rendered under a parent web page. Each user control has web datagrid rendered inside it and the web datagrid uses client side events. Some of these client side events uses 

    $find("<%=…

  • Excel like editing, exit edit mode on cursor keys

    I want to support excel like editting.

    The cellediting behavior supports many options to specify when to enter editmode. Could you extend the cellediting behavior with options to specify when to leave edit mode?

    In the meantime can you help me out with…

  • UltraGrid sorting issue

    I am using Infragistics Ultrawebgrid on my asp page,now I need to sort data based on user clicked columns but every time i don't want to fetch the records from the table.

    I have enabled the in-build sorting property but at certain situations the sorting…

  • Client side Event AfterCellUpdateHandler Set a cell value

    I am working with an UltrawebGrid and what I want to do is set the value of a cell.  I am taking values from the grid performing a calculation.  Based on if that calculation equals what they entered into that cell I want the user to have the ability to…

  • CellClickHandler event firing in IE6 but not in IE8

    I have an Ultrawebgrid column with checkbox control. I want that the Client side event CellClickHandler will be firing when the checkbox is checked or unchecked. This is working properly with Internet Explorer v.6.0 but with Internet Explorer v.8.0 the…

  • WebDataGrid and Dropdownprovider: How to "inform" the server-sided part of the control of client-sided actions?

    Hi out there,

    I have a WebDataGrid that is populated by a view (join on several tables)  The user can add rows to that Grid (Datasource has an insert-Statement with params).

    When the user wants to add rows, he has to choose the name (of an employee)…

  • How to access a webdatagrid template column control in client side

    Hi,

    I am using a web data grid control and the first template column is set as a radio buttion. Code is as below

     

      <ig:WebDataGrid ID="wdg" runat="server" Width="100%" AutoGenerateColumns="False" EnableViewState="true"…

  • exitingEditMode called multiple times

    Environment  - Asp.NET    CLR 3.5    VB.NET    IE8 (Build 8.0.6001.18702CO)
    Infragistics 2010 Vol 3    WebDataGrid  Infragistics35.Web.v10.3, Version=10.3.20103.1013

    I have a date field in a cell on the grid and am using a datepickerprovider as an EditorProvider for a date…

  • WebDataGrid - Problem getting selected cell value in javascript on CellSelectionchanged event

    I'm using the new V10.2 controls, Visual Studio 2008. I just need to get the row of the cell selected, then use that to get a value from the same row.  I have problems with both of those things - I have comment lines in ALL CAPS above my problem lines…

  • Asp.Net WebDataGrid technical helps

    1. While page is postback, the WebDataGrid values are clearing by automatically. Datasource is binded by using the IList

     

    2. I am trying to set a EnableDataViewState="true" properties to the Infragistics WebDataGrid, I am getting the following…

  • how to fire row update if datasource only contains single record

    Hi,

    I use cellediting behaviour. If my grid contains more than one row I get the rowupdating event if the user switches from row to row. Sometimes my grid only contains a single record and I never receive a RowUpdating event.

    Do you have a solution…

  • KeyDown event of default NumericEditor not fired

    I use the WebDataGrid.InitializeDefaultEditors.

    In my event handler I have written the following code:

    void OnInitializeDefaultEditors(object sender, DefaultEditorsEventArgs e)
    {
       e.NumericEditor.Buttons.SpinOnArrowKeys = false;
       e.NumericEditor.ClientEvents…
  • Handling *SelectionChanged-events in JavaScript through the CSOM

    HI all,

     

    I'm wondering what's the "correct" way to handle the Row-/Column-/CellSelectionChanged-events in the browser. ASP.NET AJAX already provides an event framework, the WebDataGrid, however, seems to roll its own implementation here.…

  • AddNewRowSelectorImage Image Clicked Event?

    Is there any way of handling the Add New Row Selector Image click event?  I can't seem to find one. My users keep wanting to click it with the mouse, and they expect something to happen. It would be great if I could handle the image click event with Javascript…

  • ValueChanging event

    How do you use the ValueChanging event from inside an EditorProvider

    I have defined an EditProvider

                            <ig:TextEditorProvider ID="tepPercent">

                                <EditorControl HorizontalAlign="Right" ClientEvents-ValueChanging…

  • Webdatagrid with template checkbox

    Hello there.

    I'm new around here and this is my first post, so ... please bear with me.

    This is my first web project in .NET, basically.

    Ok, I have a Webdatagrid bounded to a datasource, except for a template field, a checkbox.The grid is fine…

  • Adding rows to WebDataGrid

    I have a very simple ASP.NET web application with a single WebDataGrid component. I did NOT bind the grid to any kind of DB object, but I did initialize it within the page load process (in function "Page_Load").
    Code:
    DataTable dt …
  • Populating the data without postback/page refresh

    Hi There,

               I am using Webdatagrid and in that I wanted to populate the items without page refresh. Initially I will load the data (folders information from server) to the webdatagrid in page_load event() and for further click in any of the folder name (grid…