Hi Chandan, I am assuming that you have NetAdvantage 2005 Volume 3 CLR 1.0 in your application to match your TestAdvantage 2005 Volume 3 CLR 1.0. That being said, it should record and replay: SetCellData sRowPath, sColumn, sValue SwfWindow("xxx").SwfWindow("yyy").SwfTable("zzz").SetCellData "4","checkbox","True" Note that due to the timing of events particular to Checkboxes in the grid, it will only record after you leave the focus of the cell. IE move to another cell, or control. If for some reason it doesn't record, you can still...
Hi, I am using hierarchical grid first time. I have multiple bands in my grid. I don't have exactly idea how many bands are. I want to get the rows of specific band by providing its name or index. At the moment I cannot find any rows collection under band. I don't want to iterate through by looping. Another problem: I want first parent row index in case of multiple bands. If my selected row is in band four and row index is 4 but I need band[0] row index.
I wish to save the contents of a bound table, but only those rows that have been modified by the user in an UltraGrid. Is there a built-in dirty flag or some other way to tell a row has been modified?
I have a Ultragir with information and I used a UltraGridExcelExporter to export the grid to a excel and the result of the export is this: Is there any way to tell the UltraGridExcelExporter to insert text in excel and then after this text the UltraGridExcelExporter start to export the UltraGrid Something like this:
I'm thrashing around in the documentation, forum, and google without success. I have a flat object containing, among other things, a boolean property. How do I tell an ultragrid that for that boolean property to display an image for true, nothing for false, (instead of the default checkbox)? I want the databinding to be realtime, so if I change the object property and refresh the binding source's currency manager, the display should update accordingly (all that to say I don't want to have to re-initialize the grid every time some data changes). Should I use an appearance object on those...
Hi, I have an Winforms UltraGrid bound to a custom ITypedList collection. It loads and populates the data correctly, but cell values are not updated as the source properties update. Each row source object implements INotifyPropertyChanged. The grid row values ARE updated when you click into a cell on a row, just not in real time. I have bound the exact same datasource to a WPF toolkit grid and it works perfectly, so all the PropertyChange events are being fired correctly. Any ideas? Thanks
Is there anyway after I have exported my grid, and before I save it to insert a new row at the top of the worksheet that has a long description of what my grid is about? I am using 8.3 about to upgrade to 9.2, but have still not found a way to do this. The description I have is very long and cannot be used at the worksheet or file name because of the need for special characters.Any help or guidance will be greatly appreciated. Dim x As Integer = 0 Dim name As String Dim exportFile As String Dim workbook As New Infragistics.Excel.Workbook Dim title As String = Me.ParentForm.Text.Replace(":"...
Hi, we have a form with an ultrawingrid and a combobox. When we select a project from the combobox, we want to get all articles that are linked to that project in a valuelist on de gridview. The problem is that there's already a 'active' row on de gridview. So we can't use the initialize Layout event. Is it possible to add a valuelist to a row that's already in de gridview? We don't see a valuelist appear on our grid. Any advise?
Every now and then and with no repeatable pattern, I get a red X displayed during the loading of a UltraWinGrid. The code in using is below: sqlCn.Open() sqlReader = sqlCmd.ExecuteReader() If sqlReader.HasRows Then tabCoInfo.Load(sqlReader) ugCompanies.DataSource = tabCoInfo m_Firsttime_Flag = True End If sqlCn.Close() Below is the content of the stack trace when this happened. System.NullReferenceException: Object reference not set to an instance of an object. at Infragistics.Win.UIElement.DrawChildElements(UIElementDrawParams& drawParams) at Infragistics.Win.UIElement.DrawElement(UIElementDrawParams&...
Hi, I have a Wingrid bound to a custom object (the grid is setup as single band only), the custom data object have certain properties which are actually collection of other related objects. When I bind this custom object to the grid, the grid try to read all these collection properties although it does not show the data from these collection properties as grid display is set to single band. My problem with this is as soon as grid first reference these collection properties, it trigger code withing custom object to fill these collections (i.e. these collection properties are null initially and only...