Hi mike,I am using ultraCombo in my application. I added two editor buttons to my ultraCombo.Now I want to access those editor buttons using Tab. But I am not able to get any property to set tabindex of EditorButtons.Is there any way to achieve this?(Programmatically or using built in functions).Thanks & Regards,Ganesh
Hi Ganesh,
I don't think you can. EditorButtons do not take input focus. You will probably need to use separate button or UltraButton controls.
Mike Saltzman"] You will probably need to use separate button or UltraButton controls.
You will probably need to use separate button or UltraButton controls.
Can we able put those buttons in ultra combo box Similar to editor buttons?
------------------------------------------------Ganesh
Oh.. no, that won't work, then. I'm afraid there's no way to make an editor button take focus, so you can't tab to it.
Perhaps rather than an EditorButton, you could use a Button column in the grid next to the column with the editor in it. This isn't a great solution, because you will have extra column headers and you would need to write code so that when columns are moved around, the buttons stay with the editor column. But it's the only way I can think of to get the buttons to take focus.
Hi Mike,
but can we use usercontrol as a editor control for grid columns? If we are able then it will work same like ultracombo or it will behave differently? I dont know how UserControl is working because I am new to UserControls.
No, but maybe you could create a UserControl that contains both a Combo and the buttons you need.