Monday, September 28, 2020

Which input type?

If the answer is YES, use checkbox. If the answer is A or B (or C, D or E), use radio. If there are more options, than five, use listbox. And if user can enter own custom value instead of offered choices, use combobox (textbox + listbox) or textbox with autocomplete.

☑ Do you want an ice cream?

Which ice cream do you want?🔘 Vanilla🔘 Chocolate

In Qedy, there are two kinds of textboxes with autocomplete. One based on "text" type, allowing to add any value, with autocompleted options only as a faster way of adding common values, and one based on "enum" type, where user is forced to pick one of the options from the menu.

In other words, text.autocomplete is more fancy text box and it's best used in situations where you want push users towards certain values (also dealing with letter capitalization or accents), while enum.autocompelete is text based select for situations, where listbox would have too many options.

Tuesday, September 15, 2020

Colored text in VS Code Terminal

Most terminals allow to print colored text and the default Terminal in VS Code (based on PowerShell) is no exception.

  1. console.error("\033[91m" + ev.stack + "\033[0m");

asdf

  1. SyntaxError: Octal escape sequences are not allowed in strict mode.

asdf

  1. console.error("\x1B[91m" + ev.stack + "\x1B[0m");

asdf