QtitanDataGridModel-view DataGrid component with rich functionality for Qt.C++ and PySideQtitanRibbonReplicates Microsoft RibbonUI interface for Qt.C++ and PySideQtitanNavigationDesignUIReplicates Microsoft Navigation Design interface for Qt.C++ and PySideQtitanChartCharts and Diagrams component for Qt.C++ and PySideQtitanDockingDockable Panels and Tool Bars for Qt.C++ and PySideQtitanFastInfosetXML Compressed format FastInfoset implementation for Qt.C++ and PySideRoadmap Development 2023
FireDataGridPowerful, modern, fast, DB-Aware Grid for Delphi-FiremonkeyFireDockingDelphi IDE/Visual Studio implementation of dock panels for Delphi-Firemonkey
I have added delegate on columns which creates combo box as editor,
Please refer following code snippet.
column->setEditorType(Qtitan::DelegateAdapterEditorType);
GridDelegateAdapterEditorRepository* adapter = static_cast<GridDelegateAdapterEditorRepository *>(column->editorRepository());
adapter->setDelegate(new CustomComboBoxDelegate());
column->editorRepository()->setEditorActivationPolicy(GridEditorActivationPolicy(DblClick | EditPress));
please refer attached image where I could not see the delegated column highlighted on row selection.
Why you do not use a standard for qtitangrid solution? The variant how it is possible to insert a combobox in a grid is well illustrated in an RelationDemo.exe example. Delegate adapter was added to quickly port a large and complex editors, which require a lot of time to migrate from a regular Qt table to QtitanDataGrid.
We have complex editors present and which requires a lot of time to migrate it from Qt table to QtitanDataGrid.
Could you please let us know how to highlight the Combo box as delegate correctly.
We are using QtitanGrid 5.13.0 version.