ENXF NET
Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
- Joined
- Nov 13, 2018
- Messages
- 24,728
- Points
- 823
Reputation:
I have a page template with a form to add/edit info and also the list of infos from the table.
Currently when I click on a item to edit, it redirects to a blank page with route admin.php?my-route/1/edit (the route is correctly set)
How can I edit the item in the same template (my-template) and populate data in the existent form?
Index:
Code:
Read more
Continue reading...
Currently when I click on a item to edit, it redirects to a blank page with route admin.php?my-route/1/edit (the route is correctly set)
How can I edit the item in the same template (my-template) and populate data in the existent form?
Index:
Code:
Code:
public function actionIndex()
{
$this->checkLicenseExpiration();
$info = $this->finder('MyApp:Class');
$viewParams = [...
Read more
Continue reading...