WebDataGrid™ is a grid control with native AJAX capabilities. It is built on top of the Infragistics ASP.NET AJAX framework.
Questions tagged [webdatagrid]
72 questions
0
votes
1 answer
Infragistics grid ( Row select )
I am using Infragistics WebDataGrid to display data.
I want to select first row by default.
I tried following code for the same but not working
SelectedRowCollection selectedRows = gvHospital.Behaviors.Selection.SelectedRows;
…

Aarif Qureshi
- 474
- 1
- 3
- 13
0
votes
1 answer
Infragistics grid
I am using Infragistics WebDataGrid to display data.
When one of the column have null value, that row do not displayed in that grid.
Have anyone has suggestions?

Aarif Qureshi
- 474
- 1
- 3
- 13
0
votes
1 answer
How to search control in TemplatedColumn WebDataGrid InitializeRow event?
I want to search for the dropdownlist object which is in TemplatedColumn. I assume that I would be able to find it as we do in GridView or ListView templated controls.
e.Row.Cells is not available WebDataGrid control's InitializeRow event. I am…

user1558306
- 16
- 1
0
votes
1 answer
Add Dropdown to infragistics WebDataGrid in Edit mode
I have two issues:
I have a complex object with Id and Text underneath. For display, I am using TemplateDataField with eval function. Can I bind the complex object to a BoundDataField?
The reason behind binding the complex object to BoundDataField…

Jay
- 23
- 1
- 4
0
votes
2 answers
Infragistics WebDataGrid Checkbox and hidden column problems
I am trying to hide the column "Key" or [0]. I am also trying to set up check boxes in the below code that the end user can click/unclick. By default I set the checkbox to an unchecked state.
This code dgvPunchs.Columns[0].Hidden = true; is how I…

James Wilson
- 5,074
- 16
- 63
- 122
0
votes
1 answer
Argument 1: cannot convert from 'Infragistics.WebUI.UltraWebGrid.UltraGridRow' to 'Infragistics.Web.UI.GridControls.ControlDataRecord'
I am converting a bunch of code from vb.net to c# and I don't know vb.net very well so I am running into a lot of issues.
Can someone help me see what is wrong here?
protected void GenerateSalaryPunchesTable()
{
…

James Wilson
- 5,074
- 16
- 63
- 122
0
votes
1 answer
Cannot edit cell is an Infragistics WebDataGrid in ASP.Net 4.0 / Visual Studio 2010. Why?
My Infragistics WebDataGrid does not enter cell-edit mode when I double click a cell. It does not enter server mode - nothing happens. Only client-side events happen but I doubt those are necessary. What is wrong with the below asp.net…

JonathanWolfson
- 861
- 4
- 20
- 30
-1
votes
1 answer
selected row to text box
I try to select the row from grid and show it in text box to make update and delete to the row.
I have tried this code with DataGrid. It worked, but when I use it in infragistics webdatagrid it gives me null
protected void…

user3580800
- 21
- 6
-1
votes
3 answers
Web data grid of Infragistics controls
I am working on a web project where I need to use WebDataGrid of Infragistics controls and customise the header layout. I did not find event like InitializeLayout in UltraWebGrid. My problem is that i want to row in header. What do I do?
Vishal Srivastava
-1
votes
2 answers
How do call this method to bind it to an Infragistics control?
This method correctly loads the data and binds it to the infragistics control as long as I remove the object source, EventArgs e and call the method from page_load.
Is that a good idea to remove the object source, eventArgs e?
protected void…

James Wilson
- 5,074
- 16
- 63
- 122
-2
votes
1 answer
Deserialization failure error in Infragistics webdatagrid V15.2
A large amount of data is loaded in Webdatagrid from DB. I am using virtualscrolling property of webdatagrid to load data dynamically on scrolling. Since there is a number of records, if the scroll is clicked and dragged, then there is a loading…

Murali
- 1
- 1
-3
votes
1 answer
About the webdatagrid page setting
I want to set the datasource of each page separately for WDG.For example,the WDG has three pages and the record count of each page is different.Could it to be done?