infragistics

Gray out dates older than the MinDate in WinForms MonthCalendar control

I am using the MonthCalendar controls in a Windows Forms application. I want to gray out the dates older than the control's MinDate (or give the user some visual clue about which dates are not valid for selection). The control has no property for getting the behaviour I expect. I have tried the UltraDateTimeEditor from Infragistics but i...

Is it possible to constrain the height of an Infragistics grid?

I've tried Infragistics on this but they don't seem to understand what I am asking and it takes days to get an answer so please help! I need to place an Infragistics web grid into either a div or a table cell. The grid must size to fit the div or cell. If there is too much data to display, I need the grid to do its magic and add its own...

Add New Column in Infragistics Wingrid

I am using Infragistics wingrid in my application. I have assigned a datasource to my wingrid.Now i want to add a new column at a specific location. Can any one plz tell me how can this be performed. Regards, Savan ...

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 vendor's offering? Any other recommendations? ...

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 rows to edit? For that matter, how can I get the rows from any band other than band 0? protected void CustomerActivitiesGrid_ExpandRow(objec...

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. How to look for controls in WebDataGrid rows during InitializeRow event? ...

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 letting me focus on my business instead of coding basic docking/login/etc code, I feel like I would be able to achieve the same level of fu...

Select all text in a Winforms Infragistics ComboBox

Is there a way to do this? I want to mimic the behavior of a the UltraTextBox.SelectAll method in windows forms. ...

Infragistics UltraCalendarCombo seems to be on drugs

I have an UltraCalendarCombo calendar control that I need to disable a set of dates in (weekends and public holidays basically). I iterate through the list of dates for that month and set all the corresponding dates to disabled, this makes the current month look alright, but when I click the next month button on the control and try to a...

Preset Value on Infragistics UltraCombo

I have an ingragistics ultraCombo that I set to a specific datasource. I want to pre-select one of those values so the user doesn't have to choose it (most of the time it will be the pre-selected value). However, when I set the ultraCombo to that value it modifies the dropdown list to contain only that single value! I've tried using...

Filling tableadapter with stored procedure takes signifigantly longer than running stored procedure in SQL

I have been trying to fill my ultracombo box with data yet it takes a signifigant amount of time. However when I run the same stored procedure from withing sql server it takes relatively no time. The line of code that the program gets hung up on is: SprocPatientsTableAdapter.Fill(Me.PatientsDataSet.sprocPatients, SelectedCustomerID) B...

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? ...

How to stop further JavaScript events from executing

I'm using an Infragistics grid on a form and am handling multiple client-side events on the cells (e.g. cell click, before cell edit, before cell update, etc). On the cell click event, I'm spawning a secondary window (successfully) as follows: var convChartWindow = window.open("conversioncharts/" + currentCell.getValue() + ".html", "...

Mimicking the UltraGridColumnChooser's drag & drop ability

(Infragistics 2008 Vol. 3, CLR 2.0) Infragistics's UltraGrid comes with a column chooser user control, which is simply a vertical arrangement of columns with checkboxes that toggle a column's hidden state. In addition, it allows you to pick a column and drag it directly to the grid so you don't have to manually position it afterwards. (...

Customizing Infragistics Scheduler ASP.Net

I need to customize the Infragistics Scheduler by adding some more controls to it. The Infragistics forum is pf no help as of now. I am using NetAdvantage 2008 , Visual Studio 2005 IDE ...

Modify ToolTip of WebDayView Infragistics Control ASP.Net

I am using NetAdvantage 2008 ToolKit from Infragistics. In one of the forma I am using WebdayView here I need to modify the Tooltip of Activity. I searched the Infragistics Forum and came up with a lil solution i.e. WebDayView1.AppointmentTooltipFormatString = "Time: <START_DATE_TIME>-<END_DATE_TIME><NEW_LINE>Subject: <SUBJECT><NEW_...

Connect WebSchedule with CustomDataSource with Reminder Infragistics

Can anyone provide me a sample where one can use a custom Data provider to connect WebScheduleInfo and utilize its reminder functionality as well. Thanks in advance ...

Infragistics grid: Providing intellisense-like edit support in EditorWithText

In the application we are developing we would like to offer the user intellisense-type of editing facitilites when entering measurements. After entering a valid numeric value the user should enter the corresponding unit. To enter a valid unit, a list of valid units pops up in a listbox, see enclosed screen-shot. To change the currently s...

How can you dynamically add new bands to the Infragistics UltraGrid control?

Hi, I need to represent hierarchical data on the Winforms UltraGrid control. The data is contained on a BindingList object, which is assigned to BindingSource control. The objects contained in the collection have a "Children" property, which is another BindingList containing these objects. As our data volume is high, I'm only populating...

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 to be selected. But the Selected.Rows property is empty, and also the ActiveRow property is null. So the row appears to be selected, but ...