infragistics

safari problem

Hi, I'm using Infragistics controls in my web application(ASP.net)... and I'm using Ultra web grid in that too.... my application works well in IE and Mozilla . but in safari I'm getting the following error::(which is very vague and fuzzy) ... CAN U PLZ HELP ME in this?? wat's this error ? Does it have to do with compatibility problem??...

Adding new row in correct position to a user sorted wingrid with bindingsource

I have a Infragistics UltraGrid using a bindingSource. If I add a new object to my binding list, it adds a row to the bottom of the grid which is fine if there's no user defined sort. Question is if the user clicks on a column header to sort the grid, is there a way for new rows to appear in the proper sorted order instead of always on...

Infragistics UltraGrid: LoadOnDemand feature not working properly

I'm using the Infragistics Windows Ultragrid, version 7.3. I'm trying to use an UltraDataSource along with the LoadOnDemand mode. I have three bands defined: root, child and grandchild. When I click on the first row, it requests the data for the child band but also requests the grandchildren rows under the first child. Why does it ha...

How can I convert a datetime to dd-mmm-yyyy Date format?

I'm using Webdatechooser<<Infragistics control>> for a column which takes the datetime. I need to convert the value entered (through the Webdatechooser) to dd-mmm-format. Can I have snippets for that? ...

How do I set the office 2007 style with Infragistics?

I have been looking to set the office 2007 form style using infragistics, but just cant find the code lines i need (which I suspect are very few!) Does anyone have the code I need or a link to a tutorial? Looking on the infragistics site the samples seem few (or I just cant find them). ...

grid selected row

Hi iam using infragistics ultrawebgrid in this how to get the selected row index in the button click event ...

Infragistics Custom Control

Any advice on how to build a custom control where the functional control is an Infragistics 8.3 WebDataGrid? I believe it is by extending CompositeControl, but it is confusing to me what code goes into the CreateChildControl method vs. the PreRender handler vs. the Init and Load handlers. Thanks, Jonathan ...

jQuery Modal Example with .Net 2.0 Infragistics Grid

I'm new to jQuery (I must have had my head buried in sand for the last few years!) and I'm wondering if I could use it with an Infragistics grid for updating and inserting instead of the edit row template. We're currently constrained to using the 2.0 framework, and I'm stuck with the infra grids as well. Does anyone know if this is pos...

UltraWebTab not refreshing error

I have an UltraWebTab which I'm using in my application. The tab just consists of a textbox for the user to enter an email address. When the user clicks on the add button after entering the email address, an SMTP server tries to send an email to that address. However, if the SMTP server is down, it logs an exception. My application just...

Infragisitcs Grid with a WebDialogWindow as an editable popup

I'm looking for some sample code or a link to a good site. Does anyone have a sample of using an infragistics WebDialogWindow as an editable popup with an infra grid. I'm targeting CLR 2.0 using c# preferably. I would be updating a standard ADO.Net Datatable in a Dataset I'm not a fan of the edit row template technique. Thanks in ad...

Need UltraTree Clone Method - Problem with reference

Hi, I have ultraTree (infragistics tree) which is created at design time and it has custom class as "Tag". I have List as member variable. I have two combo box. Based on the combo selection I'll check the List's each items "Tag". If list contains, just i pick that, otherwise i create a new UltraTree and add it to List and i assign to t...

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; } } And the following grid where the parent DataContext is the above model: <dg:XamDataGrid DataSource="{Binding Path=Elements}" /> I want to ...

Using Page.IsPostback Within a USer Control Wrapped in an Update Panel

I have main page into which i load a user control with a grid and add/edit link buttons. If I bind the grid by setting the datasource and calling the datebind() method in the page load event then it sets properly. However, I want to keep the selected row between postbacks, so I wrap the bind code in "if (!Page.IsPostBack) {}" as usual....

Creating an Infragistics Edit Template using code

Hi, We currently use Infragistics grid and we don't bind our datasets until run time, and then setup the grid settings in code. This seems a bit long winded, but its the way our senior developer wants it done. I would like to look into using the edit template and I was wondering if there was a way of auto generating an edit template f...

Struggling to come up with a generic C# method that compares different types of numeric objects

I have an Infragistics UltraNumericEditor (version 5.3, quite old) control on a form. If I set the .Value field to something less than .MinValue or something more than .MaxValue then I get a System.Exception thrown with the following message: The 'Value' property cannot be set to a value that is outside the range determined by the ...

is there any iNFRAGISTICS control eqivalent to MonthCalendar control of .NET

hi, I am looking for a control in infragistics which is similar to month calendar control of .Net. Is there one? ...

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

Lazy loading infragistics WinForm grid

Does anyone know if the Infragistics WinForm grid support lazy loading? ...

Adding a new row (with a templated column) to an Infragistics UltraWebGrid

I am using the Infragistics UltraWebGrid to capture some data. I don't have this grid bound to a datasource, I simply access the values I need when the user clicks a save button. I need to add autocomplete functionality to one of the columns in this grid, easily achieved with an asp.net textbox and ajaxtoolkit autocomplete extender. Pr...

HowTo: Highlight the selected node in a UltraTree

Hello Everyone I have a UltraTree control which selects a page to display in a UltraTabControl. I am catching an event and figure out which node in the tree I want to select. This works all fine, just one (visual) thing wont: the activated node is not highlighted in the UltraTree? This is what I am doing pageTree.ActiveNode = pageTree...