Guy
Guy
here's the GitHub repo for the demo I made: https://github.com/theGC/feathers-objection-merge-request-testing
Also worth adjusting `renderTestSelector` to allow for the new start modifier: https://github.com/theGC/processwire/blob/65092e06acd31738122aac95812dfde2b9c9a57f/wire/modules/Inputfield/InputfieldSelector/InputfieldSelector.module#L751 ```php // take into account a limit=n if(strpos($selector, 'limit=') !== false && preg_match('/\blimit=(\d+)/', $selector, $matches)) { $out =...
yeah sure, we're using it to allow clients to select pages (categories or products), showing a limited set of these, starting at a certain index. The above is set up...