Revision #59 was created by rackycz on May 6, 2026, 9:14:57 AM.
GridView + Disclaimer
Content
[...]
stop: ## Stop the dev environment
$(DOCKER_COMPOSE_DEV) stop
endif
```
## Disclaimer
I am just learning Yii3. Its new architecture is not my cup of tea so I am trying my best to reach my goals. (I left world of Java+Spring because of these complex DI configurations and now it's back :-o )
If you find a better implementation, let me know. I am not an architect, but a real-life developer who solves daily problems in the world of bussines and industry so sometimes I may produce too straight-forward or philosophically imperfect solutions.
## Adding DB into your project
Your project now does not contain any DB. Let's add MariaDB and Adminer (DB browser) into file docker/dev/compose.yml:
[...]
```
## UI
**Pjax**
Pjax does not exist any more, but you can use [HTMX](https://htmx.org/docs/#introduction) instead:
[...]
```
**## GridView + CRUD
Grid view is in package `yiisoft/yii-dataview`. The source code is extremely verbose and complex to me (compared to how primitive function it should provide), so I am just linking my GitHub demo:
## JS client - Installable Vuejs3 PWA**
If you create a REST API you may be interested in a JS frontend that will communicate with it using Ajax. Below you can peek into my very simple VueJS3 attempt. It is an installable PWA application that works in offline mode (=1 data transfer per day, not on every mouse click) and is meant for situations when customer does not have wifi everywhere. See my [Gitlab](https://gitlab.com/radin.cerny/vuejs3-pwa-demo-plus).