infragistics

WPF Infragistics gallery issue

I am trying to dynamically add items to the Infragistics WPF gallery (at runtime). First i tried to solve this with data binding, but since it didn't work, I tried something like this: //gallery - the gallery. //group - the group in which i want to add an item. string key = "1234"; group.ItemKeys.Add(key); GalleryItem gi = new Galle...

DataGrid binding issues

Has it ever happened to you that a datagrid bound to another element's selecteditems collection, doesn't update the first time an item of the second element is chosen? After the first attempt everything works fine. It is necessary to mention that I've set the AutoGenerateColumns to false, and define the columns myself. ...

Suppress message box for infragistics trial version

I installed infragistics trial version. While each time running the application through Visual Studio 2008, I'm getting the message box like "this is a trial version". I just want to suppress this message. How can i do this? ...

Infragistics DockManager - flickering when showing a floating view in the dockworkspace

I am using the infragistics UltraDockManager to show a floating - screen centered view in the Dockworspace, the problem that, when showing the view in the center it is flickering and user can see the view when moving from the default location to the center location How can I get rid of this behavior? Regards ...

Making Infragistics ultrawingrid, desired columns readonly

I am stucked at the situation where I need to disable few columns of a each row ,except newly added row. That is I have 10 columns in grid and I want first three columns that are binded from the rows coming from db as disabled or read-only, rest are editable. if I add new row then all columns of new row must be enabled until and unless ...

Odd Infragistics UltraComboEditor data binding non-bug

Within an Infragistics 8.2 UltraComboEditor, we had the following properties set via C#: DataSource = dataSource; ValueMember = "Measure"; DisplayMember = "Name"; DataBindings.Add("Value", repository, "Measure"); DataBindings["Value"].DataSourceUpdateMode = DataSourceUpdateMode.OnPropertyChanged; ...

Infragistics UltraWebTab

Im using Infragistcs UltraWebTab. The code is shown below ` <div class="tab-content"> <asp:Panel ID="PnlGeneral" runat="server"> <table width="100%" border="0" cellspacing="0" cellpadding=...

How to exit grid with ctrl-TAB when grid is on a tabpage (onkeydown works when grid not on tabpage)

winforms .net 3.5 Ultrawingrid 9.2 In my subclass of Ultrawingrid.Ultragrid : Protected Overrides Sub OnKeyDown(ByVal e As System.Windows.Forms.KeyEventArgs) If e.KeyCode = Windows.Forms.Keys.Tab andalso e.control = True then SetFocusToNextControl(True) End if Mybase.OnKeyDown(e) End Sub This works fine. But w...

Ultrawingrid - how to display #1/1/1800# as blank ( as if null )

Ultrawingrid 9.2 VS2008 .net 3.5 My wingrid uses a bindingsource. All datetimes which are null in SQL Server are delivered to the bindingsource as #1/1/1800# I would like Ultrawingrid to display this date as blank as it would a null from source. Also, if the date is null in the grid ( i.e. blanked out ) I would like to update the dat...

Proper usage (best practices) of Browsable attribute in .NET for runtime grid component behavior

I understand how Browsable attribute is supposed to work. It's supposed to hide a property from showing up in a PropertyGrid in design time. It also has another effect in that it will stop a Property from showing up in components such as Grids, or specifically Infragistics WinGrid. I am not sure if it has this behaviour on regular Win...

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 set the pinned tab layout to open up based on my sizing? ...

XamDataGrid Collection Column

Is there a way to bind to a collection column in a XamDataGrid DataSource? What i am trying to do is to show all the items of the specific column collection in a single grid field. (using the appropriate templates). Hope it makes sense to you all. Let me know if you need me to clarify things a little bit more. ...

(infragistics) ultradropdown

using a ultradropdown control from infragistic, i want to capture the "Tab" key press and focus the control somewhere else right now i have tried -KeyPress event -KeyDown event //if (e.KeyChar == (char)Keys.Tab) //{ //i'm using sender to find out which control was tab out. // SmartFocusContr...

How can change format of UltraDateTimeEditor in infragistic?

I need bydefault format like "dd-MMM-yyyy" in ultradatetimeeditor ...

How to get day id's from Infragistics Webcalendar ?

I am working with Infragistics WebCalendar. I need to pass the id's of the certain dates so the designer can color them diferently. The ideea is that I have certain events in certain days and I want those days to stand out. Also, how can I find out which month is selected ? Thanks. ...

Infragistics XamDataCards Layout WPF

I am writing a simple xaml in an attempt to give the user a choice in how they want to view information. One of the view choices I would like to use is the XamDataCard from infragistics. Here is the xaml code I have written so far: <User Control xmlns:igDP="http://infragistics.com/DataPresenter"&gt; <igDP:XamDataCards Da...

How do I override ProcessMnemonic()?

One of my forms requires special handling for two of its mnemonics which are attached to one control ("In" and "Out" UltraLabels with an UltraTrackBar in between). One possible solution is to override ProcessMnemonic() in a manner like so: (I can only include pseudocode) // For each control c in the form // - If the control is visible...

How can I use mnemonics to make an Infragistics UltraTrackBar zoom in and out?

I have an Infragistics UltraTrackBar control which I am using as a zoom bar. On either side of it, there are UltraLabels marked Out and In. The form that it is on has mnemonics for all of its other labels, so I want to put mnemonics on Out and In as well. I gave the Out and In labels the same TabIndex, and the zoom bar's is one higher...

WebCalendar Control fires ValueChanged event when it shouldn't

On the event WebCalendar1_ValueChanged(object sender, Infragistics.WebUI.WebSchedule.ValueChangedEventArgs e) I redirect the user to another page. If the user goes back to the initial page (with the calndar) using the back button the following happens: when he tries to navigate to the next month the control fires the WebCalendar1_ValueC...

Infragistics - Ultragrid - Group rows into categories

hi i would like to group rows in categories like that : http://img199.imageshack.us/img199/9152/capturegww.jpg I konw how to do this with OutlookGroupBy but its not possible to put the same row into severals categories So is there a way to group rows while beeing possible to put the same row into several categories at the same time ? ...