AzzaAzza69
AzzaAzza69
How about on first show, if the element is focusable , focus it otherwise delay set focus when animation is finished?
Can I suggest a fit-all: $writer->setColumnWidths(aFixedWidths|'autosize-char'|'autosize-font'); so the 'autosize-font' could be used for XLSX/ODS (but you could use the 'autosize-char' if you wanted quicker width calculating or the aFixedWidths for...
Erm, yeah?!... ```` $('#combobox').focus() ```` as you set the select to have tabindex="-1", you ensure the user doesn't tab onto the hidden select but I'm talking about another safety measure...if...
I think he would like the attributes set against the regular options transferring to the equivalent "li". so when this is "converted" to a sumoselect: {select} {option data-whatever="test">option1{/option} {option data-something="else">option2{/option}...
This would do it: in the createLi()... I changed: ```` // AzzaAzza69 : create without any attributes (including class!) const li = $(`${opt.html()}`); // +AzzaAzza69 : copy all attributes from...
+1. It would appear it is a 'Select all visible' is required which is a useful feature.
I see a future problem in that any more options are going to require more parameters...whereas extra keys can be added to the array as the functionality increases... It is...
try this: ... add this function to the class ``` private function boolToStr($value){ return $value ? 'true' : 'false'; } ``` ...find the line: ``` $style_indexes[$i]['wrap_text'] = (bool)$style['wrap_text']; ``` ...change...