Jump to content

bernhard

Members
  • Posts

    6,671
  • Joined

  • Last visited

  • Days Won

    366

Everything posted by bernhard

  1. I guess it should be %YYYY-MM-DD% as written in the field's notes?
  2. I've also found this site but didn't find anything that attracted me... I think it might make sense to rebuild RockGrid to RockTabulator and use http://tabulator.info/docs/4.0/clipboard instead of Handsontable... Any thoughts?
  3. The folks at Handsontable have just released a new version 7.0.0: https://handsontable.com/blog/articles/2019/3/handsontable-7.0.0-is-here Unfortunately a single dev licence is 790$ so we either have to stay at 6.2.2 or watch out for another library... Does anyone of you know a proper alternative?
  4. Hey @Beluga, thanks for your fork! You are right about that, but actually recently I was thinking of doing a rewrite of RockGrid anyhow. So tabulator might be a good thing to try! It looks great both from the features and from the documentation. RockGrid got a little messy in both areas, so a rewrite could make a lot of sense. Though I have some applications relying on RockGrid, so I can't drop aggrid for tabulator. Would anybody of you guys would be willing to work on RockTabulator as a community/team project?
  5. Just added support for tippy.js to show nice tooltips with additional information. For example here I needed to show all available invoices related to one project of one month and I don't want different line heights, so I show the links on hover: Using tippy.js col = grid.getColDef('ids'); col.headerName = 'Rechnung'; col.cellRenderer = function(params) { if(!params.value) return ''; var ids = params.data.ids.split(','); var out = 'IDs: ' + ids.join(', '); var tippy = 'One per line:<br>' + ids.join('<br>'); return RockGrid.tippy(out, tippy); }
  6. Hi JavaScript experts! I wanted to use tippy.js ( https://github.com/atomiks/tippyjs ) for RockGrid but I don't know how to load the necessary files. I got it to work with the default theme by injecting the CDN files, but I need to add the light-border theme and that's not part of the CDN files from the docs. Can anybody please help me - I don't know how all this NPM YARN stuff works and how to get the right files in the right place and which files to add to my $config->scripts and $config->styles in the admin. Thank you!
  7. Which CSS Framework are you going to use? I've built a FrontendThemeUikit module last November and used it for two sites, but it's nothing releasable yet. If you are interested I can share my work with you. The concept is similar to what Robin posted above. https://screencast-o-matic.com/watch/cFXnX1Y72l The goal would be to have one master theme that does all the tedious tasks (rendering menus, injecting styles and scripts, do the basic setup with markup regions) and have a second theme only for customisations.
  8. For me the most helpful is Intelephense:
  9. Hi @ce90 and welcome to the forum! I'd be happy to hear more about your setup to get a better context ?
  10. Also have a look here:
  11. Yeah, it could for sure. Though I'd prefer seeing support for queries like RockFinder does in the core. It works, but it has some flaws and I think it could be done a lot better. Making it possible to query the PW data via SQL in an easy way should not be the task of a 3rd party module. It can be helpful in so many scenarios... Grids, REST apis, Charts, ....
  12. The docs are far from complete. For page reference fields you might have a look at https://github.com/BernhardBaumrock/RockFinder/blob/master/readme.md#joins Joins are great, because you can split the queries into easy finders, see how it works and then join everything together in one result. Complex fields like page reference fields or repeaters might mess up some queries or might need some extra work on the module.
  13. Hi @kongondo, it is language aware in general, yes. There might be some special cases though like repeater fields, where some additional tweaks would be necessary. I've updated the docs with some words about that: https://github.com/BernhardBaumrock/RockFinder/blob/master/readme.md#multilanguage Hope that helps. Easy finders should just be fine and you can always use RockFinder as a start and join custom SQL as you need ?
  14. That's what it does and why it is great ?
  15. That's what it does. Nothing more, nothing less.
  16. Resetting Windows got a lot easier since I know www.ninite.com ?
  17. sometimes it helps to add ?v=whatsoever to your HTTP url; edit: sorry, didn't see you're using gulp
  18. Hi @spiroue and welcome, will this be a public website or will all your clients have a login? If yes, you might consider developing a lot in the backend: https://processwire.com/blog/posts/building-custom-admin-pages-with-process-modules/ Easy with the core field: https://modules.processwire.com/modules/inputfield-page-autocomplete/ (just install it with one click in the backend) You can do all kinds of custom logic quite easily (depending on your skills) via hooks: https://processwire.com/docs/modules/hooks/ PS: Ther's also @kongondo's great tutorial:
  19. Hi @fliwire, welcome to the forum. This module is intended as proof-of-concept or for testing purposes of experienced developers and not for production use. I'm not using it any more, so I'd recommend you look for another solution (we have some, see the "how to search" link in my signature). Thx
  20. it's even worse on the notifications tab:
  21. I've also experienced strange behaviour from time to time. Not sure what was the reason. Most of the time I think it's me and don't investigate further ?
  22. Just tried and it's working here: Maybe a namespace issue?
  23. It seems to be working, but in panel mode it's not really usable... The problem also occurs on the ProcessModule's page when I have more content than available screen space. I tried it on linux and it seems to have similar effects (eg when hitting TAB to list available directories on cd foo/bar/... But I'm not keen on this new feature. When I need a terminal, then well... I open one. Most of the time from within my IDE via ssh. I don't see a benefit of using it via tracy - but maybe that's because I don't really like working in the terminal in general ? And I'm a little worried about security aspects... even if I don't have any idea how all that new console feature works. Just saying that if I don't need this feature I'm not really happy to have it there. I uninstalled the process module, but still... the code is somewhere on the server. Maybe you can tell us a bit to make me feel more comfortable ?
  24. wow!! new design for the forum, great!! ? Avatars are also squeezed in the latest topics links:
  25. I get different results: So for me the logical was the fastest ? Second try:
×
×
  • Create New...