Browse By Tags

  • 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);

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

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

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

  • Add New Row with value in webdatagrid using javascript

     Hello,

    I have a webdatagrid with one column. The RowAdding behaviour is checked under the EditingCore Section.

    I have a textbox with data in it. On click of a button next to the textbox, the data in the textbox needs to be added to the webdatagrid. 

    I have…