Jump to content

bernhard

Members
  • Posts

    6,671
  • Joined

  • Last visited

  • Days Won

    366

Everything posted by bernhard

  1. What is "very very large" ? ?
  2. I've heard WordPress has a plugin for that ?
  3. You should really do that as soon as possible ? I'm using it on all my projects and it's an absolutely awesome listing tool. Much better than the core listing in most of the cases IMHO (not praising my own work here, most of the awesomeness comes from agGrid). I decided to make it free (MIT) so that others can use it in their modules (batch child editor, the new padloper, etc. - really a lot of possibilities here). I really think that it opens up a new world for processwire regarding how users can manage their content (GUI). Great, good luck and have fun ?
  4. Just place a checkbox field (eg "showlink") on the garden template (child) and in your gardens template (parent) you list your pages: // current $page is "gardens" echo "<ul>"; foreach($page->children() as $child) { $link = $child->title; if($child->showlink) $link = "<a href='{$child->url}'>$link</a>"; echo "<li>$link</li>"; } echo "</ul>";
  5. Forgot one: One click with RockGrid, already built in - and they can even filter the grid before exporting ?
  6. What is "very very large" ? RockGrid, RockGrid, RockGrid! It's a perfect szenario for it and it was mentioned several times already by @kongondo and @flydev - it seems you didn't have a look yet? There are several modules to help you with CSV import: https://www.google.com/search?q=site:processwire.com+import+csv
  7. Update: RockGrid is now translateable via the pw backend ? To be more precise: RockGrid has always been multilanguage, just aggrid's labels for Page 1 of X and "loading..." etc. where not translateable until now. The translation file is attached to the first post of this thread:
  8. I've just not created any yet ?
  9. This is called "Set Filter" in aggrid and it is an enterprise feature: https://www.ag-grid.com/javascript-grid-filter-set/ I've already created two custom filters: https://gitlab.com/baumrock/FieldtypeRockGrid/tree/master/plugins/filters I want to create a filter similar to the set filter of aggrid one day, but it has low priority at the moment. You can try my smart filter (that is already default in the new versions) or you can try to build your own. If you (or anybody else) are/is interested in sponsoring this type of filter for the community please let me know.
  10. Glad to hear that. I'm also still impressed how powerful and well crafted aggrid is ? If others read this just have a look here: https://gitlab.com/baumrock/FieldtypeRockGrid/blob/master/plugins/columns/rgColAddIcons.md https://gitlab.com/baumrock/FieldtypeRockGrid/blob/master/readme.md#transmit-data-to-the-client-side https://www.ag-grid.com/javascript-grid-row-styles/
  11. Great, have to try this soon. Thanks for sharing! Just flew over the readme and saw that you are always using http instead of https in your instructions. Is that a typo? Or does it also work with http? Maybe a hint that https would be more secure would make sense? No idea how JWT Auth works and I also didn't have a look at your examples yet. Just wanted to say thank you, follow the thread and maybe my comment is even useful ?
  12. Seriously?! ? OK... no FTP is actually a good idea, but "everything locked down and doing updates via zip" does not sound good to me ^^ I'd also go via SSH (if you are using Windows I can recommend WinSCP) or you could also use GIT to host your files and do a git pull on the server once you pushed an update (or even do that automatically with a webhook). Using GIT you'd also have version control for your project. Oh, and welcome to the forum ?
  13. Hey @kongondo, not sure why you need auto close tag as an extension, I don't see any difference to the built in emmet support: https://code.visualstudio.com/docs/editor/emmet I'm on Win10 and after startup it just works. Do you see that it is indexing when you startup vsc with a project that has a wire folder?
  14. You mean the $cookie etc. suggestions? This is what I get: I guess that's the setting mentioned in the extensions docs:
  15. imho it should work, maybe you can try it on a clean installation?
  16. can you please provide an example where this is annoying for you? other question: do you have an extension that brings you right to the php docs, for example when using "file_get_contents()"? or that shows e preview of that?
  17. @AndZyk do you have any settings for us? I think there are some techniques to tell the ide which class the variable is. @AndZyk I'd be interested in that as well. Maybe you already know how to do that? Thx!
  18. Yeah, same here. I used Felix Becker's but was never happy with it. Need to do some testing with the linked one but first tests where promising. In the screencast you see that it even picks the "pagebreak" property from rockreplacer which would not be possible with snippets created from the cheatsheet Also, you get a nice preview and docs and you can use "go to definition" or "peek definition" to go directly to the class file
  19. thx, I just tried that extension and it looks great! @kongondo I think his question was what is different from your version to normal intellisense? that's how it looks like with intelephense:
  20. If you want a GUI you can try RockGrid. It has a batch deletion feature.
  21. Thx, the strange thing is that I've already tried a z-index of 999999999999999999999999999999999 on the panel and the language switcher still appears on top?!
  22. Thx Adrian! @adrian and @tpr any ideas what could be done about that AOS lang-switcher appearing on top of the panel? z-index doesn't seem to help strangely.
  23. Sure! ? Maybe - if it is easy - it would also make sense to have a fullscreen for the console code input. But that's only some ideas. Everything works great for me as it is. Just suggestions for improvements.
×
×
  • Create New...