infragistics

What would be the ideal way to do paging using a Infragistics WebDataGrid and SQL Server 2008

We have an application that is growing in users and the infragistics WebDataGrid and stored procedure are having performance issues. I'm looking into adding the ROW_NUMBER() function in the stored procedure, but I'm concerned with sorting. It looks like I would need to do change the procedure to have a dynamic order by case statement i...

Infragistics license file add itself to project!!?

I have a solution in VB.NET .NET 2 Use Infragistic componets all over the application. One day decided to add floating toolbar support to our Forms. Our forms inherit one base form BaseForm. This base form is used in multiple projects in the solution. So, on the BaseForm was added a UltraToolbarsManager. Since, a nightmare began: th...

Infragistics UltraWebGrid and Excel Exporter - how to uncheck Checkbox after export?

I have an UltraWebGrid, which the last column being a CheckBox. They then have the chance to Export the rows where the CheckBox is selected (yes, I'm using the UltraWebGridExcelExporter. But, after it has exported, I want to have it automatically uncheck any of the CheckBoxes. How can I do this? I've tried playing around with UltraWebGr...

String format question

Hi, I'm using infragistic grid, and setting DisplayFormat of each column. DisplayFormat is type of string, and uses it`s value to show value of cellValue.ToString(DisplayFormat), when showing values to user in a grid (as Infra docs saying) In grid I have doubles, that have many numbers after point, and I don`t know how many. And I need ...

infragistics web data tree ie script error

Hello, I work with infragistigs (NetAdvantage 2010.2) and I have a data tree on my page. But with the Internet Explorer (6, 8) the following error message is indicated: "The script break A script on this page causes browser delays. Another version of the script may cause that the computer stops responding." Only in the intert explore...

Get internal size of an (infragistics Winforms 10.2) control with scrollbars in C#

How can I get the internal size of an (infragistics) control with scrollbars? The control.Size contains the control size on the screen but how do I get the internal size (total size behind the scrollbars)? Thanks, ...

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 me the object null exceptionThanks in Advance ...

Slow when swapping Content values in a ContentPresenter

I am experiencing performance problems in a WPF application which contains a series of Infragistics grid views with the intent of a quick "scroll" effect without needing a scrollbar . I have taken the problem down as low as I can go by pre-building all the views in separate grids and then swapping the respective "active" view in and out ...

Guarding against unclosed html comment tag in rich text editor

I have an infragistics rich text editor that is breaking the rest of the page with data containing unclosed comment tag like: <style> <!-- /* Font Definitions */ --</style> Is there a good way to prevent this? (I'm thinking post save-data, as I'm not even sure this component is customisable before saving the data). ...

How to bind data Programmatically for the Bands of a WebHierarchicalDataGrid of Infragistics control

How to bind data for the WebHierarchicalDataGrid and if we declare a bands in the aspx page, how to bind the data for these band and how to build the relation between parent and child. ...

WPF: Implicit Infragistics Ribbon Styling using BasedOn

Hello, I'm using the WPF infragistics ribbon and I'm trying to work off their styles using the BasedOn attribute. This work well when the x:Key is defined however in the case where I want to override the property on a border located inside an implicit style, what's the best way to do that without duplicating the entire style into my cust...

Infragistics UltraGrid: How to force a CellUpdate event after user selects from drop down.

Infragistics UltraGrid: Column has a drop down with auto-complete. How can I force a CellUpdate when the user selects an item from the list and not have to wait for him to hit enter or click a different cell. ...

Infragistics "Cant init Editor" Error in Sharepoint

Hi, I deployed sharepoint with infragistics couple of weeks ago. it was working fine then but now i am getting error "Cant init Editor" in infragistics controls which are deployed on sharepoint. i have try to debug this problem with many angles but in vain. can anybody have the solution for that. i am using infragistics assembly vers...

Infragistics Ultralistview MouseHover Retrieve User Information

Hi, I am using Infragistics Ultralistview to display data in List which contains 3 columns and 4-5 rows(that could be upto 'n' rows depending upon data added). When i hover over the row for 2 seconds, i want that other information about that row should be displayed in a panel like control. How to do that? Let me know if anything else i...

Finding selected item of Ultralistview

What is alternative to ListView's SelectedIndices property in Infragistics UltraListview? FYI: SelectedIndices Property gets index of Selected Item in List View. For more info please refer: http://stackoverflow.com/questions/325241/finding-the-selected-item-of-list-view Please reply Thanks ...

Set value in UltraGridCell not firing events.

I have an UltraGrid with checkboxes in one column. I have an event that is fired when one of the checkboxes is clicked (checked or unchecked). However, I want to set the value of the checkbox through code at a later time. I figured out how to do this by finding the UltraGridCell and doing cell.value = true; or cell.value = false;, but t...

Enter-key Prevention Javascript Not Working for JSF 1.1 in IE

Notes on environment: JSF 1.1 using Infragistics component library. I'm using the following Javascript to attempt to prevent an 'Enter' keypress from submitting a form. function disableEnterKey(e){ var key; if(window.event) key = window.event.keyCode; else key = e.which; return (key !...

NetAdvantage 9.1 & Visual Studio 2010?

Will Ingragistic's NetAdvantage 9.1 work with visual studio 2010? I installed VS 2010, and then NetAdvantage but I don't see the NetAdvantage in VS. ...

Page automatically printed from winform application is not oriented correctly

We are printing pdf from winform application. We are creating pdf file using infragistics report and printing it without opening it. following is the source code for printing it using default printer. protected Report _report = new Infragistics.Documents.Report.Report(); var printDocument = new PrintDocument(); _report.Preferences.Pri...

WPF UI Automation With Infragistics Controls

Does anyone have any good pointers/examples/links for writing WPF UI automation tests with applications utilising Infragistics controls? ...