Questions tagged [webdatagrid]

WebDataGrid™ is a grid control with native AJAX capabilities. It is built on top of the Infragistics ASP.NET AJAX framework.

72 questions
1
vote
1 answer

Error : React.createClass is not a function [WebDataRocks]

I'm trying to use WebDataRocks(npm) with React(v16.14.0) and its failing with the below error "React.createClass is not a function" Does it support React(v16.14.0)?
1
vote
1 answer

Performance issues with Infragistics WebExcelExporter.Export(webdatagrid, worksheet) with large data sets

I am using Infragistics WebExcelExporter.Export(webdatagrid, worksheet) to export large datatable having 70000+ rows and 25 columns. The export fails due to timeouts. Is there any other way to export with Infragistics WebExcelExporter. Works…
GAP
  • 11
  • 1
1
vote
1 answer

Get the value of clicked cell in Infragistics WebDataGrid using JavaScript

I have been through this since yesterday and didn't got anything except errors. What I want is very simple, I want to get the value of a cell when I click on button in a row in Infragistics WebDataGrid using a JavaScript, here is my code: …
Osama Gadour
  • 177
  • 2
  • 17
1
vote
1 answer

Infragistics WebDataGrid not getting disabled in chrome

I am working on Infragistics 17.1, I want to disable the Infragistics WebDataGrid. So I used webDataGrid.Enable = False property. This is working in Internet Explorer perfectly i.e. grid is in grey out and disabled state, but in chrome view is not…
Abhay
  • 3,151
  • 1
  • 19
  • 29
1
vote
1 answer

Infragistics WebDataGrid DropDownList lose state in post back

I have TemplateDataField in which contain DropDownList control in WebDataGrid. This DropDownList bind in row initialize event of the WebDataGrid and every post back Grid binds again using DataTable which is stored in a view state but one point on…
1
vote
2 answers

infragistics webdatagrid get selected cell from keydown event in client side

I have build an infragistics webdatagrid in c# : var columnOne = new BoundDataField(); columnOne.DataFieldName = "ColumnOne"; columnOne.Key = "columnOne"; columnOne.Header.Text = "columnOne"; var columnTwo =…
user2443476
  • 1,935
  • 9
  • 37
  • 66
1
vote
2 answers

How do I set formatting for a dynamically added column in Infragistics WebDataGrid?

I'm currently working with a utility that was written using the Infragistics WebDataGrid control. The tool allows a user to select a table from a drop-down list at which point it runs a stored procedure to get data from SQL Server which it then…
Tom H
  • 46,766
  • 14
  • 87
  • 128
1
vote
1 answer

Get WebDataGrid page size in javascript

I am using Infragistic WebDataGrid. When it load first, it gets data from database as data source in Page_Load event. On some UI interaction, I am rebinding it with JQuery.Ajax call by clearing it and appending new html using append method of…
Imad
  • 7,126
  • 12
  • 55
  • 112
1
vote
0 answers

Make particular rows of infragistics webdatagrid read only

I have written an InitializeRow event for this, but i am not able to get the cells(e.row.cells) from this to make it read only. protected void grdCrewCTC_InitializeRow(object sender, Infragistics.Web.UI.GridControls.RowEventArgs e) { if…
Guru
  • 13
  • 1
  • 3
1
vote
1 answer

Infragistics Webdatagrid: Resize column to largest header/data cell contents

I am searching for a solution that changes the column width based on largest data content or header. Solutions like tbody.igg_Item > tr > td { white-space: nowrap !important; } does not work because the grid sets…
Duncan
  • 11
  • 1
  • 2
1
vote
1 answer

Infragistics WebDataGrid- How do I get the value typed into the filter box by the user?

Using an Infragistics WebDataGrid v11.2 , how do I get the value typed into the filter box by the user, from the C# codebehind? Say the column's Key="LastName" . After the webDataGrid performs the search on the value entered, I would like to get…
Lill Lansey
  • 4,775
  • 13
  • 55
  • 77
1
vote
1 answer

Rowdatabound equivalent in webdatagrid of infragistics

I am looking for rowdata bound event that we have in asp.net gridview. What I am trying to achieve is this. e.row.rowtype == datacontrolrowtype.datarow on data bound event of webdata grid , but it is not working so how can I achieve…
ankur
  • 4,565
  • 14
  • 64
  • 100
0
votes
1 answer

Infragistics WebDataGrid Checkbox checked then page change = Async req failed

I have a webdatagrid with column 0 as a check box.
And…
Zippy
  • 455
  • 1
  • 11
  • 25
0
votes
2 answers

WebdataGrid And ObjectDatSource - After Filtered Event

I have a webdatagrid which gets bind by the select method of objectdatasource when I click the label. My webdatagrid opens in a panel. Look at the code below for the bind of grid. ViewState["FromDay"] = FromDay; ViewState["ToDay"] =…
Bebu
  • 65
  • 3
  • 14
0
votes
2 answers

WebDataGrid sorting with a generic list

I have a generic collection like this Dim List(Of t) myData = data.GetData() myWebDataGrid.DataSource = myData myWebDataGrid.DataBind() the config of the webdatagrid sort is this
jcvegan
  • 3,111
  • 9
  • 43
  • 66