banano

  1. Mashiane

    B4J Tutorial [BANano] Creating Master Details Grid with UOEGridTable

    Ola This tutorial is based on this BANano based lib, https://www.b4x.com/android/forum/threads/banano-uoegridtable-an-interesting-grid-that-you-might-like.105225/ The purpose here is when one needs to show Master Detail relationship between two or more related data sets. Above we have...
  2. Mashiane

    B4J Library [BANano] UOEGridTable: An interesting grid that you might like

    Ola Seemingly I'm getting closer to my app goal for my next project, so here is something for the community again. A grid and there some very few things I like about it too. This is a wrap for this project here. Quick Reference Font Awesome fonts applicable Hiding the Pager Updating the grid...
  3. Mashiane

    B4J Question [BANano] How to get all events linked to an element?

    Ola I'm trying to debug my app as its not firing any of the assigned events. How can I get a listing of all events linked to an element using BANano? I have found this on stack-overflow.. function getEvents(element) { var elemEvents = $._data(element, "events"); var allDocEvnts =...
  4. Mashiane

    B4J Question [BANano] [SOLVED] How to define events for custom component?

    Ola I kindly request some help defining an event listener for this type of function.. tree.on('collapse', function (e, node, id) { alert('collapse is fired.'); }); My tree is currently a BANanoObject, which is fine, just need to figure out the next part of the equation...
  5. Mashiane

    B4J Library [BANano] UOETreeView: A designer treeview you might use

    Ola I was kind of excited when I found this today. It justs meets most of the requirements that I need from a treeview. To mention a few, one can 1. Check, CheckAll, UnCheck, UnCheckAll 2. Select, SelectAll, UnSelect, UnSelectAll, 3. Specify an id, text for a node 4. Search a node by id 5...
  6. Mashiane

    B4J Library [BANano] ChartJS charts with 1 line of code using UOECharts

    Ola This lib is a wrap of this github The chart framework that has been adopted has been Chart.JS and one can easily create a chart with 1 line of code, as simple as.. 'load the layout to the page BANano.LoadLayout("#body","vCharts") 'line chart UOEChart1.AddXYMap(CreateMap("2017-01-01"...
  7. Mashiane

    B4J Tutorial [BANano] MySQL CRUD with PHP - Part 2

    Ola Kinda excited that this is starting to form a shape. This second part of the tutorial deals with reading the users from the MySQL users table and then displaying them in a table. The first part we just did an intro into what we intend doing and showed how to 1. CREATE a user 2. READ a...
  8. Mashiane

    B4J Tutorial [BANano] MySQL CRUD with PHP - Part 1

    Ola UPDATE 2020-05-19: Please use this library instead [BANAno] MySQL CRUD with PHP - Part 2 Well, the Business College website I'm creating has a portion of where the potential students need to register online. The data needs to be stored in a MySQL database. I intend to use various php...
  9. Mashiane

    B4J Question [BANAno] [SOLVED] CallAjaxWait for dummies...

    Hi there I kindly need some help. I have written a sub that's supposed to return the string value from CallAjaxWait as depicted below. I am calling an server php file. Sub ExecutePHPWait(pQuery As Map, phpFile As String, phpTag As String) As String Dim json As String Dim sCommand As...
  10. Mashiane

    B4J Question [BANano]: [SOLVED] How to UTF8 encode strings for URL querystrings?

    Hi there In my b4a I use this sub to convert a map to a querystring that I eventually pass to HTTP to execute a PHP request from my MySQL db. Is there a method to encode strings in banano, for example, Im using stringutils for this.. 'convert a map to a querystring Sub Map2QueryString(sm As...
  11. I

    Wish [BANano] Any charts lib?

    Does BANano has any charts library?
  12. Mashiane

    Share My Creation [Websites] Developing my BANano based website with free hosting

    Ola This website is being created with UOENow, a Bootstrap 4 based theme from Creative Tim. So I found this 18M+ users free hosting site and thought through my development process I can just test it so long, www.000webhost.com. I must say I liked their file manager a lot, easy to use and...
  13. Mashiane

    B4J Question [BANano] [SOLVED] How to BANano your way around inline-sub Javascript?

    Hi there I'm learning more about the BANano object and its usage. I read somewhere that executing Eval is kinda slow but then again, I haven't had any thing to take home about on it. it just seems to be more easier to write.. BANano.Eval("Chartkick.CustomChart = function (element, dataSource...
  14. Mashiane

    B4J Tutorial [Websites] Create a Login page with UOENow+BANano

    Hi The Creative Tim Now UI Kit comes with 3 example pages. By using the UOENow library we have tried to replicate the features to come as close to the provided examples as much as possible. Download UOENow A Profile Page was created A Landing Page was also created Now we look at the login...
  15. Mashiane

    B4J Tutorial [BANano] Create a Landing Page for your website using UOENow+BANano

    Hi there.. UOENow, introduced us in terms of the various components of the Now UI Kit from Creative Tim that we can use to develop our websites. What we will do today is to extend on that and create a landing page based on the components. We follow the same routine we did before to create the...
  16. Mashiane

    Share My Creation [UOENow] Create beautiful Bootstrap 4 Websites with Now UI Kit+BANano

    Download Hi there UOENow is a wrap of the beautiful theme from Creative Tim to create Bootstrap 4 websites. UONow wraps the Now UI kit around BANano for one to create beautiful things with this theme. The attached video is the generation of the theme directly from Creative Tim, done to ensure...
  17. Mashiane

    B4J Tutorial [BANano] Exploring Using PHP & SQLite for your WebApp

    Ola UPDATE: BANanoSQLite now available for actual sqlite db file CRUD functionality. This is part 1 of a series of my explorations using SQLite as a backend to a BANano app. I need a way to persist the data to a database, but thought of a serverless database for now. Series 1. Create the...
  18. Mashiane

    B4J Question [BANano] [SOLVED] ExecuteCallBack for PHP & AJAX

    Hi there I've just become comfortable using the ExecuteCallBack method for BANanoSQL and thanks for this feature. I had earlier asked about using Php & MySQL and was pointed to Ajax and an example also provided. Thanks. I'm just about to explore these now fully as I need to persist data...
  19. Mashiane

    B4J Question [BANano] [SOLVED] For Each Loop Data Type

    Hi there Please see line 149: It seems if you don't specify a data type for the loop item, it does not transpile. Having strfield As String however works perfectly. // [146] Sub DropColumns(tblName As String, fields As List) As List this.dropcolumns= function(_tblname,_fields) { if...
  20. Mashiane

    Share My Creation [WebApp] Create FlowCharts easily using UOEProcess.Show

    Ola Download UOEProcess.Show is a BANano based webapp that enabled anyone to create mermaid based flowcharts easily and also enable these to be exported to a PNG. Take the tour to get your hands into the groove and test-drive the app to create your first flowchart. I'm sure you will enjoy...
Top