SithasoDaisy: Mashy Teaches TailwindCSS using b4x (with eBook)

Mashiane

Expert
Licensed User
Longtime User
How to set a row column background color?

tablecol.jpg


B4X:
tb2.SetRowColumnBackgroundColor("color", 1, "red")
 
Get SithasoDaisy for $15 here.

Welcome to the SithasoDaisy world.



Get the eBook
See it in action on Netlify or
See it from a FlipBook

SithasoDaisy is a library of components built on top of TailwindCSS and the DaisyUI frameworks to help you create WebApps, WebSites, Single Page Application (SPA) and Progressive Web Apps (PWA) with the power of the b4x programming language.

When it comes to developing anything that works on the internet browser, whether it is a WebApp or a WebSite, one has to use HTML (Hyper Text Markup Language), CSS (Cascading Style Sheet) and JavaScript (a dynamic programming language used for web development).


SithasoDaisy works on top of a programming language called b4x. It is not JavaScript, and for SithasoDaisy to produce web applications, a code transpiler is used. A transpiler converts source code from one programming language to another. For example, when one uses Flutter for web, they use a programming language called Dart. When they build their application, their source code is transpiled / converted to JavaScript for it to work on the interweb. There are many other programming languages that target JavaScript, the Top 10, being:

1. Scala.js
2. Haxe
3. Dart
4. Elm
5. Imba
6. Nim
7. ClojureScript
8. ReasonML
9. Kotlin
10. TypeScript

B4X es un conjunto de herramientas de programación desarrollado por Anywhere Software que utiliza la sintaxis similar a Visual Basic para que cualquier persona que lo desee pueda crear aplicaciones. Las aplicaciones desarrolladas pueden ejecutarse en Windows, Linux, Mac, teléfonos Apple, teléfonos Android y dispositivos Arduino IoT, en su mayoría desde la misma base de código. El producto familiar que usaremos aquí se llama b4j, es decir, Basic4Java. También hay b4a (basic4android), b4i (basic4ios), b4r (basic4arduino).

Nuestro transpilador de b4x a JavaScript se llama BANano. Está escrito por Alain Bailleul, que es el BA en BANano, mientras que Nano, acertaste, nanotecnología. Al crear sus proyectos web con SithasoDaisy, uno puede usar el Diseñador abstracto o escribir código b4x. Le mostraremos cómo. Para mostrarle una idea de lo que construiremos, echemos un vistazo a esta imagen, directamente desde el sitio web de DaisyUI.

.....

Este es un extracto del eBook.

Codificación feliz

Enlace Github: https://github.com/Mashiane/SithasoDaisyUI

SithasoDaisy TailwindCSS WebApps​


Suscríbase a SithasoDaisy TailwindCSS WebApps y obtenga una WebApp cada mes del año.

Visite https://sithasoholdings.gumroad.com/l/vwaqj para activar su suscripción.

Muchas gracias.
pago realizado
ID Transacción: 3VH54719VJ8856938

Ha enviado $15,00 USD a SITHASO HOLDINGS (PTY) LTD
Le avisaremos a SITHASO HOLDINGS (PTY) LTD que usted los ha enviado.
 

sdleidel

Active Member
Licensed User
Longtime User
Another Question, i have a Textbox in the column, how i can change the textcolor ?

And is this a BUG ?
only the second row is in red....

Sample:


123:
For u=1 To Lager_Produkte_Items.Size-1 Step 1
   
            mdlSDUITableLagerbestand.SetRowBackgroundColor( u, "red")
Next
 
Last edited:

Mashiane

Expert
Licensed User
Longtime User
If you need to ask questions about SithasoDaisy, please use the thread below and not this thread. Please.

 

Mashiane

Expert
Licensed User
Longtime User
Localizing Table Title Names & Search

The code below changes the placeholder text for search and also change the titles of the Edit, Delete, Clone, Menu buttonss.


B4X:
SDUITable1.SetSearchPlaceholder("Buscar")
    SDUITable1.SetColumnEditTitle("Editar")
    SDUITable1.SetColumnDeleteTitle("Borrar")
    SDUITable1.SetColumnCloneTitle("Clon")
    SDUITable1.SetColumnMenuTitle("Menú")
    SDUITable1.SetColumnUploadTitle("Subir")

1683883424310.png
 

Mashiane

Expert
Licensed User
Longtime User
Exporting Table to CSV


 
Top