摘要:
使用的是Yii自带的Grid,在使用checkbox希望可以把选中行的id值传到我想要的页面。 首先需要改变key值 button: $('#w0') 可换成自己grid的ID; 阅读全文
摘要:
流程图:最后 文字介绍:http://www.ecomdev.org/2012/08/28/magento-checkout-functionality-concept.html 阅读全文
摘要:
在web下希望加个core.php的后台入口,但因为权限问题,总是会跳转到index.php解决方案:在core.php 引用的配置文件main-core.php加入如下代码: 'components' => [ 'urlManager'=>[ 'showScri... 阅读全文
摘要:
一.使用代理set http_proxy=http://127.0.0.1:8087 //Windowsexport http_proxy=http://127.0.0.1:8087 //linux or Mac OS二. 使用中国镜像。http://pkg.phpcomposer.com/ 阅读全文
摘要:
在模板页面不显示getMessage的解决方案是,在对应的控制器里加上如下代码:$this->_initLayoutMessages('customer/session'); 如果加入后出现如下图的bug则再加入如下代码$this->_initLayoutMessages('catalog/sess... 阅读全文
摘要:
首先建立如下的目录结构在channel.xml中如此写上 local http://localhost/channel/ local 在packages.xml中如此写 Jago_Deal 插件名 1.0.0 版本号 ... 阅读全文
摘要:
$product_id = Mage::registry('current_product')->getId(); 阅读全文
摘要:
查询:$model = Mage::getModel('mynews/mynews'); $collection = $model->getCollection(); $collection->addAttributeToSelect(array('name', 'image', 'url_key'... 阅读全文
摘要:
首先是配置文件config.xml里的配置 /*事件名字*/ /*模块名字*/ deal/observer_cart /*文件地址deal/Model/Observer/Cart.p... 阅读全文
摘要:
class Jago_Deal_IndexController extends Mage_Core_Controller_Front_Action{ public function ajaxAction() { $block = $this->getLayout()->cr... 阅读全文