TYPO3.CMS 6.2 Extension jquery.dataTables: Unterschied zwischen den Versionen
Aus Vosp.info
F (Diskussion | Beiträge) (→Quellen) |
F (Diskussion | Beiträge) (→Fatal error: Call to a member function replaceObject() on a non-object in typo3/sysext/extbase/Classes/Persistence/Repository.php on line 222) |
||
Zeile 24: | Zeile 24: | ||
== Fatal error: Call to a member function replaceObject() on a non-object in typo3/sysext/extbase/Classes/Persistence/Repository.php on line 222 == | == Fatal error: Call to a member function replaceObject() on a non-object in typo3/sysext/extbase/Classes/Persistence/Repository.php on line 222 == | ||
− | folgendes löst das Problem, weiß aber nicht genau ob das nicht anders besser geht | + | folgendes löst das Problem, weiß aber nicht genau ob das nicht anders besser geht: |
+ | |||
+ | Tx_Ncfluid_Domain_Repository_TableRepository wird nicht über initializeAction() genutzt, sondern extra noch mal geladen | ||
<source lang="php"> | <source lang="php"> | ||
+ | class Tx_Ncfluid_Controller_TableController | ||
+ | extends Tx_Extbase_MVC_Controller_ActionController { | ||
+ | |||
+ | // .... | ||
+ | |||
public function updateAction(Tx_Ncfluid_Domain_Model_Table $tablerow) { | public function updateAction(Tx_Ncfluid_Domain_Model_Table $tablerow) { | ||
Zeile 40: | Zeile 47: | ||
$this->redirect('index'); | $this->redirect('index'); | ||
} | } | ||
+ | |||
+ | // .... | ||
+ | |||
</source> | </source> | ||
− | |||
=Quellen= | =Quellen= | ||
* [http://t3-developer.com/extbase-fluid/datepicker/ Datumseingaben in Fluid Formularen - Datepicker] | * [http://t3-developer.com/extbase-fluid/datepicker/ Datumseingaben in Fluid Formularen - Datepicker] | ||
* [http://www.typo3.net/forum/beitraege/extbase_und_fluid/108844/ Could not ultimately dispatch the request after 101 iterations ] | * [http://www.typo3.net/forum/beitraege/extbase_und_fluid/108844/ Could not ultimately dispatch the request after 101 iterations ] |
Version vom 28. Februar 2013, 13:35 Uhr
- Typo3 Extension jquery.dataTables.editable @deprecated mit der alten pibase-Klasse entwickeln
Ziel ist es in einer typo3 Extension eine Datenbanktabelle auszulesen und in der Oberfläche (frontend) dynamisch manipulierbar (add,edit,delete row) zumachen.
- Hierfür werden folgende Bibliotheken verwendet
- zur Info
- Grundlagenwissen: Typo3 kickstarter Extension, typo3 Extensions entwickeln
- Grundsätzlich bevor mensch sich wundert warum wieder was nicht funzt typo3-Cache löschen und im Zweifel mal unter Adminwerkzeuge > Protokoll schauen
Inhaltsverzeichnis
Notizen
- statische template "Fluid - Default Ajax Configuration" einbinde wird u.a. jquery ins template eingebunden
Probleme
Fatal error: Call to a member function replaceObject() on a non-object in typo3/sysext/extbase/Classes/Persistence/Repository.php on line 222
folgendes löst das Problem, weiß aber nicht genau ob das nicht anders besser geht:
Tx_Ncfluid_Domain_Repository_TableRepository wird nicht über initializeAction() genutzt, sondern extra noch mal geladen
class Tx_Ncfluid_Controller_TableController
extends Tx_Extbase_MVC_Controller_ActionController {
// ....
public function updateAction(Tx_Ncfluid_Domain_Model_Table $tablerow) {
$objectManager = t3lib_div::makeInstance('Tx_Extbase_Object_ObjectManager');
$tableRepository = $objectManager->get('Tx_Ncfluid_Domain_Repository_TableRepository');
$tableRepository->update($tablerow);
// alter code führte zur Fehlermeldung;
// @see initializeAction -- $this->tableRepository =& t3lib_div::makeInstance('Tx_Ncfluid_Domain_Repository_TableRepository');
// $this->tableRepository->update($tablerow);
// $this->flashMessageContainer->add('Your tablerow was updated.');
$this->redirect('index');
}
// ....