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
515
Custom drop down for a grid cell
posted

Hello,

In our application we have implemented a user control that is widely used for presenting and manipulating data (it simply consists of a UltraGrid for displaying the data and an UltraToolbarsManager which provides tools for data manipulating). We are looking for a way to display this user control as a drop down for grid cells that use lookup tables. It would be nice to do that for two main reasons; first, the user will be able to manipulate the data through the user control and, second, to provide a uniform interface for data management in the application.

Having read about the newly added functionality of ControlContainerEditor in version 9.2, we were wondering if this is the right place to start building. We will need of course to pretty much implement (or use, if it's possible) all the UltraDropDown functionality like AutoComplete, support for Value and Display member, keeping the grid cell focused while the user types in and so on.

Any advice about where and how to start will be greatly appreciated.

Parents
No Data
Reply
  • 469350
    Suggested Answer
    Offline posted

    Hi Mike,

    the new UltraControlContainerEditor is for embedding a control directly inside a grid cell. But it sounds like you want your control to show up as a dropdown in the cell, and not actually in the cell itself. In that case, you don't need the new editor. You can already do this without it.

    I, and others, ha've gone over this on the forums about a half a dozen times, so rather than re-type it all here, I will refer you to a recent post that explains how to do it. :)

    UltraComboEditor - Can I Use a Custom Control for the DropDown? - Infragistics Community

    Or, do a search for "DropDownEditorButton" and you will find a whole bunch more along the same lines.

Children