Hi,
I am using ComboBox control from "Qt Quick Components for Desktop". Currently the items open in a normal way i.e. downwards. But my requirement is to open the items upwards. Is it possible in way? Please reply.
The .qml file contents for displaying ComboBox is as follows:
Thanks.Code:ListModel { id: menuItems ListElement { text: "First"; } ListElement { text: "Second"; } ListElement { text: "Third"; } } ComboBox { id: comboboxCtrl model: menuItems x: 300 y: 400 width: 150 height: 25 }

Reply With Quote

