Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Hi!
Is it possible to add suffix in QComboBox? I haven't found anything in docs.
Regards, Jake
I seriously doubt it. You'll probably have to create a custom combo box if you don't feel like simply appending your desired suffix to whatever text items you add to it.
Use a QValidator subclass and its fixup() function. Then just set the validator with QComboBox::setValidator.
Very clever :)