Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/al-muhandis/datatable-demo
A simple almost minimal example of how you can work with a jQuery table from the Lazarus program
https://github.com/al-muhandis/datatable-demo
ajax datatables demo example freepascal httpserver lazarus web
Last synced: 20 days ago
JSON representation
A simple almost minimal example of how you can work with a jQuery table from the Lazarus program
- Host: GitHub
- URL: https://github.com/al-muhandis/datatable-demo
- Owner: Al-Muhandis
- License: mit
- Created: 2023-11-28T08:39:51.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-11T19:49:06.000Z (11 months ago)
- Last Synced: 2024-02-11T21:14:23.238Z (11 months ago)
- Topics: ajax, datatables, demo, example, freepascal, httpserver, lazarus, web
- Language: CSS
- Homepage:
- Size: 1.18 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dataTable-demo
A simple almost minimal example of how you can work with a jQuery table from the Lazarus program. DataSource is from firebird or SQLite3 database# demo.ini
Just create `demo.ini` and write settings in it
```ini
[DB]
;; DB host, for example: localhost, 127.0.0.1, sample.com
host=localhost
;; DB name. For TSQLConnection.DatabaseName
name=.\sample.sqlite3
user=sysdba
password=masterkey
driver=SQLite3[Table]
Name=employee
col0=id
col1=Empid
col2=EmpName
col3=EmpJoiningDate
col4=Salary
col5=Address
ColCount=6
SearchCol=2
```# Frontend
The template is used as a frontend framework `sb-admin` https://github.com/startbootstrap/startbootstrap-sb-admin/
The JS frameworks: jQuery, dataTables https://datatables.net, celledit https://github.com/ejbeaty/CellEdit
It can be used for that any other# demo video
[![Watch the video](https://img.youtube.com/vi/RD104mPfl20/hqdefault.jpg)](https://www.youtube.com/embed/RD104mPfl20)