Search found 16 matches

by DStuder
Thu Apr 24, 2025 1:22 pm
Forum: Module development
Topic: Strings for translation
Replies: 7
Views: 18087

Re: Strings for translation

Seems like a good idea. I've been trying to do exactly that but have struggled with it as I could not find any information on how to add translation to a module. It would be immensely helpful if this topic would be explained in the official jamovi documentation on module development: https://docs.ja...
by DStuder
Thu Oct 31, 2024 10:41 am
Forum: Module development
Topic: (In)Completeness of the R Documentation
Replies: 0
Views: 64850

(In)Completeness of the R Documentation

Hi guys I am currently in the process of finishing up my module and writing the documentation. During this process I noticed that in the R documentation of the package under "Usage", for arguments that have a dropdown-style string-selector (e.g. the direction of the hypothesis, which can b...
by DStuder
Thu Sep 12, 2024 6:26 am
Forum: Module development
Topic: enable UI options based on number of provided variables
Replies: 9
Views: 65696

Re: enable UI options based on number of provided variables

Wow Damian this is mighty impressive! Thank you so much for your help, I really appreciate it. Got my UI working as I intended now :)
by DStuder
Thu Aug 29, 2024 10:57 am
Forum: Module development
Topic: enable UI options based on number of provided variables
Replies: 9
Views: 65696

Re: enable UI options based on number of provided variables

Hi Brice

Haven't heard back from Damian yet. I tried to do it on my own, but that hasn't been successful, so sadly I can't help you out.

Dan
by DStuder
Sun Jul 14, 2024 6:30 am
Forum: Module development
Topic: enable UI options based on number of provided variables
Replies: 9
Views: 65696

Re: enable UI options based on number of provided variables

Hi Damian, thank you so much!

Best wishes, Dan
by DStuder
Fri Jul 12, 2024 4:38 am
Forum: Module development
Topic: enable UI options based on number of provided variables
Replies: 9
Views: 65696

Re: enable UI options based on number of provided variables

Hi jonathon

I feared as much.

Just so that it doesn't take up too much time... I can also live with displaying a warning in the output. But if you have something similar already, I'm very grateful.

Best wishes,
Dan
by DStuder
Thu Jul 11, 2024 1:42 pm
Forum: Module development
Topic: enable UI options based on number of provided variables
Replies: 9
Views: 65696

enable UI options based on number of provided variables

Hi there For one of the tests in my module, the user can provide either one or two grouping variables. I'd like to disable some options of the UI, if only one grouping variable is provided. I tried the following, but it doesn't work: enable: (`length(self$options$groupingVar) == 2`) I know it could ...
by DStuder
Thu Apr 18, 2024 10:05 am
Forum: Module development
Topic: Linebreak in table note
Replies: 4
Views: 14698

Re: Linebreak in table note

Alright, thanks for your help and the suggestion!
by DStuder
Thu Apr 18, 2024 9:28 am
Forum: Module development
Topic: Linebreak in table note
Replies: 4
Views: 14698

Re: Linebreak in table note

Hi jonathon Thanks for the quick reply. Adding them as separate notes works as such, but also repeats the "Note.", so the output then is Note. a) text Note. b) some more text Note. c) even more text I was wondering if I could somehow create a different output based on whether the code is r...
by DStuder
Thu Apr 18, 2024 8:49 am
Forum: Module development
Topic: Linebreak in table note
Replies: 4
Views: 14698

Linebreak in table note

Hey folks For the module I'm developing I added a note to the table using note <- paste("a) some text \n b) some more text \n c) even more text") table$setNote(note) The note contains a few different paragraphs, which I'd like to separate with a linebreak for visual clarity. So the output ...