`
文章列表
http://examples.adobe.com/flex2/consulting/styleexplorer/Flex2StyleExplorer.html
网址: http://www.nshen.net/blog/article.asp?id=467 *找到常见<mx: ...>前缀标签对应的类 安装目录\Adobe\Flex Builder 2\Flex SDK 2\frameworks\mxml-manifest.xml. *代码ctrl+s以后,想返回以前保存的版本 在你代码上点右键--->Replace with ---> LocalHistory 会显示该文件最近50个保存版本 *清楚显示组件是不是放在正确的container里 在设计模式点这个刷新右边的按钮,图: *显示图片 loading ...
*--------------------------- 功能:停止事件冒泡 ---------------------------*/ function stopBubble(e) { //如果提供了事件对象,则这是一个非IE浏览器 if ( e && e.stopPropagation ) //因此它支持W3C的stopPropagation()方法 e.stopPropagation(); else //否则,我们需要使用IE的方式来取消事件冒泡 window.event.cancelBubble = true; } //阻止浏览器的默认行为 function stopDe ...
有的说解决方法就是下最新的hibernate-annotations.jar的包~,这确实能够解决问题,但却不是最根本的解决方法,这个问题其实很奇怪,关键就在于Junit中测试没问题,就是发布到项目中的时候,会出现这样的问题~也就是MyEclipse在发 ...
Select * From rm_article As A Where (Select Count(0) From rm_article Where cid=A.cid And aid >= A.aid group by cid) <11 Order By A.cid,A.aid desc
1、给工程加Spring capability;    a、选择Add checked Libraries to ……   ,下一步     b、如果已有applicationContext.xml,选择Existing,否则选择New,下一步    c、在folder中选择bean包 2、给工程加Hibernate capability;    a、选择Add checked Libraries,下一步     b、选择Spring configuration file,下一步     c、选择Existing Spring configuration file,在SessionFactory ...
function setPos(pos){ document.location.hash=pos } 如: <a onclick="setPos(1);" style="cursor:hand">page1</a><br> <a onclick="setPos(2);" style="cursor:hand">page2</a><br> <a onclick="setPos(3);" style="curso ...
String.prototype.ltrim = function() { return this.replace(/(^\s*)/g, ""); } String.prototype.rtrim = function() { return this.replace(/(\s*$)/g, ""); } 使用方法: var str = "  abc   "; alert(str); alert(str.LTrim().Rtrim());
1、tree节点open时获取itemIndex tree.getItemIndex(event.item)

插入删除XML节点

    博客分类:
  • Flex
var datapc:DefaultDataDescriptor=new DefaultDataDescriptor(); //移除一个指定的item Xml 结点 datapc.removeChildAt(Item.parent(),Item,this.Item.childIndex()); //在指定的位置插入结点 datapc.addChildAt(Item,new XML(""),Item.children().length()-1); //不用DefaultDataDescriptor插入节点 //要指定到要插入的XML的节点名 Item.appe ...
装apache 解压php 拷贝 php5ts.dll php.ini 到 C:\windows\ 目录 拷贝 libeay32.dll libmcrypt.dll libmhash.dll libmysql.dll libswish-e.dll ssleay32.dll yaz.dll 到 C:\windows\system\ 修改 D:\php\php.ini 查找 extension_dir 修改 extension_dir = "D:\php\ext" 查找 extension=php_mysql.dll 把前面的 ; 去掉 修改 apache 添加 L ...
<mx:HTTPService id="myData" resultFormat="xml" url="http://localhost:8888/ownerarea/buildingList"/> <mx:Tree width="174" height="100%" id="tree" labelFunction="treeLabel" dataProvider="{myData.lastResult}" creati ...
将所有的文件加上 document.domain = "kingapex.com"; 可跨子域访问 如: www.kingapex.com   upload.kingapex.com 下的JS可互相访问
//servlet中 NexusForServ nexus = new NexusForServ(); response.setHeader("Pragma", "No-cache"); response.setHeader("Cache-Control", "no-cache"); response.setDateHeader("Expires", 0); response.setContentType("text/xml"); ServletOutpu ...
//applicationContext_dao.xml中配置 <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate"> <property name="dataSource" ref="dataSource"/> </bean> //要用到的类依赖jdbcTemplate <bean id="NexusDao" class="com.w ...
Global site tag (gtag.js) - Google Analytics