Tagged Questions
Infragistics is a company that specializes in User Interface (UI) controls and components for .NET, ASP.NET, Windows Forms, WPF, Silverlight, jQuery, ASP.
13
votes
4answers
3k views
Infragistics WebGrid vs. Telerik Grid
I have been using the Infragistics UltraWebGrids for a few years now in multiple products, but have reached a crossroads with them. I have been looking into the Telerik products and they appear to ...
7
votes
2answers
2k views
Are there alternatives to UltraWinGrid?
I've been using the Infragistics UltraWinGrid for a while in a C# project, and while it's very spiffy, it is sometimes a bit heavy to run (and editing it in Visual Studio can be hazardous).
I'm ...
6
votes
7answers
4k views
DevExpress vs infragistics Suites - looking to possibly switch
We are currnetly an Infragistics NetAdvantage Select customer and have been for a few years. Their controls are ok but not what I would call great but the time invested in learning them to date is ...
5
votes
1answer
111 views
Databinding on Image but I need a byteArray
I'm working with Winforms, CAB, C# and Infragistics. I'm trying to work with MVP with my backend connected with WCF.
In my presenter I've my Model, let's call it AgreementDataContract. This data ...
5
votes
5answers
1k views
WPF ObservableCollection<T> vs BindingList<T>
In my WPF app I have a XamDataGrid. The grid is bound to an ObservableCollection. I need to allow users to insert new rows through the grid but it turns out that in order for the "Add New Row" row ...
5
votes
4answers
2k views
Telerik vs. Infragistics for Silverlight
Yes, this is certainly a duplicate question, but I wanted to get some fresh takes.
My impression is that Telerik is a much more complete suite, but I'm really really turned off by the responsiveness ...
5
votes
2answers
780 views
Microsoft Ribbon for WPF vs Infragistics Ribbon
Microsoft released Microsoft Ribbon for WPF (you can download it here).
At the moment I am using Infragistics Ribbon.
And question is: which one is better?
Infragistics Ribbon control has ...
5
votes
3answers
3k views
Infragistics license exceptions when MSBuild-ing
When running the MSBuild scripts for a project, I'm getting the following errors:
Properties\licenses.licx(1): error LC0004: Exception occurred creating type ...
5
votes
5answers
1k views
What's your opinion on MS CAB (Composite Application Block)?
I'm in the process of evaluating the use of CAB for a new .net 3.5 winform project
I plan to use the Infragistics toolset, which is known to be 'CAB compliant'
While CAB has the immediate upside of ...
5
votes
3answers
10k views
Display rows in multiple columns in Asp.net Gridview
By default each row of a Gridview maps to each row in a datatable or dataset attached to its datasource. But what if I want to display these rows in multiple columns. For example if it has 10 rows, 5 ...
4
votes
5answers
720 views
How do you use commercial libraries in a continuous integration build?
Setting
We are using licensed Infragistics winform controls for creation of desktop applications. All our software builds are performed on a CruiseControl.NET server.
Remark: Never mind the ...
4
votes
1answer
2k views
Making Infragistics UltraGrid Columns have “Spring” Behaviour
Oout of the box the Infragistics UltraGrid control allows you to make the last column in a grid spring to fill the remaining unused portion of the grids bounding rectangle.
...
4
votes
13answers
2k views
Infragistics Controls - are they stable/easy to learn?
What is your opinion on Infragistics controls (both Web and Win)? Is this a stable library? What do you feel about the learning curve?
4
votes
3answers
7k views
Infragistics UltraGrid: how to remove default selection of first row
I have put an UltraGrid on a WinForms user control. I have tweaked some settings so I can use the grid as a read-only multi-row select table. But there's one problem: by default the first row appears ...
4
votes
2answers
4k views
Hiding the header on an Infragistics Winform UltraCombo
I've gone through just about every property I can think of, but haven't found a simple way to hide the header on a winform UltraCombo control from Infragistics.
Headers make sense when I have ...
3
votes
1answer
152 views
Open a Popup window without any close button
I have a webhierarchicaldatagrid and its first column is a template column which is a hyperlink. So onmouseover on the data of that column I want a small popup window to be open right next to that ...
3
votes
5answers
580 views
True MVVM and third party controls
In a True MVVM model we do not expect any code behind in xaml.cs also we do not expect viewModel to have refernece of view.
However all third party controls do not provide good support for True MVVM.
...
3
votes
1answer
670 views
Can't attach event handler to Context Menu Item in Style
I'm trying to modify default context menu for XamNumericEditor on XamDataGrid editable cell.
Here is my XAML-code:
<igDP:XamDataGrid.Resources>
<Style TargetType="{x:Type ...
3
votes
1answer
91 views
Searching for old .Net librairies
I am looking for old .net third parties libraries.
The situation I am in is that we need to work with an old source base for a client that has the code sources but not the third parties libraries. ...
3
votes
2answers
149 views
What are the side-affects of ensuring every control created has a handle in .NET?
In the past, I've suffered from a freezing issue that was the result of a Control being used to marshall calls on the UI thread before a handle has been created for that control. (See Kim Greenlee's ...
3
votes
3answers
843 views
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 ...
3
votes
1answer
560 views
C# infragistics UltraDockManager
I have created a side tab that opens just fine(basically turned a UltraGrid into a tab, not a form w/ an UltraGrid ), but when pinning the side tab it gets sized in back of the main form.
How do I ...
3
votes
1answer
2k views
Add dependency property to control
I am using the Infragistics XamDateTimeEditor control and I want to add a dependency property to it to allow the developer to choose to have all the text selected when the control gets focus. I have ...
3
votes
1answer
3k views
How to bind the Selected Item to a Model with the Infragistics XamDataGrid?
I have the following model:
public class Model : INotifyPropertyChanged
{
public ObservableCollection<ViewElement> Elements { get; set; }
public ViewElement CurrentElement { get; set; }
}
...
3
votes
7answers
2k views
What are your experiences with NetAdvantage or DXperience?
I'm looking into both of them, and while I have been quite pleased with NetAdvantage at my previous employer, I find the price point (plus testimonials like at ...
3
votes
3answers
4k views
How do you get child bands in ultragrid without using related tables in a dataset?
I'm using linq to pull back an object (i.e. customer) that might have a collection of other objects(customer.orders). I would be nice if I can pass this list of customers to the ultragrid and a ...
3
votes
3answers
11k views
UltraWebGrid: How to use a drop-down list in a column
I'm using the Infragistics grid and I'm having a difficult time using a drop-down list as the value selector for one of my columns.
I tried reading the documentation but Infragistics' documentation ...
2
votes
3answers
221 views
How to implement a search that causes multi-column record filtering in XamDataGrid?
I am trying to implement a search (Ctrl+F) feature on a XamDataGrid. How can I programmatically invoke record filtering on the grid that searches across content in multiple columns and displays only ...
2
votes
1answer
91 views
Winforms application shows differently on different computers when using Infragistics components and resizing routines
I am developing a GUI using Winforms. Everything looks fine on the majority of testing computers (as in, the UI is displayed in the same way and accordingly to the pc on which the GUI was developed). ...
2
votes
1answer
94 views
How to change appearance of AutoComplete suggestions in an UltraComboEditor?
The UltraComboEditor of Infragistics has an AutoComplete feature that displays suggestions in a popup as the user types.
The part typed by the user appears bold :
To comply with our graphic chart, ...
2
votes
3answers
795 views
Infragistics Ultragrid - Combobox as column
I have a problem with the UltraGrid control from Infragistics. I have created a ultracombobox with a few values in it:
UltraCombo ultraComboPaneel = new UltraCombo();
...
2
votes
1answer
220 views
“Please Wait” mask goes behind webdialogwindow popup
We have a Javascript div shown on PostBack on page to show a "Please wait" indicator in the asp.net application. There were few requirements where we had to include a Pop up . This pop up is the ...
2
votes
1answer
448 views
xamDataGrid - indenting nested levels
I have a xamDataGrid with two levels of data. (see other question on SO).
There is very little visually that shows where one level of data starts and a seconds begins. Take a look at this snippet ...
2
votes
1answer
252 views
infragistics controls vs asp.net controls - performance
Any performance comparision between asp.net controls and infragistics controls? I need to compare all controls e.g. TextBox, DropDownList etc.
2
votes
1answer
939 views
XamDataGrid: I have two columns (displaying decimal data): I want one with a “$” sign, and one without. How?
I have two decimal datatype columns; I want them displayed like so:
Column 1 (ColumnWithNoDollarSign) will have no "$" sign in front of the values
Column 2 (ColumnWithDollarSign) will have a "$" ...
2
votes
3answers
1k views
Telerik vs Infragistics vs DevX? WPF 3rd party controls. (Grid)
I have used Telerik WPF Rad controls v10, they are good. But didn't used it's RadGrid.
And also I haven't used Infragistics and DevX controls for WPF.
Keeping in mind the easy and detailed ...
2
votes
1answer
476 views
Infragistics UltraTree with checkboxes in selected cells
I use the Infragistics UltraTree control in a Winforms application as a treelist (outlook mode). The problem with the outlook mode is, that it is not possible to have node checkboxes. So my workaround ...
2
votes
1answer
157 views
Infragistics and DataBinding
I just need to bind "Enabled" property of ButtonTool (Infragistics toolbar button) to a boolean property of my business object.
Public Class ToolStripBindableButton
Inherits ...
2
votes
2answers
972 views
Convert HTML or PDF to RTF/DOC or HTML/PDF to image using DevExpress or Infragistics
There is a way do convert HTML or PDF to RTF/DOC or HTML/PDF to image using DevExpress or Infragistics?
I tried this using DevExpress:
string html = new ...
2
votes
3answers
731 views
How to access a silverlight control's properties and methods from an aspx page?
I'm developing a web site, and i'm using infragistics for web, but I want to use in some pages silverlight controls (Infragistics too). Is there a way to access a silverlight control's properties and ...
2
votes
2answers
170 views
Software Translation Services cost - ballpark idea
I was wondering if anybody could give me ballpark figures for translating resx files. Let's say I have 10 Resx files with each about 10K words. What would be the cost to translate those from English ...
2
votes
1answer
422 views
two infragistics controls on same line
My ASPX code is:
<span>
<igsch:WebDateChooser ID="ContractPeriod2Start" runat="server"
NullDateLabel="" Editable="True" EnableAppStyling="True">
...
2
votes
1answer
3k views
Refresh UltraGrid's GroupBy Sort on child bands when ListChanged?
I am using Infragistics 2009 vol 1.
My UltraGrid is bound to a BindingList of business objects "A" having themself a BindingList property of business objects "B". It results in having two bands: one ...
2
votes
1answer
2k views
Custom sorting on UltraWebGrid - ASP .NET
How can I accomplish custom sorting on the Infragistics UltraWebGrid?
I've tried to hadle the SortColumn event and it works, however, whenever I click the column header, the columns are sorted via ...
2
votes
1answer
2k views
Viewing Time using the Infragistics UltraDateTimeEditor for WinForms
By default the UltraDateTimeEditor displays just the date. What setting do I change to display/set the time in addition to the date?
2
votes
1answer
3k views
How do I access the child rows of an Infragistics Web Grid row?
I need to modify the contents of the child rows of a hierarchical Infragistics web grid when it is expanded. I can get the parent row from "e.Row" in the following code. But how do I get its child ...
2
votes
1answer
472 views
Infragistics Training
We are a somewhat advanced user of this technology but have had to learn it by trial and error. We are looking for formal training either online or instructor-led that is worth the cost. How is the ...
2
votes
2answers
5k views
Which event is raised on check change of checkbox in Infragistic UltraGrid ?
I am using an Infragistic UltraGrid in a window application.
Which event is raised on "check change" of checkbox in Infragistic UltraGrid?
2
votes
3answers
1k views
DataGridView.HitTestInfo equivalent in Infragistics.Win.UltraWinGrid.UltraGrid?
Does anyone know if the Infragistics UltraGrid control provides functionality similar to that of DataGridView.HitTestInfo?
1
vote
1answer
57 views
How do I get measures on mouse down in?
I am using XamDataChart and I have to get current chart measures on the mouse down event.
I've tryed to put the mouse down event on the BarSeries but I still can't find a way to get a measure that ...