First, update the attribute input type to multiselect: UPDATE eav_attribute SET entity_type_id ', attribute_model = NULL, backend_model = 'eav/entity_attribute_backend_array', backend_type = 'varchar', backend_table = NULL, frontend_model = NULL, fro…
一.概述 attribute和property是常常被弄混的两个概念. 简单来说,property则是JS代码里访问的: document.getElementByTagName('my-element').prop1 = 'hello'; attribute类似这种: <my-element attr1="cool" /> JS代码里访问attribute的方式是getAttribute和setAttribute: document.getElementByTagName…
  Developing a User Interface with ADF Faces Purpose This tutorial covers developing the user interface for the Fusion Order Demo Application using ADF model and ADF Faces. Time to Complete Approximately 90 minutes Topics This tutorial covers the fol…
很明显,以下的文字来自微软MSDN 链接http://msdn.microsoft.com/en-us/library/windows/desktop/ms681382(v=vs.85).aspx MSDN上分成了几个部分,查起来费事,统一放在这里了. 用kernel32.dll里的FormatMessage可以得到支持多语言的返回消息 有人把这些错误代码整理成了类,供参考 http://www.cnblogs.com/Sabre/p/3929264.html Note The informat…
原书参考:http://www.jeffknupp.com/blog/2012/10/04/writing-idiomatic-python/ 上一篇:翻译<Writing Idiomatic Python>(四):字典.集合.元组 2.7 类 2.7.1 用isinstance函数检查一个对象的类型 许多新手在接触Python之后会产生一种“Python中没有类型”的错觉.当然Python的对象是有类型的,并且还会发生类型错误.比如,对一个int型对象和一个string型的对象使用+操作就会…
commands : show sys connect sys as sysdba or connect system as sysdba logout or disc clear screen or cle screen (utlsample.sql  —> unlock scott tables.sql  —> all tables data.sql  —> add data into tables) connect scott/tiger start C:\utlsample.sq…
接着上一篇用API创建可配置的产品Configurable Product说事.Magento的产品类型可分为Simple Product.Group Product.Configurable Product.Virtual Product.Bundle Product.Downloadable Product.其中Simple的产品最简单,属于基础产品.Configurable Product和Bundle Product的产品是建立在这些Simple产品之上的. Configurable P…
原理: magento是基于Zend Framework的,所以底层用的还是zend的zend db 在文件app/code/core/Mage/Catalog/model/Resource/Eav /Mysql4/Config.php 中追踪到下面的函数 getAttributesUsedInListing() /*** Retrieve Product Attributes Used in Catalog Product listing** @return array*/public fun…
xcodeブラックスクリーンの解決策: 1.cd ~/Library/Developer/Xcode/DerivedData 2.rm -fr *    //注释:-fr和*是分开的3.关闭模拟器,关闭Xcode,重新启动Xcode重新启动后我新建一个项目,运行,OK啦.不知道对你的有没有用,你可以试一下.我觉得这个Xcode的一个bug.碰到好多次了,真心无语. 1- restart xcode and/or restart simulator (reset content and setti…
AdminLTE 官网地址:https://adminlte.io/themes/AdminLTE/index2.html 首先去官网下载包下来,然后引入项目. 然后我们在web层添加区域Admin以及Common,关于AdminLTE的地址我们放在Common路劲下面. 在Common下添加LayoutController控制器. 这里菜单我们先不管,在后面的章节我在加上,首先是_Layout页代码: @{ Layout = null; } @using System.Web.Optimiza…