All public logs
Jump to navigation
Jump to search
Combined display of all available logs of NSB App Studio. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 17:51, 30 October 2024 Ghenne talk contribs created page File:Spinner.png
- 17:51, 30 October 2024 Ghenne talk contribs uploaded File:Spinner.png
- 17:50, 30 October 2024 Ghenne talk contribs created page Spinner (Bootstrap) (Created page with "file:Bsalert.png == Description == Provide contextual feedback messages for typical user actions with the handful of available and flexible alert messages. By setting the appearance, alerts can have different colors. Turning dismissable on will add an x to the control. Clicking on it will cause the alert to be hidden, and your app will reformat to use the space which has been freed up. == Properties and Methods == Standard properties a...")
- 14:25, 29 October 2024 Ghenne talk contribs created page BuildCounter (Created page with "BuildCounter == Description == BuildCounter returns a string with the current version of NSB/AppStudio that is running. This global property can be read, but not set. It is only used for native apps created using VoltBuilder. The number is incremented on each build. == Example == <pre> Rem BuildCounter Example Print "The current BuildCounter is " & BuildCounter </pre> == Output == <pre> The current BuildCounter is 42 </pre> Category:Language Reference")
- 14:23, 29 October 2024 Ghenne talk contribs created page AppVersion (Created page with "AppVersion == Description == AppVersion returns a string with the current version of of your app. It is set in Project Properties. This global property can be read, but not set at runtime. == Example == <pre> Rem AppVersion Example Print "The current version of this app is " & AppVersion </pre> == Output == <pre> The current version of this app is 3.0.0 </pre> Category:Language Reference")
- 20:25, 16 September 2024 Ghenne talk contribs created page File:Screenshot 2024-09-16 at 4.24.39 PM.png
- 20:25, 16 September 2024 Ghenne talk contribs uploaded File:Screenshot 2024-09-16 at 4.24.39 PM.png
- 18:07, 16 September 2024 Ghenne talk contribs created page Add AI to your app using ChatGPT (Created page with "You can add AI capabilities to any AppStudio app. This can be in the form of a question box, or based on information that your app has collected about the user's needs. Almost any valid query will work, whether generated by the user or constructed by your app. The method described here is based on ChatGPT, currently the most widely used AI assistant. Other AI assistants can be used. While their implementation details may differ, the general method will be similar. The...")
- 14:47, 26 August 2024 Ghenne talk contribs created page File:Screenshot 2024-08-26 at 10.47.06 AM.png
- 14:47, 26 August 2024 Ghenne talk contribs uploaded File:Screenshot 2024-08-26 at 10.47.06 AM.png
- 12:27, 9 August 2024 Ghenne talk contribs moved page Using SQLite with Chrome 119 to Support for SQLite
- 14:51, 18 June 2024 Ghenne talk contribs created page File:Range.png
- 14:51, 18 June 2024 Ghenne talk contribs uploaded File:Range.png
- 14:47, 18 June 2024 Ghenne talk contribs created page Range (Bootstrap) (Created page with "file:SliderBS1.png file:SliderBS2.png == Description == The Range control allows the input of a range of values between min and max. The result is returned as a string in ''value''. To add a control to your app, choose the control’s icon in the Toolbar, then position it on the Design Screen. Use the Property Editor to set the properties you need, then add functions to your code to respond to the events that come from the control. <tabber> JavaScript= <synt...")
- 11:47, 3 June 2024 Ghenne talk contribs created page SQLDump (Created page with "SQLDump(''DB'', [''tablename'']) == Description == SQLDump() outputs the content of an SQLite database table to the console. It works both in the local console and when connected the remote console of an Android or iOS device. It replaces a similar functionality which existed with WebSQL, as a tab in the Chrome Console. ''DB'' is the reference to the database, returned by SqlOpenDatabase. It's helpful to declare this as a global variable. ''tablename'' is the nam...")
- 11:47, 3 June 2024 Ghenne talk contribs created page File:Screenshot 2024-06-03 at 7.44.40 AM.png
- 11:47, 3 June 2024 Ghenne talk contribs uploaded File:Screenshot 2024-06-03 at 7.44.40 AM.png
- 13:28, 22 May 2024 Ghenne talk contribs created page File:Screenshot 2024-05-22 at 9.25.55 AM.png
- 13:28, 22 May 2024 Ghenne talk contribs uploaded File:Screenshot 2024-05-22 at 9.25.55 AM.png
- 12:28, 12 April 2024 Ghenne talk contribs created page Carousel (Bootstrap) (Created page with "File:Carousel.png == Description == https://getbootstrap.com/docs/5.3/components/carousel/ A slideshow component for cycling through elements—images or slides of text—like a carousel. '''How it works''' The carousel is a slideshow for cycling through a series of content. It works with a series of images, text, or custom markup. It also includes support for previous/next controls and indicators. Nested carousels are not supported. You should also be aware t...")
- 11:32, 12 April 2024 Ghenne talk contribs created page File:Carousel.png
- 11:32, 12 April 2024 Ghenne talk contribs uploaded File:Carousel.png
- 17:27, 9 February 2024 Ghenne talk contribs moved page Snackbar (Bootstrap 4) to Snackbar (Bootstrap 4, 5)
- 12:45, 18 January 2024 Ghenne talk contribs uploaded a new version of File:Toolbox2.png
- 19:45, 15 December 2023 Ghenne talk contribs uploaded a new version of File:Eslint.png
- 19:45, 15 December 2023 Ghenne talk contribs uploaded a new version of File:Chatgpt.png
- 19:33, 15 December 2023 Ghenne talk contribs created page File:Chatgpt.png
- 19:33, 15 December 2023 Ghenne talk contribs uploaded File:Chatgpt.png
- 19:33, 15 December 2023 Ghenne talk contribs created page File:Eslint.png
- 19:33, 15 December 2023 Ghenne talk contribs uploaded File:Eslint.png
- 19:32, 15 December 2023 Ghenne talk contribs uploaded a new version of File:Codewindow.png
- 20:36, 14 December 2023 Ghenne talk contribs created page AI Coding Assistant (Created page with "AppStudio's AI Coding Assistant allows you to using ChatGPT as part of your development process. ChatGPT can be a valuable tool for programmers in various ways. Here are a few examples: # Code Assistance: You can use ChatGPT to get code suggestions, find syntax errors, or brainstorm solutions to coding problems. Simply explain the issue or describe the desired functionality, and ChatGPT can provide insights and suggestions. # Learning JavaScript Concepts: If you are n...")
- 20:16, 14 December 2023 Ghenne talk contribs created page File:Screenshot 2023-12-14 at 3.13.53 PM.png
- 20:16, 14 December 2023 Ghenne talk contribs uploaded File:Screenshot 2023-12-14 at 3.13.53 PM.png
- 15:15, 6 December 2023 Ghenne talk contribs created page File:Libraries-SQLite WASM.png
- 15:15, 6 December 2023 Ghenne talk contribs uploaded File:Libraries-SQLite WASM.png
- 18:18, 2 November 2023 Ghenne talk contribs created page Using SQLite with Chrome 119 (Created page with "Starting with Chrome 119, Google has deprecated SQlite. They have been warning of this for a while. (If you're interested in why they are doing this, check out this post). There are a couple of workarounds. In the short run, you can register your site for an Origin Trial, which res...")
- 18:16, 2 November 2023 Ghenne talk contribs created page File:WebSQL Registration.png
- 18:16, 2 November 2023 Ghenne talk contribs uploaded File:WebSQL Registration.png
- 17:25, 29 May 2023 Ghenne talk contribs moved page Bootstrap 4 vs Bootstrap 5 to Bootstrap 5
- 19:13, 25 May 2023 Ghenne talk contribs created page Version 9 (Created page with "== Major New Features == # PhoneGap: Auto Generate images, streamlined operation # Electron: Streamlined operation - much easier to use! # Hot Reload: Restarting in browser doesn't create new tab # Python 3: AppStudio used to be in Python 2. Now we're up to date. # wxPython 4: The UI AppStudio uses is now also up to to date. # Windows 64 is now required. (MacOS already required 64 bit) == Upgrading == If you have AppStudio 7 or older and don't have a subscription, you...")
- 21:11, 31 October 2022 Ghenne talk contribs created page File:Bsoffcanvas1.png
- 21:11, 31 October 2022 Ghenne talk contribs uploaded File:Bsoffcanvas1.png
- 18:33, 31 October 2022 Ghenne talk contribs created page OffCanvas (Bootstrap 5) (Created page with "placeholder")
- 13:14, 30 October 2022 Ghenne talk contribs created page Input-item (Bootstrap 5) (Created page with "This control adds content to an Input control. It is available only if you are using Bootstrap 5. For more information, see the Input (Bootstrap 5) control.")
- 19:37, 29 October 2022 Ghenne talk contribs created page Bootstrap 4 vs Bootstrap 5 (Created page with "Support for Bootstrap 4 was added in AppStudio 7. Since then, Bootstrap 5 has been released. There are many changes in Bootstrap 5: more than we could build a migration for. Bootstrap 5 a separate framework. We will continue to support Bootstrap 3 and 4 for existing projects, but recommend using Bootstrap 5 for new projects. We were able to make most of the changes in our code, so most of the controls work pretty much the same way. The code emitted by AppStudio is quit...")
- 18:02, 28 October 2022 Ghenne talk contribs created page Input (Bootstrap 5) (Created page with "frameless|Input (BS5) File:Bsdatalist.png == Description == The Input control allows a single line of input text. It has optional headers, footers and other features. Note that Input (Bootstrap) does not have .text property. Use .value to get the value of the control. To disable an Input at runtime, do the following: <pre> Input1_contents.disabled = true </pre> To highlight an Input control with an error (and return it to normal): <pre>...")
- 18:01, 28 October 2022 Ghenne talk contribs created page File:Bs5input.png
- 18:01, 28 October 2022 Ghenne talk contribs uploaded File:Bs5input.png
- 22:33, 12 November 2020 Ghenne talk contribs uploaded a new version of File:3.2.png