Browse By Tags

  • Add new row into WebDataGrid using Javascript deleteing the first row

    Hi,

    I have a strange issue, I have a bottom that adds a new records into WebDataGrid using Java script, the issue that after I add the first new row, and trying to add second row it deletes the first row , after that it works fin, only with the first…

  • In JavaScript - Change cell value in Grid2 from GRID1_CellEditing_ExitedEditMode

    I have two grids. I need to do this client side in JavaScript. When a cell value of Grid1 is changed I need to find and change a cell value in Grid2. TI can't find an example of what I am trying to do. Thanks in advance for providing one.

  • Get the WebDataGrid cell value using JavaScript

    Dears,

    Why I'm getting this error?

    What I'm trying to do is that I have WebDataGrid with TemplateColumn with a button, when I click on the button it spouse to get the column "leaveref" value and assign it to a session and then transfer me to a new…

  • URGENT HELP NEEDED ->>>>>Force URL to open in tab in IE7

    Hello,

    I have a link in my webdatagrid as follows:

    I open the link using following:

    var PageURL = "XYZ.aspx?XYZID=" + rows.get_cell(8).get_value(); window.open(PageURL, "", "menubar=1,resizable=1,location=1,scrollbars…
  • WebDataGrid 10.3.20103.1013 Add row using javascript

    Hi All,

    I am trying to add a new row to the grid using javascript using the following:

     

     var cust = { "iRowIndex": rowCount, "CustLName":"Cruise","nvchType":"The type"};

     grid.get_rows().add(cust);

  • 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…

  • 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 %>");…

  • ClientEvents

    Hello,

    I need a client site event for a double click in a WebDataGrid row.

    I've found that I can register events in the ClientEvent Tag. But I don't know what parameters are given to the JavaScript function, or how I get some cell values of the clicked…

  • Finding DropDownProvider DropDownItem's from the Cell in Javascript.

    I want to update cells from javascript. I do this after a callback to a web service. The cells belong to columns with DropDownProvider editors. The DropDownProviders have DropDownItems's created with text and value. i.e. we have things like Text = "ABS…

  • 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…

  • WebDataGrid ClientSide Add not working

    Hello,

    litle problem:

    Env.: VS 2008 Prof., Net Adv. 9.2

    i have a WebDataGrid with a Sql-Datasource. But AutoGenerateColumns="False"; since i only need some colums, and i set them manually in the 'columns'-section (prim-key included).…

  • 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.…

  • Problems adding row to grid with JavaScript CSOM

    I'm trying to create a VERY SIMPLE grid where a user can enter data.  No formatting, no AJAX stuff, just enter data and then submit the entire page.  It's proving to be quite a task.

    I'll go into my complaints about the standard Add Row behavior…

  • Detecting if a WebDataGrid Row is selected on client-side

    I've got a WebDataGrid set up and it's calling a simple client-side function that triggers a postback:

     

    function WebDataGrid1_RowSelectionChanged(webDataGrid, evntArgs)
        {        
        __doPostBack('<%= WebDataGrid1.ClientID %>', '');…

  • Error : Microsoft JScript runtime error: Object doesn't support property or method 'getAttribute'

    There was no error previously. Suddenly my webdatagrid is throwing the error listed above. Please suggest me few options which I can work out to solve my error. And also throwing the below error : Microsoft JScript runtime error: Unable to…
  • JScript Resize WebDataGrid

    Is it possible to resize the WebDataGrid using JavaScript? 

    When I've tried I get the following error:

    Microsoft JScript runtime error: Object doesn't support this action

  • 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 …
  • Re: What's the difference?

    How do the two grids compare if the user has javascript disabled? Taking into account addons to firefox like NoScript where the user selectively disables or has to enable javascript for a site...

  • When i loading the webpage,i met the js error like this 'c.coc' is null or not an object!

    HI!

    I am  a studier on webdatagrid! When i entrying the page that contain webdatagrid,there is a javascript error like this

      '1.c.coc'  is null or not an object!  ScriptResource.axd?d=DDqAHK75kNSp2EX97A0jmY4uIQ12Sf7fpaSi4hgzui6dh-dhJgJN03QAM2fscWDqHANxA4DZg…

  • TemplateDataField get value of a checkbox on client side

    Hi,

    Im trying to retrieve the value of a checkbox that is inside of a template field using JavaScript on the following WebDataGrid:

    <ig:WebDataGrid ID="dataGridBrands" runat="server" Height="350px" Width="100%"…

  • Add Row w/ Template datafields to WebDataGrid Using Javascript

    Hello:

    I have reviewed Craig Shoemaker's example of how to add, delete, and update rows on the WebDataGrid using Javascript with bound data fields. Is it possible to do this with template datafields with text boxes / dropdown lists inside the item…

  • Clear Rows And DataViewState On window unload?

    Hello:

    Is it possible to clear the rows collection and dataviewstate through the CSOM - preferrably on window.unload? I am currently developing a page that contains a webdatagrid that sits inside of a page that sits inside of a master page. When navigating…

  • How do I trigger a Data Bind on the WebDataGrid via the CSOM (Client-Side)

    I have my WebDataGrid bound to a SqlDataSource that uses a ControlParameter.  Using javascript, I've updated that control's value, but the WebDataGrid is not re-binding until a postback; I'd like to trigger the databind without a postback.

  • Re: Get textbox values of selected row in ClientSide Javascript (RowSelectionChanging Client Side Event)

    Issue Solved:

    Thank you to Rado Minchev in the following post: http://forums.infragistics.com/forums/p/45276/245350.aspx

    To anyone interested, here is the fully working function to access the cell items via BLOCKED SCRIPT

    function gridRowSelectionChanging…
  • WebDataGrid - Try to set the "value" of a TemplatedGridColumn such that the Datasource recognizes GetChanges() as having records

    I am using a WebDataGrid (2011v1.2116).  I have a TemplateGridColumn that is a DropDownList Control.  I can get it to load and reload the correct value in the droplist. 

    However, when I post back after a client side change to the dropdown, the datasource…