Jump to content

MrEd

Members
  • Posts

    5
  • Joined

  • Last visited

MrEd's Achievements

Newbie

Newbie (2/6)

2

Reputation

  1. In case refference is needed, I have accidentaly opened the same bug report here: https://processwire.com/talk/topic/7774-inputfieldpagelistselectmultiple-module-bug/
  2. 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 )
  3. Hello, I have registered it there. https://github.com/ryancramerdesign/ProcessWire/issues/701
  4. 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);" .
  5. 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)?
×
×
  • Create New...