Search found 23 matches
- Wed Sep 07, 2022 12:58 pm
- Forum: Coding Questions
- Topic: Change theme of app (CSS style)
- Replies: 3
- Views: 2431
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 ...
- Wed Sep 07, 2022 12:44 pm
- Forum: General Discussion
- Topic: App doesn't test run on iOS device
- Replies: 2
- Views: 5767
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 ...
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 ...
- Wed Sep 07, 2022 11:53 am
- Forum: Coding Questions
- Topic: Change theme of app (CSS style)
- Replies: 3
- Views: 2431
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 ...
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 ...
- Mon Sep 05, 2022 11:41 am
- Forum: Coding Questions
- Topic: Example responsive hosted app
- Replies: 3
- Views: 2431
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 ...
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 ...
- Thu May 14, 2020 11:04 am
- Forum: Feature Requests and Wishlists
- Topic: Feature request: Creating a REST web service
- Replies: 2
- Views: 4651
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?
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?
- Tue Jul 19, 2016 8:53 pm
- Forum: General Discussion
- Topic: Newbie Questions
- Replies: 10
- Views: 11787
Re: Newbie Questions
Really, really, really fantastic news!Fred wrote:Yes, it's the plan.
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) ...

- Sun Apr 03, 2016 9:51 am
- Forum: Coding Questions
- Topic: HttpRequest, accessing third party web service
- Replies: 8
- Views: 6739
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 ...
Good article here: https://developer.mozilla.org/en-US/docs/Web/HTTP/Access_control_CORS
The final/live SB project will be hosted on ...
- Sat Apr 02, 2016 12:33 pm
- Forum: Coding Questions
- Topic: HttpRequest, accessing third party web service
- Replies: 8
- Views: 6739
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 ...
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 ...
- Sat Apr 02, 2016 12:10 pm
- Forum: Coding Questions
- Topic: HttpRequest, accessing third party web service
- Replies: 8
- Views: 6739
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 ...
As far as I have understood, your logic is ...
- Sat Apr 02, 2016 11:12 am
- Forum: Coding Questions
- Topic: HttpRequest, accessing third party web service
- Replies: 8
- Views: 6739
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 ...
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 ...