Search found 189 matches

by the.weavster
Thu Sep 05, 2024 12:43 pm
Forum: General Discussion
Topic: How to enable the right-click context menu?
Replies: 1
Views: 10261

Re: How to enable the right-click context menu?

I found the answer from RSBasic:

Code: Select all

Procedure DisableSiteContextMenu(state)
  If state
    ! $('body').attr("oncontextmenu", "return false;");
  Else
    ! $('body').attr("oncontextmenu", "");
  EndIf
EndProcedure
by the.weavster
Thu Sep 05, 2024 12:17 pm
Forum: General Discussion
Topic: How to enable the right-click context menu?
Replies: 1
Views: 10261

How to enable the right-click context menu?

Getting a context-menu by right-clicking seems to be disabled in SB, how do I enable it?
by the.weavster
Thu Sep 05, 2024 12:15 pm
Forum: Coding Questions
Topic: async await ( preferably without callbacks )
Replies: 2
Views: 3269

Re: async await ( preferably without callbacks )

Let's say I want to run a SB app in a PB WebViewGadget that exposes custom PB functions, those would return a promise.
by the.weavster
Wed Sep 04, 2024 8:02 pm
Forum: Coding Questions
Topic: async await ( preferably without callbacks )
Replies: 2
Views: 3269

async await ( preferably without callbacks )

Is there a way of doing async await in SB?
by the.weavster
Wed Jun 05, 2024 8:55 am
Forum: Coding Questions
Topic: Option to constrain the size of a MobileContainer
Replies: 1
Views: 7370

Option to constrain the size of a MobileContainer

Let's say I've developed a web app that's primarily aimed at usage with a smartphone but I'd still like to be able to use it from desktop, I think it would be good if I could state if the screen dimensions > x, y put the MobileContainer in a sized, floating window ( so it's like I'm looking at a ...
by the.weavster
Wed May 15, 2024 12:10 pm
Forum: General Discussion
Topic: SpiderBasic 3.00 is out !
Replies: 56
Views: 193028

Re: SpiderBasic 2.60 beta 1 is ready to test !

It's working for me.

MX Linux X86_64
by the.weavster
Thu May 02, 2024 2:44 pm
Forum: Coding Questions
Topic: Client server models
Replies: 2
Views: 4091

Re: Client server models


But are there other "cleaner" ways than using CGI? Are there examples? Or recommendation?

CGI is the most simple.


Is it possible to use a database other than sqlite? As that would sure make client/server data exchange much simpler

Not really, you can't access the db server directly from the ...
by the.weavster
Thu Apr 11, 2024 11:20 am
Forum: Tricks 'n' Tips
Topic: Shoelace: A forward-thinking library of web components
Replies: 2
Views: 17809

Re: Shoelace: A forward-thinking library of web components

The developer of Shoelace has now joined the Font Awesome team and the next generation will be known as Web Awesome.
by the.weavster
Thu Apr 11, 2024 11:16 am
Forum: Javascript
Topic: Announcement: VanillaJS - The new era of JavaScript libraries
Replies: 11
Views: 54622

Re: Announcement: VanillaJS - The new era of JavaScript libraries

The examples seem a little out of date though as VanillaJS now has a fetch API and a document.querySelector() command ;)
by the.weavster
Thu Mar 07, 2024 3:01 pm
Forum: Coding Questions
Topic: Resize event in container gadgets
Replies: 4
Views: 5000

Re: Resize event in container gadgets

@Webarion
You need to post a bug report ;)