Jump to content

bernhard

Members
  • Posts

    6,629
  • Joined

  • Last visited

  • Days Won

    358

Everything posted by bernhard

  1. I also get it on Firefox. Which version did you try exactly? the single-js version or the one with separate css? I also tried it with Reno + Uikit... no difference
  2. This one keeps annoying me, so I wonder if I'm the only one having this problem: Whenever I mention someone in the Forum with the @ feature the editor somehow breaks and does not work properly any more. I just can't enter new paragraphs any more. Shift+Enter still works (making 2 <br> instead of one new <p>) but sometimes the only solution is to reload the window... It seems that this problem also occurs when I click on the name instead of selecting it with the keyboard (arrow down, then enter or tab). Can anybody confirm this? Or is there a hidden trick to make it work? Thx! --- Testing: Selection with keyboard + Enter @ryan // worked Selection with keyboard + Tab @ryan // does not work any more. Don't know why... maybe because I removed the @ryan mention part?! I'll reload the window Next try after reload (keyboard + tab): @ryan // worked @ryan This time I used the mouse to click on it and got this error:
  3. Thx @jmartsch and @Beluga but I get a vertical scrollbar on all my RockGrids after the update: Do you also get this scrollbar?
  4. Just finished the docs for my custom smart filter - if anybody wants to get an idea what is possible just have a look here: https://gitlab.com/baumrock/FieldtypeRockGrid/blob/master/plugins/filters/smart.md
  5. OK, then I can't think of any quick and easy hack, sorry. I agree that checkboxes might be easier for the eyes, but I don't think that's worth the effort.
  6. You're welcome, I don't know of a quick built in way, but sometimes it's easy to solve such things with little hacks - especially when you are not dealing with huge amounts of data. Can you provide an example of values that are in the first pagefield and that would be in the second. Like ryan did in his example: Country / City What kind of data do you have? Are the values of the checkboxes dynamic or do you set them manually?
  7. Do you want to develop something on your own? Do you want to hire someone that develops it for you? Do you want to ask @kongondo if it is possible to add that feature to his module when you purchase it? What are your skills? What is your level of experience with processwire? What is your timeframe? What amount of options do you have (thousands of options or just a few)? etc. --- The more information you provide, the better the answers will be. Edit: Sorry, didn't read the quoted message carefully enough. But still some more information will help in providing better answers ?
  8. Are you talking about something like this?
  9. I'd recommend you install Adrian's awesome tracy debugger module. It helps a lot in all kind of situations - maybe also in your current one. It might throw a more meaningful error. Or at least it makes it very easy and comfortable to run some code snippets. The panel is called "console". You can just paste in some code, run it, dump variables, log messages etc. Did you try to rename your 1029 folder via FTP to 1029_bak and see what happens? Can you move your site to another server and see if that makes a difference?
  10. What is "very very large" ? ?
  11. I've heard WordPress has a plugin for that ?
  12. 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 ?
  13. 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>";
  14. Forgot one: One click with RockGrid, already built in - and they can even filter the grid before exporting ?
  15. 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
  16. 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:
  17. I've just not created any yet ?
  18. 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.
  19. 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/
  20. 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 ?
  21. 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 ?
  22. 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?
  23. You mean the $cookie etc. suggestions? This is what I get: I guess that's the setting mentioned in the extensions docs:
×
×
  • Create New...