Hi,
I am using Ultragrid for some set of properties which should be applicable to some data.
which is the best way to implement different controls inside a cell.
For example consider a grid with 3 rows with 2 columns. All the below controls are applied on the same column (2nd column).
1) First Row second column should have UltraComboEditor
2) Second Row Second column should have UltraCheckEditor
3) Third Row Second column should have TextBox (not using UltraTextEditor because of lack of support for autocomplete text). Is the autocomplete added to UltraTextEditor ?
Which is the easy and more performance way to implement the same. If possible, give me a sample application which explains it.
How to retrieve the data from the each type of column ?
Is there any control which may help improve the performance if it is used inside UltraGrid. if yes, kindly explain them.
Hello Ray,
We have an article about this, which I think is very helpful:
http://help.infragistics.com/Help/NetAdvantage/WinForms/2013.1/CLR4.0/html/WinControlContainerEditor_Embed_Different_Editors_within_WinGrid_Cells_of_the_Same_Column.html.
Please do not hesitate to ask if something comes up.
Could you send or upload the sample or you code if no sensitive data in it
I am also in need of same situation that different controls in each row
dynamically coming from database
grid may have 10 or 100 rows, and based on the datatype set in database and some params, the controls in the 2nd column will be text, list, radio, etc.
Like a quiz questions.
please send the xml and event code if you will.
gudi said:Is the autocomplete added to UltraTextEditor ?
No, you have to use a control that has a dropdown list like UltraComboEditor or UltraCombo.
gudi said:or how can i achieve the autocomplete functionality with in the Ultragrid column or Cell without using UltraDropDown for the column.
You can't. You have to use an UltraDropDown or a ValueList. Or an UltraCombo or UltraComboEditor.
Hello Mike,
Is the autocomplete added to UltraTextEditor ? or how can i achieve the autocomplete functionality with in the Ultragrid column or Cell without using UltraDropDown for the column.
Thanks Mike. I am following the first approach. Looks good way to me as of now.