Search found 9 matches

by NourEdinDarwish
Fri Feb 20, 2026 11:13 pm
Forum: Statistics
Topic: Notice ignores newlines (\n) due to frontend CSS and HTML sanitization - any workarounds to allow multi-line notices?
Replies: 2
Views: 3148

Notice ignores newlines (\n) due to frontend CSS and HTML sanitization - any workarounds to allow multi-line notices?

Hi everyone, I'm currently developing a Jamovi module using jmvtools and jmvcore, and I've run into an issue when trying to display multi-line text using a Notice element. When I pass a string containing newline characters (\n) to setContent() in my R code, the newlines are ignored in the Jamovi UI ...
by NourEdinDarwish
Fri Feb 06, 2026 8:31 pm
Forum: Module development
Topic: plot$setSize() in .run() works interactively but fails on Export - looking for best practices
Replies: 3
Views: 21404

plot$setSize() in .run() works interactively but fails on Export - looking for best practices

Hi everyone, I am developing a module that generates plots with dynamic height . I calculate the required height based on user options (number of data rows, groups, etc.), and I am currently calling self$results$plot$setSize() within the .run() function. I have noticed the following behavior: In the...
by NourEdinDarwish
Mon Feb 02, 2026 2:13 am
Forum: Module development
Topic: Understanding Array Options and Reference Levels in Jamovi Modules
Replies: 2
Views: 3443

Understanding Array Options and Reference Levels in Jamovi Modules

Hi everyone, I'm developing a Jamovi module and trying to understand how Array-type options work, specifically looking at the `refLevels` example from the `jmv` linear regression module: - name: refLevels title: Reference Levels type: Array items: (factors) template: type: Group elements: - name: va...
by NourEdinDarwish
Tue Jan 27, 2026 7:44 pm
Forum: Module development
Topic: Questions regarding Inter-Analysis Object Sharing and Custom File I/O Capabilities
Replies: 2
Views: 5299

Questions regarding Inter-Analysis Object Sharing and Custom File I/O Capabilities

Hi everyone, I am currently developing a module for jamovi and have a couple of specific questions regarding the capabilities of the API and R integration. 1. Persistence and Object Sharing Between Analyses: Is it possible to save an R object from one analysis so that it becomes accessible to a sepa...
by NourEdinDarwish
Sun Jan 25, 2026 2:42 pm
Forum: Module development
Topic: Do I need to use `jmvcore::toNumeric()` if we are using `permitted: - numeric`
Replies: 2
Views: 9202

Do I need to use `jmvcore::toNumeric()` if we are using `permitted: - numeric`

I am developing a module and looking for clarification on best practices for handling data types. I noticed a pattern in the core `jmv` modules (for example, in the **Independent Samples T-Test** `ttestIS`). In **`ttestIS.a.yaml`**, the variables are strictly defined with: ```yaml permitted: - numer...