uxui_question_disable_default_style
Use uxui_question_disable_default_style to disable the default-question-style class for this question and all parent nodes of the question. It effectively removes all default styling, so it can be useful to give a question a plainer look.
Possible values
true|false
Applies to
Any question type
Example
The following example displays a categorical question by using the Button control type with the default styling removed so that it can look more like a button.
QGoButton ""
[
uxui_question_disable_default_style = "true"
]
style(
ElementAlign = "Right"
)
labelstyle(
ElementAlign = "Right"
)
categorical [..1]
{
BtnGo "Go"
style(
Control(
Type = "Button"
)
)
};
See