vivimusing 发表于 2013-2-7 22:30:16

extjs 加载

#在application_helper.rb中def include_ext_js    ext_js =""    ext_js << stylesheet_link_tag("/ext/resources/css/ext-all.css")    ext_js << javascript_include_tag("/ext/adapter/ext/ext-base.js")    ext_js << javascript_include_tag("/ext/ext-all.js")    ext_jsend 以后用到就不用重复加载了
#layouts/application.rhtml<head>....<%=include_ext_js%>....</head> 
 
页: [1]
查看完整版本: extjs 加载