Search found 102 matches

by bembulak
Thu Jan 01, 2026 11:17 am
Forum: Coding Questions
Topic: Mobile UI Style Attribute
Replies: 3
Views: 405

Re: Mobile UI Style Attribute

I've investigated a little.

TextMobile() creates a <DIV> with no id, class, style or whatsoever in the generated HTML/JS.

Example:

Enumeration
#title
#text
EndEnumeration


If ContainerMobile(#PB_Any, #PB_Mobile_Page)

; Works:
ButtonMobile(#title, "Hello World")
SetMobileAttribute(#title ...
by bembulak
Tue Dec 30, 2025 7:00 pm
Forum: Bugs Reports
Topic: [Done] SB 3.20 beta 2 (W11)
Replies: 2
Views: 1247

Re: SB 3.20 beta 2 (W11)

Same with MacOS 14.7.5, Sonoma on Intel.
by bembulak
Tue Dec 30, 2025 6:58 pm
Forum: Bugs Reports
Topic: [Done] Notes for updates of documentation
Replies: 2
Views: 456

Re: Notes for updates of documentation

I agree. There seems to be a delta between features & documentation.
However, I guess there'll be updates, once the current beta becomes a final release.

There are lots of things, we as a community could do as well, I guess. Sort of a wiki or such would be nice, wouldn't it?
by bembulak
Mon Dec 29, 2025 2:31 pm
Forum: Coding Questions
Topic: Mobile UI and <div class="list-item__subtitle
Replies: 4
Views: 769

Re: Mobile UI and <div class="list-item__subtitle

I see.
I'm sure it's possible to reproduce this better, but here's a first approach:



Enumeration
#Container
#List
EndEnumeration

; Create an image
CreateImage(0, 42, 32, 24, RGB(255, 0, 0))
If StartDrawing(ImageOutput(0))
Box(0, 0, 42, 42, RGB(255, 128, 128))
StopDrawing()
EndIf

If ...
by bembulak
Mon Dec 29, 2025 8:14 am
Forum: Coding Questions
Topic: Mobile UI and <div class="list-item__subtitle
Replies: 4
Views: 769

Re: Mobile UI and <div class="list-item__subtitle


Hello

Multiple objects of Onsen UI allow subtitles. Is it possible to create them with SpiderBasic?


It would be helpful if you could provide a link / image / drawing of what you exactly mean and what you're trying to achieve.
Is there any test/demo-code you can provide? Remember: the more ...
by bembulak
Mon Dec 29, 2025 8:09 am
Forum: Coding Questions
Topic: Visual Form Designer
Replies: 2
Views: 672

Re: Visual Form Designer


PureVision Form Designer

Also, there's IceGUIDesign. It's intended for PureBasic, but I've also used it for SpiderBasic. https://github.com/ChrisRfr/IceDesign

You could also try/use HeX0r's Dialog Designer => https://hex0rs.coderbu.de/sdm_downloads/dialogdesign0r-de/

Rumor's have it, that ...
by bembulak
Wed Dec 17, 2025 7:55 pm
Forum: Coding Questions
Topic: Toolbarmobile() and Listmobile() issue
Replies: 8
Views: 964

Re: Toolbarmobile() and Listmobile() issue

I've installed 3.10 now, just to make sure we're on the same version.
I don't know the internals of OnsenUI (which SB uses for MobileUI to my knowledge), but it does not seem to me, that it's able to display what your example above shows out of the box.
Does not mean, it's impossible at all though ...
by bembulak
Wed Dec 17, 2025 4:44 pm
Forum: Bugs Reports
Topic: [Done] SB 3.20 beta 2 (W11)
Replies: 2
Views: 1247

[Done] SB 3.20 beta 2 (W11)

Hello,

based on that thread (https://forums.spiderbasic.com/viewtopic.php?p=11441#p11441), I've been testing some mobileUI stuff and have some strange behaviour:

MobileUI.sb Example (from examples folder):

Compiles, but shows no output / UI or Error in SB-Debugger (not in the IDE, nor in the ...
by bembulak
Wed Dec 17, 2025 4:33 pm
Forum: Coding Questions
Topic: Toolbarmobile() and Listmobile() issue
Replies: 8
Views: 964

Re: Toolbarmobile() and Listmobile() issue

Thank you for the clarification.

I'm currently working with SB 3.20 beta 2 and this seems to have some issues.
The 'mobileUI.sb' example isn't even loading; when tinkering around to resemble your idea (3 lists next to each other), I have strange behaviour. Would be good if anyone else could test ...
by bembulak
Wed Dec 17, 2025 12:46 pm
Forum: Coding Questions
Topic: Toolbarmobile() and Listmobile() issue
Replies: 8
Views: 964

Re: Toolbarmobile() and Listmobile() issue

I'm not entirely sure, what you want to achieve.
To me: your code basically looks okay. I just don't think, that a Mobile_List() is supposed to be in a ToolBarMobile().

Or more detailed:
I've done some tests and for me, it's NOT possible to create a ContainerMobile() and successfully put it into a ...