×
Please submit new Bug Reports on GitHub: github.com/Jensen-Technologies/component-creator-issues/issues
two views of two tables in one
Michele Calzone
Fresh Boarder
Posts: 3
9 Jahre 6 Monate her #770
von Michele Calzone
two views of two tables in one wurde erstellt von Michele Calzone
is possibile to combine two views of two tables in one ? if you like ?
Bitte Anmelden oder Registrieren um der Konversation beizutreten.
Anthony Ceccarelli
Fresh Boarder
Posts: 2
9 Jahre 5 Monate her #841
von Anthony Ceccarelli
Easy Timetable, a user-friendly schedule management system build with Component Creator
Anthony Ceccarelli antwortete auf two views of two tables in one
Hello,
yes, it's possible to show data from two or more tables in one view. I had to do that so I searched for it. It's quite simple but I don't know if it's the right way :
For a list of items, in the view.html.php I add these lines (Joomla 3) :
Then in the default.php (for example) use a foreach function to get the data :
Hope it helps !
yes, it's possible to show data from two or more tables in one view. I had to do that so I searched for it. It's quite simple but I don't know if it's the right way :
For a list of items, in the view.html.php I add these lines (Joomla 3) :
$model2 = JModelList::getInstance('NameOfYourModel', 'YourComponentModel');
$this->modelData = $model2->getItems();
foreach ($this->modelData as $key=>$value) {
echo $value->id;
echo $value->category;
//... etc
}
Easy Timetable, a user-friendly schedule management system build with Component Creator
Folgende Benutzer bedankten sich: Andres Maeso
Bitte Anmelden oder Registrieren um der Konversation beizutreten.
Ladezeit der Seite: 0.049 Sekunden