Search found 23 matches

by _Marc_
Wed Sep 07, 2022 12:58 pm
Forum: Coding Questions
Topic: Change theme of app (CSS style)
Replies: 3
Views: 823

Re: Change theme of app (CSS style)

I haven't dealt with iOS or Android themes yet, but there seems to be something like that here: https://dojotoolkit.org/documentation/tutorials/1.6/mobile/tweetview/getting_started/ Ah, didn't look there. Thank you! For the themes, it doesn't have to be iOS/Android themes. Just other themes in gene...
by _Marc_
Wed Sep 07, 2022 12:44 pm
Forum: General Discussion
Topic: App doesn't test run on iOS device
Replies: 2
Views: 3729

App doesn't test run on iOS device

Hi, I'm trying to get my first test app to run on my iPhone. The procedure stops at 70%. No clue what could be wrong. I followed the instructions in the documentation. NodeJS is installed. The device is registered in Xcode. A Swift test project, using Xcode, does run on my device without no problem....
by _Marc_
Wed Sep 07, 2022 11:53 am
Forum: Coding Questions
Topic: Change theme of app (CSS style)
Replies: 3
Views: 823

Change theme of app (CSS style)

Hi, Afaik SpiderBasic uses one fixed CSS theme. Is there a way to change this? What I'm looking for is a theme that looks like a standard iOS or Android app theme style. I prefer not to change the CSS myself. Preferably I want to download the CSS files from somewhere. Is this possible? And if yes: h...
by _Marc_
Mon Sep 05, 2022 11:41 am
Forum: Coding Questions
Topic: Example responsive hosted app
Replies: 3
Views: 834

Example responsive hosted app

Hi, I'm new to SpiderBasic. I want to create a list-detail app (eg. a notes app with list and click to open details form) that can be used on iOS and Android, but don't want to distribute it via an App Store. Instead, I want to host it on a web server. In this scenario it has to be responsive (adjus...
by _Marc_
Thu May 14, 2020 11:04 am
Forum: Feature Requests and Wishlists
Topic: Feature request: Creating a REST web service
Replies: 2
Views: 2600

Feature request: Creating a REST web service

Hi,

I can create great client side web applications with SB.

Most of the time, those need an API to talk with.

Wouldn't it be great if I don't have to do this with ASP.NET but instead that I can also do this with SB? For this SB could, for example, generate PHP code?
by _Marc_
Tue Jul 19, 2016 8:53 pm
Forum: General Discussion
Topic: Newbie Questions
Replies: 10
Views: 6576

Re: Newbie Questions

Fred wrote:Yes, it's the plan.
Really, really, really fantastic news!

Can't wait for the first Beta release. I guess that you cannot say anything about an ETA (maybe wise to don't do that) ... ;)
by _Marc_
Sun Apr 03, 2016 9:51 am
Forum: Coding Questions
Topic: HttpRequest, accessing third party web service
Replies: 8
Views: 3828

Re: HttpRequest, accessing third party web service

The cons are reduced security, so you may want to specify specific calling domains if possible, rather than allowing from all. Of course this may not b possible. Good article here: https://developer.mozilla.org/en-US/docs/Web/HTTP/Access_control_CORS The final/live SB project will be hosted on the ...
by _Marc_
Sat Apr 02, 2016 12:33 pm
Forum: Coding Questions
Topic: HttpRequest, accessing third party web service
Replies: 8
Views: 3828

Re: HttpRequest, accessing web service

This is a security feature baked into web protocols I believe. You need the remote page or API to allow access from your own domain. Or all domains using an asterisk as a wild card: Access-Control-Allow-Origin: * Search the forums for this, there are several threads about it. Which go into detail. ...
by _Marc_
Sat Apr 02, 2016 12:10 pm
Forum: Coding Questions
Topic: HttpRequest, accessing third party web service
Replies: 8
Views: 3828

Re: HttpRequest, accessing web service

If you say it can work then it would be great if you could provide me with a working example accessing a third party REST service (not on the same domain or local). I am really far from expert in this, so kindly take my writing with a grain of salt. As far as I have understood, your logic is faulty...
by _Marc_
Sat Apr 02, 2016 11:12 am
Forum: Coding Questions
Topic: HttpRequest, accessing third party web service
Replies: 8
Views: 3828

Re: HttpRequest, accessing web service

This is a security feature baked into web protocols I believe. You need the remote page or API to allow access from your own domain. Or all domains using an asterisk as a wild card: Access-Control-Allow-Origin: * Search the forums for this, there are several threads about it. Which go into detail. ...