banano

  1. Mashiane

    Share My Creation [BANanoVMDesign] Drag n Drop WYSIWYG Web Form Designer

    Ola 2020-03-19 : This is now part of the BANanoVueMaterial open source library. This project is based on a functional BANanoVueMaterial library I am working on. An extension of the BANanoVue project I explored here. Ever since I started working on the PDFDesign project for generating PDF...
  2. Mashiane

    B4J Tutorial [BANano] MD5 Encryption - Getting the Md5 Hash of a string

    Ola Was recently requested to look at this by a friend, for encryption 1. Download this repo here to get the md5 javascript resource https://github.com/blueimp/JavaScript-MD5 2. In your BANano project, add the javascript file BANano.Header.AddJavascriptFile("md5.min.js") 3. Add this...
  3. Mashiane

    Games [BANanoPhaser 0.2+] Exploring tweening with a coin catcher

    Ola Download Welcome to game 4. The purpose of this game is to explore more game tricks. For example. 1. Instead of adding a collision detector, we return the result of physics.overlap, a boolean. 2. We have removed gravity on the game configuration. This enables us to have the elements...
  4. LWGShane

    Bug? [BANano 4.07] \B4J\manifest.txt not found

    @alwaysbusy I'm getting the following error with my project, which is uploaded for reference: It seems that either BANano or the IDE thinks there should be a "B4J" folder that contains the manifest file.
  5. Mashiane

    B4J Library [BANanoPDFMake] Client Side PDF Document Generation

    Ola Download Phew. A dream come through. Very excited right now... BANanoPDFMake is a wrap of the wonderful and amazing javascript library PDFMake What I have tried to do here is to simplify this as much as possible. This means one can create a PDF document as simply as.. Sub basic...
  6. Mashiane

    Games [BANanoPhaser 0.2] Dino Dash

    Ola Download This is our 3rd game with BANanoPhaser and thus more developments and enhancements on the library especially with separation of concerns. Let me explain. The phaser code javascript code is like this.. this.load.image('play', 'assets/image1.png') With version 0.1 of...
  7. Mashiane

    Games [BANanoPhaser] Basic Phaser Games Development with BANano

    Ola Download BANanoPhaser Phaser is a popular game framework that enables one to quickly build games for the web. To do this we will make some assumptions 1. You are comfortable with JavaScript 2. You are comfortable with BANano esp BANanoObject class. Related Threads Star Catcher - game...
  8. Mashiane

    Games Star Catcher - Collect stars and dodge some bombs! 180 lines of code

    Ola This was an experiment when I was taking a break from other things.. How the game works. 1. You are the alien and you collect the stars. Once finished you get to the next level - hypothetically. 2. In the next level 2 things happen, your lives are increased... wait for it.. Until, you...
  9. Mashiane

    Spanish [BANano]: Explorando HTML Imprimiendo JavaScript

    Hola Estoy ocupado explorando cómo puedo imprimir elementos html con BANano para una aplicación en español que estoy creando. Aquí están los resultados hasta ahora en caso de que necesite algo de esta naturaleza. 1. PrintJS Con esto, puede cargar los archivos de estilo CSS que necesita usar...
  10. Mashiane

    B4J Library [BANanoOXML] Client Side Excel Report Generation

    Yippie!! In case you need something like this one day, so here is my BANano implementation of it for y'all. With this one is able to CREATE Excel workbooks with multiple sheets. One is able to also set styles e.g. bold, italic, forecolor, add borders. Once generated, the workbook is...
  11. Mashiane

    B4J Library [BANAnoWired] 15 Mockup Elements for your Prototypes

    Ola When I started working with the Mermaid library I also discovered this nice mockup js library called wired. This lib is just for generating mockups/wireframes for anyone playful. We have 15 elements currently in the library. These are 1. Input 2. Toggle 3. TextArea 4. Radio / RadioGroup...
  12. Mashiane

    B4J Library [BANanoMSSQL] PDO CRUD Class for MSSQL

    Ola UPDATE 2020-05-23: Please use this library instead This class is for CRUD functionality via a BANano and SQL Server BackEnd. Usage. 1. Update the connection settings in msconnect.php to your database. Add this to the Files tab of your BANano project. 2. Include the attached class to your...
  13. Mashiane

    Share My Creation Spiritual Gift Discovery Guide WebApp

    Good day everyone. It is with pleasure to annouce that 'The Spiritual Gift Discovery Guide WebApp' is ready for you to help you understand your spiritual gift. This WebApp has been inspired by Wagners Modified Houts Questionaire. You go through answering 125 questions and depending on how these...
  14. Mashiane

    B4J Tutorial BANanoJSONQuery to the rescue: The case of the survey app.

    Ola I have about 125 questions and each question has 1 possible answer from 4 responses. Let me depict everything like this... 1. Responses ( a user should only select one using a radio box) function getResponses(){ let responses = [{"id":"0", "value":"Not at All"}, {"id":"1"...
  15. Mashiane

    B4J Question [BANanoJSONJQuery] How To Sort Key Value Pairs By Value?

    Ola I'm writing a problem solving app and need to sort a list of key value pairs in descending order, for example, this is a result of my coding.. Dim boQuery As BANanoJSONQuery boQuery.Initialize(boQueryList) 'sort by value desc Dim boQSortDesc As BANanoJSONQuery =...
  16. Mashiane

    B4J Tutorial [BANanoVue] - Building WebApps/Websites with VueJS

    Ola The world has changing at a very lightning-fast speed. Gone are the days when websites were static. Ajax came for dynamic websites and soon React, Angular, Vue, the list is long. A couple of months ago I went for an interview. Do you React? Do you Angular? Do you Vue? Sadly I never got the...
  17. Mashiane

    B4J Question [BANano] [SOLVED] How to preload & defer js and css files?

    Hi there With possibilities to preload css and js files and also defer them, how can one activate such features when adding the resources to the header? Thanks
  18. M

    B4J Question [BANano] How to clear a timeout?

    Hello, I have started today a small project using BANano and I came to a stop. How can I clear a timeout because I can't pass any param to BANanoWindow.ClearTimeout method. As I can see in the javascript api: The clearTimeout() method clears a timer set with the setTimeout() method. The ID...
  19. Mashiane

    B4J Library [BANanoReactMDL] A Material Design Lite framework for Website / WebApp Creation

    Ola DEPRECATED: THIS WAS JUST A PROOF OF CONCEPT (now overtaken by BANanoWebix & BANanoVueMaterial) What is this? It is BANanoReact (BANano + ReactJS) + MDL = BANanoReactMDL. To simply it, let's see this. BANanoReact is just a UX library that helps with rendering UX using Facebook's...
  20. Mashiane

    B4J Question [BANano] [SOLVED] Compiling DateUtils Help

    Hi there I found the source code of DateUtils here in the forum and been trying to compile it to make it work with BANano so that I can use the functions here. This is the B4J sub.. Thanks!
Top