We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ec8830 commit ced031dCopy full SHA for ced031d
app/code/core/Mage/Adminhtml/Block/Newsletter/Template/Grid.php
@@ -21,6 +21,16 @@
21
*/
22
class Mage_Adminhtml_Block_Newsletter_Template_Grid extends Mage_Adminhtml_Block_Widget_Grid
23
{
24
+ public function __construct()
25
+ {
26
+ parent::__construct();
27
+ $this->setId('newsletterTemplateGrid');
28
+ $this->setDefaultSort('template_code');
29
+ $this->setDefaultDir('desc');
30
+ $this->setSaveParametersInSession(true);
31
+ $this->setUseAjax(true);
32
+ }
33
+
34
protected function _construct()
35
36
$this->setEmptyText(Mage::helper('newsletter')->__('No Templates Found'));
0 commit comments