Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tiles Plugin: don't show "not answered" message #17

Open
perspectivus1 opened this issue Apr 5, 2020 · 1 comment
Open

Tiles Plugin: don't show "not answered" message #17

perspectivus1 opened this issue Apr 5, 2020 · 1 comment
Assignees
Labels
enhancement New feature or request

Comments

@perspectivus1
Copy link
Member

Add option to not show a the "* not answered" message. Not for all questions of type tiles, but rather as an option per question.

Could be useful for questions of all types.

@perspectivus1 perspectivus1 added the enhancement New feature or request label Apr 5, 2020
@tomer-epstein
Copy link
Contributor

Could be achieve with the question new property guiOptins.hint .

image

Enables developers to define hints for questions.
In order to show a question with a hint , define a guiOptions member with property hint on your question.

{
type: "password",
guiOptions: {
type: "login",
hint: "Enter your password"
},
name: "password",
message: "GitHub password",
mask: '*',
validate: this._requireLetterAndNumber,
when: (response) => {
return response.email !== "root";
}
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants