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
1215
Different editor for each cell in grid column
posted

Is it possible to have a different editor for each cell in a single grid column? I.e. One single column with different editors for each row. (combo boxes, date pickers, textboxes, numbers, etc.)

I am trying to use an Infragistics TreeGrid and TreeGridModel in an MVC app to simulate a Windows property grid. (see attached image)

The TreeGrid needs a different editor for each row in the last column, as shown in the example.

Or, is the TreeGrid a bad choice for emulating the Windows property grid? Is there a better component?

Parents
No Data
Reply
  • 1215
    Offline posted

    Could I use a column template to produce HTML markup in the following fashion?

    1. Create HTML markup strings for the various editor types in each cell in the column
    2. Place the HTML strings into cell values as plain text
    3. Use a column template to produce the actual HTML markup like this: ${FullHtmlMarkupFromEachCellValue}

Children