Artyom Mezin
Artyom Mezin
@nsams Same problem with standard events in AutoGrid. Where the `rowclick` event? Deleted? :D
Workaround: ``` php protected function _beforeDelete() { parent::_beforeDelete(); $model2Model = $this->getModel()->getDependentModel('model2'); $model2Model2 = clone $model2Model; $model3Model = $employeeworksModel->getDependentModel('model3'); $model2Select = $model2Model->select()->whereEquals('model1Id', $this->id); $model2Select2 = clone $model2Select; $model2Iterator = new Kwf_Model_Iterator_Packages(new...
> deleteRows does not instanciate row objects But with this feature you totally no need to create relations between tables in DB. > We usually use innodb relations to achieve...
@nsams Any news on this issue?
> what exaclty is wrong with your translation? Now everything fine. > favicon is fixed now. (c9cdd71) I clear cache everywhere and nothing change.
> You did composer update, right? Yep. > And the favicon is working correctly after being logged in? Favicon not showing in lost password page.
> but for the login itself it is working correctly? Yes.
So finally I can see cookie only with this list from `Kwf.Auto.Grid`: ``` javascript this.addEvents( 'rendergrid', 'beforerendergrid', 'deleterow', 'cellclick', 'celldblclick', 'rowdblclick' ); ```
I tried to use simple example with `stateful`, but it works only with this list of events in AutoGrid: ``` this.addEvents( 'rendergrid', 'beforerendergrid', 'deleterow', 'cellclick', 'celldblclick', 'rowdblclick' ); ``` Why...
I found something, but it works from ExtJS 4.1.0 version: http://docs.sencha.com/extjs/4.1.3/#!/api/Ext.grid.View-cfg-preserveScrollOnRefresh Something more: http://www.sencha.com/forum/showthread.php?243617-doLayout-resets-scroll-position