diff --git a/widgets/DapComboBox.qml b/widgets/DapComboBox.qml
index 7b11afa91126af7e7371c4caa1018df4e5d7fc6e..1aa258e39ec6ce29d2a533c79ea39315e71d6a72 100644
--- a/widgets/DapComboBox.qml
+++ b/widgets/DapComboBox.qml
@@ -44,7 +44,7 @@ DapComboBoxForm
                         id: tm
                         font: fontComboBox
                         elide: Text.ElideRight
-                        text: currentText
+                        text: model[comboBoxTextRole]
                         elideWidth:
                             {
                                 if(index != currentIndex)
diff --git a/widgets/DapComboBoxForm.ui.qml b/widgets/DapComboBoxForm.ui.qml
index 829ec783aadbcec199399c89974d4f81776d9fee..8df56df1ef7bd57c1922db3bfb3736d670353d74 100644
--- a/widgets/DapComboBoxForm.ui.qml
+++ b/widgets/DapComboBoxForm.ui.qml
@@ -7,6 +7,7 @@ ComboBox
 {
     id: dapComboBox
 
+    property string comboBoxTextRole
     ///@detalis normalColorText Text color in normal state.
     property string normalColorText
     ///@detalis hilightColorText Text color in selected state.
@@ -64,6 +65,7 @@ ComboBox
     ///@detalis mainLineText Text without unneccesary part.
     property string mainLineText
 
+    textRole: comboBoxTextRole
     width: popup.visible ? widthPopupComboBoxActive : widthPopupComboBoxNormal
     height: popup.visible ? heightComboBoxActive : heightComboBoxNormal
     anchors.verticalCenter: parent.verticalCenter