Share My Creation SithasoDaisy: PocketBase - Project Management Unit Source Code @ $5.00

Hi there

Netlify Demo

Disclaimer: This webpp is hosted on Netlify and the back-end hosted on PocketHost (just for demonstration purposes).

On the download you will get the source code and a running version (inside PocketBase) which is activated by double clicking a file. No installation necessary as you just download and use the application.


This webapp features a couple of modules.
  • SignIn
  • SignUp
  • ForgotPasword
  • Dashboard
  • Projects
  • Events
  • Events Calendar
  • Clients
  • Collaborate (Chat)
  • Departments
  • People
  • Tasks
  • Tasks Gantt Chart

The webapp is developed using PocketBase and is hosted in PocketHost.IO. It can be hosted locally too by running a local version of PocketBase.

dash.jpg








You will need SithasoDaisy to run the project. This project uses PocketBase as a back-end.

Pocketbase:

Happy Coding.

Get the source code now by clicking the link below.

 
Last edited:

Mashiane

Expert
Licensed User
Longtime User
Have you gone through the ebook that comes with SithasoDaisy?

These are explained there...

Edit and Delete are action buttons.

These are added with AddColumnAction internally by the AddDesignerColumns call.

The other button is the back button, if you code it, it can be used to navigate to another page.

Please also spend time going through the source code displayed in the demo SithasoDaisy app.
 

giannimaione

Well-Known Member
Licensed User
Longtime User
I did not understand:
into process_globals define Private pbclients As SDUITable
but the following event is not raised
B4X:
Private Sub pbclients_ChangeRow (Row As Int, Value As Object, Column As String, item As Map)
    Log("no event")
End Sub

these work fine
B4X:
Private Sub pbclients_ChangePropertyBag (item As Map)
'and
Private Sub pbclients_ChangeProperties (item As Map)
 

Mashiane

Expert
Licensed User
Longtime User
Private Sub pbclients_ChangeRow (Row As Int, Value As Object, Column As String, item As Map)
Please note that the SithasoDaisyDemo source code has all the working source code. It will greatly help you to check it out. I am sure if you did a search on the source code for _changerow, you will find a working example and how it was applied.

1683979676401.png


This is the same app on https://sithasodaisyui.netlify.app/

With that said, if there is no input component that is changed on the row the event will not be fired.

In the demo, you need to check table examples that have input components and see the application of the code.
 
Top