MrEd
-
Posts
5 -
Joined
-
Last visited
Posts posted by MrEd
-
-
Yes, this is the same bug. And it is due to inactive tabs. Inactive tabs are not rendered in browsers for some time, so the javascript has not action there. I don't remmember how I solved it in other simillar situation, but in my case here the setTimeout solves the problem (I know it is not the best solution, but deadline makes to think of workarounds )
-
Hello, I have registered it there. https://github.com/ryancramerdesign/ProcessWire/issues/701
- 1
-
Hello, I am not sure if I am the first one to find this bug, but...
How to reproduce:
Create field FieldsetTabOpen (lets name test_tab)
Create field Page (lets name test), choose Multiple pages, and type PageListSelectMultiple
Add the fields to template:
test_tab
test
test_tab_END
The field "test" is not sortable. The reason is because the InputfieldPageListSelectMultiple.init is called before the tabs are rendered.
My very quick workaround was to move the init method call into setTimeout, but I am not sure if this the correct choice.
wire/modules/Inputfield/InputfieldPageListSelect/InputfieldPageListSelectMultiple.module:88 now looks like the line below."setTimeout(function() { InputfieldPageListSelectMultiple.init($('#{$this->id}_items')); }, 200);" . -
We'll be adding more configurability to repeaters in the next version or so, including an option to have them collapsed by default (the repeater items themselves), ability to control labels of repeater items, and automatic sorting.
Hello, I am new with PW, but I am looking for this functionality. Is it in 2.3 already, or is this quote about 2.4? Maybe there is something done already with the labels (use patch or other way)?
- 1
[BUG] Verified sort bug with PageListSelectMultiple in PW 2.4.0
in General Support
Posted
In case refference is needed, I have accidentaly opened the same bug report here: https://processwire.com/talk/topic/7774-inputfieldpagelistselectmultiple-module-bug/