Tagged Questions
The webdatagrid tag has no wiki summary.
1
vote
2answers
5k views
FindControl in Infragistics webDataGrid
I have ig:TemplateDataField that contains label.
In InitializeRow event handler I try to find that label with e.Row.FindControl but I get null.
I was not able to find another way to find my label.
...
0
votes
0answers
31 views
WebdataGrid - Filtering and Updating the Database
I have a webdatagrid in which I am putting the comments related to a particular product.
Now when the comment is added, there is a column, number of days since last comment, it gets updated in the ...
0
votes
2answers
45 views
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
...
0
votes
1answer
58 views
Remove the partial check behavior of Infragistics webDataGrid BoundCheckBoxField
I used Infragistics WebDataGrid , I have BoundCheckBoxField column, I want remove partial check behavior. only check and uncheck
I wrote following class ,
public class BooleanConverter : ...
0
votes
1answer
233 views
How to get a WebDataGrid cell value in DropDownList_SelectedIndexChanged event?
I have GRIDVIEW in ASP.NET Page and I am converting it into infragistics webdata grid.
Now my grid has functionalities of opening file, copy file, edit description of file, emailing file and deleting ...
0
votes
0answers
29 views
Error “Invalid JSON primitive: |0|01||” while using moving feature for Date Column in WebData Grid (Infragistics4.Web.v11.1)
I am using WebDatagrid (Infragistics4.Web.v.11.1) . In my grid I have 3 Date columns I am utilizing columnMoving feature. All three Date Coulmns are in TemplateDataField and other are bounddatafield. ...
0
votes
0answers
147 views
Infragistics WebDataGrid column layout not maintained on Insert and Delete
I've come across this weird issue with the Infragistics WebDataGrid control.
When the grid starts, it appears ok, headers on the header row. There are no entries, so the only row displayed below is ...
0
votes
0answers
93 views
ValueChanging event on Infragistics WebDataGrid
Does anyone have an idea why this doesn't work or a workaround?
I'm trying to use the ValueChanging event from inside an EditorProvider
I have defined an EditProvider
<ig:TextEditorProvider ...
0
votes
0answers
191 views
Applying CssStyle to Infragistics WebDataGrid column, when loading dynamically
I'm trying to right-align a column in my WDG. I've been through the Infragistics tutorials, so I know that I need to added a new CSS style as such...
tbody > tr > td.ColumnRight
{
...
0
votes
1answer
146 views
Infragistic columnfilter
In my application i have used WebDataGrid infragistic control. I have total 5 columns(Status,CandidateName,WorkOrderId,VenderName,Rate) in this grid. I needed to apply filter on 2 columns only i.e; ...
0
votes
1answer
160 views
Hierarchial data in silverlight datagrid
I am trying to create a Datagrid where the first column contains '+' sign and next columns contain the data. When the user clicks the '+' sign the data is taken from the current row and the ...
0
votes
1answer
258 views
Binding Json Data to WebDataGrid via Jquery
Can anyone let me know the video over or give me the sample code that a jQuery calls a web service and the returned data is converted to JSON and I have to bind that data to Infragistics WebDataGrid?
0
votes
2answers
376 views
Populate DropDownList from WebDataGrid
I have a WebDataGrid linked to a SqlDataSource to display data. When a row is selected, I want to populate some textboxes and dropdownlists with the data from that row, for editing purposes. The ...
0
votes
1answer
342 views
adding 'row adding " behavior to webdatagrid programatically
Can any one help me adding row adding behavior to webdatagrid programatically
Dim RowAdditions As RowAdding = webDataGrid1.Behaviors.EditingCore.Behaviors.CreateBehavior(Of RowAdding)()
is giving ...
0
votes
2answers
1k views
Web data grid of infragistic controls
I am working on a web project where i need to use web data grid of infragistic controls.
I have problem to customise the header layout. I did not find event like InisalizeLayOut in ultrawebgrid. My ...