Search found 26 matches

by NourEdinDarwish
Tue Jul 28, 2026 6:31 pm
Forum: Module development
Topic: Enabling a UI control based on VariablesListBox
Replies: 3
Views: 7171

Re: Enabling a UI control based on VariablesListBox

Hi,

I think you can use js code in enable field directly, I used this for example to check that it is filled with at least one variable
enable: ({return (ui['subgroupVariables'].value() || []).length > 0;})
I think you can replace the 0 with 1 to satisfy this condition of more than one variable ...
by NourEdinDarwish
Mon Jun 01, 2026 8:08 pm
Forum: Off-topic
Topic: Some OS names/labels are missing from the downloads page
Replies: 7
Views: 16756

Re: Some OS names/labels are missing from the downloads page

I also thought it was a bug, the design is a little confusing for my eyes ':)

Also, seems the release notes page is down
https://www.jamovi.org/release-notes.html
by NourEdinDarwish
Thu May 28, 2026 9:39 am
Forum: General
Topic: SummaryTables Module: Publication-Ready Summary Tables for jamovi
Replies: 3
Views: 5806

Re: SummaryTables Module: Publication-Ready Summary Tables for jamovi

jonathon wrote: Wed May 27, 2026 11:25 pm when you're ready nour, consider writing a blog post:

https://blog.jamovi.org/

cheers
Thanks, Jonathon! I would!
by NourEdinDarwish
Wed May 27, 2026 5:30 pm
Forum: General
Topic: SummaryTables Module: Publication-Ready Summary Tables for jamovi
Replies: 3
Views: 5806

SummaryTables Module: Publication-Ready Summary Tables for jamovi

Hi everyone,

I am happy to introduce a new module available in the jamovi library: SummaryTables .

A comprehensive module for creating publication-ready summary and regression tables in jamovi, powered by gtsummary package in R. Please note that it requires jamovi version 2.7.12 or later.

Here ...
by NourEdinDarwish
Tue Apr 28, 2026 8:22 pm
Forum: Module development
Topic: Image$isFilled() always returns FALSE
Replies: 14
Views: 82480

Re: Image$isFilled() always returns FALSE

so sorry for that, I did use ai to summarize my main points since it was too long, it seems it made it worse

For the `.27` version, the link above not working and giving me this error :
"404 - Page not found!
Sorry, that page doesn’t exist.

We’ll redirect you to the main page in a few seconds, and ...
by NourEdinDarwish
Sat Apr 25, 2026 9:13 am
Forum: Module development
Topic: Image$isFilled() always returns FALSE
Replies: 14
Views: 82480

Re: Image$isFilled() always returns FALSE

Hi Jonathon,

Thank you so much for the incredibly quick turnaround on this! That is exactly what I was hoping for.

I'm using Windows 11. I would really appreciate a pre-release version so I can test the fix and continue development. I will make sure to add `minApp: 2.7.27` to our `0000.yaml ...
by NourEdinDarwish
Fri Apr 24, 2026 5:49 pm
Forum: Module development
Topic: Image$isFilled() always returns FALSE
Replies: 14
Views: 82480

Re: Image$isFilled() always returns FALSE

Hi Jonathon,

On the drag-resize concern:

I understand the concern. Looking at fromProtoBuf in image.R, the width and height in the protobuf are the full dimensions (already including whatever scale the client applied), and they are restored unconditionally:

private$.width <- image$width ...
by NourEdinDarwish
Tue Apr 21, 2026 7:40 am
Forum: Module development
Topic: Image$isFilled() always returns FALSE
Replies: 14
Views: 82480

Re: Image$isFilled() always returns FALSE

Hi Jonathon,

Thanks for looking into it.

I get why dropping the size check globally feels wrong. You wouldn't want to break the invalidation rules for standard images.

What do you think about an opt-in flag? Maybe adding a property like dynamicSize: true to the YAML for the Image element. If that ...
by NourEdinDarwish
Sun Apr 19, 2026 4:05 pm
Forum: Module development
Topic: Image$isFilled() always returns FALSE
Replies: 14
Views: 82480

Re: Image$isFilled() always returns FALSE

Hi Jonathon,

Sorry, I think I complicated my first reply. Let me simplify.

You may remember the GitHub issue where I asked about dynamically sizing images. You suggested the .postInit + .run pattern:

- In .run(), calculate the size, call setSize(), and cache the dimensions in a hidden element ...