Browse By Tags

  • Merge Silverlight XamComboEditor with Wpf.XamComboEditor

    The idea is to merge the functionality like filtering user input from the silverlight XamComboEditor with the one from the Wpf-NameSpace.

    So that there is one control which works out of the box as a standalone usercontrol as well as inside the XamDataGrid…

  • Displaying an item not in the list

    I have several XamComboEditors on my form that have their item sources based on VVL tables from the database.  These drop-down lists should only be showing "active" records and are filtered as such with the select statement before being bound to the controls…

  • Implement contains search feature in xamComboEditor

    Hi,

    If I use  AutoComplete= true it only gives me option to search with the starting character entered in the drop down and auto populate the list with selection.So if I type in "Bank" I should get "Apple Bank for Savings" as well as "Bank of America"…

  • XamComboEditor SelectionChanged Issue

    Hello,

    I have one issue with combo editor control. If I select an item which was already selected in the combo, then again control is giving selectionchanged event. i am getting this issue in Infragistics silverlight 2014.1 version. But in earlier versions…

  • How to display the beginning part of the data in XamComboEditor after a user selects.

    The data on my comboboxeditor is so long but i want to be able to display the beginning part of it after the user selects.

    Please help 

    <ig:XamComboEditor x:Name="txtPreparerList" Grid.Column="3" Height="22" Margin="0,2,0,5" Width="180" Grid.Row="2…

  • xamcomboeditor tab key problem

    hi

     i using xamcomboeditor in project with dropdown and autocomplete is true.when i enter the first time it takes data save it and second time when i starts entering it shows highlight suggestions eg. is Acold is already entered. now i just need to enter…

  • DisplayMemberPath drill down causes exception

    In the following code examples, the first XamComboEditor works but the second throws the exception and trace below. We've determined the exception is caused by the compound property in the DisplayMemberPath setter "ServiceDeliveryPointTypeCodeInfo.CodeDescriptionText…

  • How to bind to XamComboEditor SelectedItems

    I am using XamComboEditor with Multi-Select, the only way I am able to access Selecteditems is through a behavior.  Is there a dependcyproperty to which I can bind?

    Thanks in Advance,

     

    Will

  • ComboEditor Error

    I have a editable autocomplete combo bound to an IEnumerable under the current 2014.1 version.
    Everything works fine.. however after I change the value three times by selecting different values in the combo I get this error:

    System.NullReferenceException…

  • Error in xamcomboeditor when upgraded to 11.2 from 11.1

    Designer displays the following error if there is any event defined for SelectionChanged (even if it's an empty function or an empty string for the event name). Also, my events tab for the combo editor displays no events just the properties although I…

  • Add Items to XamComboEditor programmatically

    Hey,

    how can i add items to a xamcomboeditor programmatically?


    Bye

  • Possible defect in InfragisticsSL4.Controls.Editors.XamComboEditor.v11.2

    Hello, I'm having an issue with XamComboEditor whereby occasionally the function

    ItemPanelBase.RenderItem<T2, TControl2>(T2 comboEditorItem, Size availableSize) in your code is called with a null comboEditorItem causing a crash;

    I've looked…

  • XamComboEditor sorting issue

    Hello.

    Looks like there is no possibility to sort items in XamComboEditor binded to PagedCollectionView in ViewModel. Project to reproduce issue is attached.

    Several questions related to comboeditor in in multiselection mode:

    1. Is there any way to…
  • Error in InfragisticsSL4.Controls.Editors.XamComboEditor

    Hi there,

    I'm currently having an issue with a XamComboEditor that sometimes returns an unhandled exception.

    This happens when the AutoComplete is used to get the data from the dropdown

    It happens with no apparent reason and only occasionally…

  • Adding XamComboEditor in XamGrid

    Hi,

    I am trying to add XamComboEditor to a XamGrid column.

    I want to set the ItemSource of this XamComboEditor via code, it is dynamic and it'll keep changing means I'll change the itemsource to other collection as well.

    Want to allow user…

  • dropdown empty on first click

    If I have for example three values in my combo, a, b and c and the user starts typing x (a letter that does not match existent items) nothing is selected as expected. But when you want to check the list and click the dropdown, the list is empty on the…

  • xamComboEditor - binding to List<string> does not show selected items - Solution

    I am using a xamComboEditor and in XAML bind it to a List<string>.

    The items show up fine in the List, but when I select one or more items, the do not show up in the "Textbox" portion of the xamComboEditor, it woudl jsut show a bunch of commas…

  • Override KeyDown events for arrow keys

    Hi,

    I would like to know if there is a way to stop the down and up arrow keys from opening the dropdown, as I would like to perform a different function when these keys are pressed and I require the dropdown to be closed.

    Thanks in advance.

  • Issue with filtering data when contains a special character

    Hello,

    I am using XamComboEditor 13.2. I have issue when typing a text and this text contains a special character like space, dot, ö, ä. When pressed a special character the list is not filter and shows all items. How do I resolve this issue?

  • xamComboEditor Custom Filter

    I have a xamComboeditior with a custom items filter, my question is, is there a way to prepopulate the filter value?

     

  • Selecting all items of a xamComboEditor is very slow

    I have a situation where I initially want set all the items of a xamComboEditor to selected. The problem is that doing so is very slow. If there are 400 items, it takes 8 seconds, 32 seconds for 800 items, etc. I am using version 2012.1. My code looks…

  • WPF XamComboEditor invalid value entered custom error message

    Hi All,

     

    I have a XamComboEditor control filled with some list of string value. when user types to filter from my view model I am passing my error message but the control default error message is displayed type of string cannot be converted. How should…

  • Remove styling on combobox when it is disabled

    Im having real trouble removing the styling on infragistics combobox (NetAdvantage 2012.2) under silverlight. In its current state its barely visible with the opacity set down which makes the text light grey. See the difference between a combobox and…

  • XamComboEditor setting random selectied value in AddNewRow of XamDatagrid (in edit mode)

    Hi,

    I have an editable XamDatagrid with AddNewRow feature enabled.

    Many columns in the datagrid, when in Edit mode, provide a XamComboEditor.

    For one such column, I am setting the itemsource of the ComboEditor as an Obs. Collection of a Custom class…

  • Validation for XamComboEditor

    Hi Infragistics,

    I am currently doing validation on ComboBox elements by binding it to a property in the ViewModel and then doing an UpdateSource() call. This works perfectly fine.

    However, I was not able to do the equivalent for the XamComboEditor…