Jump to content

eydun

Members
  • Posts

    158
  • Joined

  • Last visited

Everything posted by eydun

  1. Yes, "Custom form placement" was a great addition to combo-fields.
  2. I love this module. Have you been able to make it work in a combo-field?
  3. Thank you for the reply! I use Firefox as browser. Sometimes it works as you describe, but most often they keyboard arrows do not work. This is a problem I have only when using chat gpt website. I will give Brave browser a go.
  4. When I use chat.openai.com, I need to use the mouse to scroll up and down to read a reply from chat-gpt, because pageup/down and arrows on keyboard seem do be disabled. Is this the same for you?
  5. Would it be possible to use WireHttp as standalone? https://processwire.com/api/ref/wire-http/post/
  6. I just tried HumanDates for the first time. Wow, this is a package I have been missing for many years, thanks!
  7. Then again, I am not so sure... This is the supposed solution: https://github.com/umami-software/umami/pull/2090
  8. Thanks for the help. I do not use VSCode, but I try to get it to work in phpstorm.
  9. Do you recommend using this page for creating a new (your first) module? http://modules.pw/ Or is it not up-to-date with current specifications? Or is there some other module-boilerplate available, that you would recommend?
  10. Thanks, hope this module gets included in the PW-core.
  11. Thanks, that fixed it. Hope you find time to continue maintaining this excellent module 🤞
  12. Thank you for building this module. I get this error on PHP 8.1
  13. Hi Daun, Thank you - the template file method is working.
  14. Hey @d'Hinnisdaël, I'm using RockGrid, a commercial module from @bernhard, which makes it possible to provide all kinds of great data listings in the PW backend that are highly customizable via simple JavaScript and great for the client to work with (sorting, filtering, colorization and aggregation of data etc.). RockGrids can be displayed as separate pages in the PW backend or in the PW page editor, because RockGrid ships with a Fieldtype/Inputfield that can be placed anywhere. I'd love to have such a grid (or more of them) in my dashboard that is built with your module. Is that possible somehow?
  15. I use RockFinder together with runtimemarkup-module https://processwire.com/modules/fieldtype-runtime-markup/ to display various page-data in the backend for the content-superusers. There are also some tables in the database that are non-processwire-tables, which I would like to display with RockFinder (if it is possible?). There is my code in the markup-field (it is working): $modules = $this->wire()->modules; $rockfinder = $modules->get("RockFinder3Master"); $rf = $rockfinder->find("template=categories")->addColumns(['id', 'title', 'created']); ob_start(); $rf->dump(); $result = ob_get_clean(); return (string)$result;
  16. Thanks. Can I pass this data to a rockfinder-instance, and use rockfinder dump-method? <?php namespace ProcessWire; /** @var $rockfinder RockFinder3 */ $rf = $rockfinder->find("template=dummy"); $q = new DatabaseQuerySelect(); $result = $q->select('id, class, created') ->from('modules') ->execute(); //dump($result->fetchAll()); // how do pass $result->fetchAll() to $rf-variable? $rf->dump();
  17. Would it be possible to dump this result to Tabulator (like $rf->dump();)?
  18. Thank you for building this awesome module. Is to possible to do custom sql-queries with RockFinder like this? SELECT id, class, created FROM modules
  19. I expect the answer to be negative, but I still need to ask. Has any managed to make Lister or ListerPro display in front-end?
  20. I agree, normally the database will be running. But I just want to make sure, that if for some reason the database is down (e.g. server reboot/maintenance), then the site will still be up.
  21. Thank you for the reply. I have tried to run a site with ProCache on, and shut down the database-service, and the pages stopped working. But let me try to test it again. Maybe I did something wrong the first time.
  22. Is it possible to setup a Processwire page/template that uses caching, so that the page can be displayed without creating a connection to PW-database?
  23. @teppoThanks, you nailed it! 😁
  24. Have you installed all the Multi-Language FieldTypes on both sites?
×
×
  • Create New...