
Flex
iteye_19580
这个作者很懒,什么都没留下…
展开
-
实现AdvancedDataGrid全选功能
AdvancedDataGrid功能强大,非常好用。遗憾的是AdvancedDataGrid对全选的支持不是很好。以下代码实现了AdvancedDataGrid的全选功能1. 左上角加了一个checkBox2. 每行加了checkBox3. 不符合条件的不能选4. 点击全选,选中所有符合条件的记录抛砖引玉,希望能看到关于AdvancedDataGrid全选的更好的解决方案。...2009-06-29 18:18:47 · 121 阅读 · 0 评论 -
用Flex几行代码从Twitter获取用户最近的唠叨
Twitter API和Flex结合的非常好,用Flex可以很容易的拿到你想要的信息。以下是获取JavaEye老大robbin最近发布的信息。[code="xml"] [/code]...2009-07-02 12:18:28 · 98 阅读 · 0 评论 -
It is possible that '(a)mxmlc' executable was not found or there are compilation
用Restfulx开发flex运用,执行如下命令:rake rx:flex:build报如下错误:[code="java"](in /media/disk/software/ework/ruby/cucumberwithflex)Compiling /media/disk/software/ework/ruby/cucumberwithflex/app/flex/Cucumbe...2009-07-11 14:00:45 · 102 阅读 · 0 评论 -
Fxspy--Flex上类似firebug的工具
Fxspy是Flex上类似firebug的工具,非常实用。这里可以获取相关信息:http://code.google.com/p/fxspy/这是相关的安装介绍:[b]Installation instructions[/b]# In Flex Builder, open the Properties window of your project (Project menu...2009-07-12 18:21:10 · 133 阅读 · 0 评论 -
用Cucumber,FunFX测试Flex运用(Testing Flex Apps with Cucumber )
以下是详细的step by step的视频 http://www.onrails.org/articles/2009/07/08/screencast-testing-flex-apps-with-cucumber,下面的步骤视频中都会讲到,只要按视频做就可以进入BDD测试flex的旅程了。1. rails cucumberwithflex2. 在environment.rb添...2009-07-12 22:51:11 · 148 阅读 · 0 评论 -
The entity name must immediately follow the '&' in the entity ref erence
在mxml文件中,使用&符号报错:[code="xml"]mysharebook.cn && 4star.cn ? pass : fail[/code]改为如下代码就好了:[code="xml"]mysharebook.cn && 4star.cn ? pass : fail[/code]...2009-08-14 10:11:48 · 261 阅读 · 0 评论