Difference between #58 and #59 of
Yii3 - How to start

Revision #59 has been created by rackycz rackycz on May 6, 2026, 9:14:57 AM with the memo:

GridView + Disclaimer
« previous (#58) next (#60) »

Changes

Title unchanged

Yii3 - How to start

Category unchanged

Tutorials

Yii version unchanged

3.0

Tags unchanged

Content changed

[...]
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:
 
 
- [Action](https://github.com/rackycz/yii3web/blob/master/src/User/Action/IndexAction.php)
 
- [method findAll()](https://github.com/rackycz/yii3web/blob/master/src/Entity/QueryBuilder/UserQueryBuilderRepository.php)
 
- [QueryDataReader](https://github.com/rackycz/yii3web/blob/master/src/Entity/QueryBuilder/QueryDataReader.php)
 
- [View](https://github.com/rackycz/yii3web/blob/master/src/User/View/index.php)
 
 
 
## 
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).
2 0
5 followers
Viewed: 69 476 times
Version: 3.0
Category: Tutorials
Tags:
Written by: rackycz rackycz
Last updated by: rackycz rackycz
Created on: Oct 8, 2025
Last updated: 8 hours ago
Update Article

Revisions

View all history