Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1775
ultracombo ultrawingrid
posted

Hi guys..

firstly does the ultracombo have the the folloing functionality: rowselectors,groupby,columnswapping?

If so how do i set these properties... i tried and cant get it to work.???

 

Finaly

1) im using the ultracombo as a editor component to a ultrawingrid that uses a ultrarowedittemplate. I find when doing a custom search in the filter of the ultracombo the combo's dropdown list close's but when i click on the dropdown button after applying the filter it opens with the values that i searched for... is there a way to keep the dropdown list open while doing the custom filter? i noticed when cancelling out the custom filter the dropdown remains open.

2) in my afterrowinsert event of the ultrawingrid how can i populate the contents of my cell that has the editorcomponent of a ultracombo with the first available record in the ultracombo. - this will only be in the case of a new record. i want to default the cell value to the first record in the ultracombo without having the user select a record from the ultracombo.

 

Parents
No Data
Reply
  • 71886
    Offline posted

    Hello Burmo,

    The ultraCombo does not support these features, If you like I could log them as new product ideas.

    1) I am not sure what you mean here - are you using the AutoComplete feature of the ultraCombo? It seems to me that you are talking of an editor's feature here - the ultraComboEditor. It has this functionality when you have set 'AutoCompleteMode' to Suggest and 'AutoSUggestFilterMode' to Contains for example.

    2) You could hook to the InitializeRow event of the grid and do something like the following:

    e.Row.Cells["Combo"].Value = "Something";

    This way you could assign the first value of the combo to every cell in the WinGrid and it will be then selected in the WinCombo.

Children