Search found 21 matches

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

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, ...
by NourEdinDarwish
Sat Apr 25, 2026 9:13 am
Forum: Module development
Topic: Image$isFilled() always returns FALSE
Replies: 13
Views: 11904

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`. Regard...
by NourEdinDarwish
Fri Apr 24, 2026 5:49 pm
Forum: Module development
Topic: Image$isFilled() always returns FALSE
Replies: 13
Views: 11904

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 private$.hei...
by NourEdinDarwish
Tue Apr 21, 2026 7:40 am
Forum: Module development
Topic: Image$isFilled() always returns FALSE
Replies: 13
Views: 11904

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 is...
by NourEdinDarwish
Sun Apr 19, 2026 4:05 pm
Forum: Module development
Topic: Image$isFilled() always returns FALSE
Replies: 13
Views: 11904

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. - In ...
by NourEdinDarwish
Sun Apr 19, 2026 10:21 am
Forum: Module development
Topic: Image$isFilled() always returns FALSE
Replies: 13
Views: 11904

Re: Image$isFilled() always returns FALSE

Hi Jonathon, Thanks for the quick reply. I traced the issue and it only affects images that use setSize() in .run() (dynamically sized images). Fixed-size images (width/height set in the YAML) work fine. What happens When clearWith does not trigger, fromProtoBuf in image.R still clears filePath beca...
by NourEdinDarwish
Sat Apr 18, 2026 4:45 pm
Forum: Module development
Topic: Image$isFilled() always returns FALSE
Replies: 13
Views: 11904

Image$isFilled() always returns FALSE

Hi everyone, I want to use isFilled() on Image elements to know if an image is not going to be rendered this run. The goal is to skip some related calculations for it inside .run() , similar to the example mentioned in the API guide for tables: table$isFilled() However, I am finding that self$result...
by NourEdinDarwish
Mon Apr 13, 2026 8:36 am
Forum: Statistics
Topic: Notice ignores newlines (\n) due to frontend CSS and HTML sanitization - any workarounds to allow multi-line notices?
Replies: 5
Views: 44674

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

Hi Jonathon, Just checking in to see if there are any updates on this? Supporting multi-line notices would be incredibly helpful. My main use case is needing to cleanly display multiple warnings generated from a single operation within one cohesive message, rather than cluttering the UI with several...