At present the choices list should contain tuples:
[ ("option-value", "display-text"), (..., ...), ... ]
Can it be expanded to optionally allow a tool-tip as 3rd tuple element which is then rendered as a title attribute in the element:
("option-value", "display-text", "tool-tip") --> <option value="optional-value" title="tool-tip">display-text</option>
At present the choices list should contain tuples:
[ ("option-value", "display-text"), (..., ...), ... ]Can it be expanded to optionally allow a tool-tip as 3rd tuple element which is then rendered as a
titleattribute in the element:("option-value", "display-text", "tool-tip")--><option value="optional-value" title="tool-tip">display-text</option>