摘要: 1. 对combobox调用showTriggerButton和setValue方法之前,需要combobox所在窗口调用过show方法 2. store中的数据如果需要动态重新获取,可以通过给store.reload({url:url, params:{},callback: functio... 阅读全文
posted @ 2014-09-04 23:32 nosmall 阅读(147) 评论(0) 推荐(0) 编辑
摘要: public class TestSynchronizeKey { public static void main(String[] args) { LastWater water = new LastWater(); for(int i = 0 ; i < 3000; i ++) { Thread thread = new Thread(water, "thread-"+i+":"); thread.start(); } }}class LastWater implements Runnable{ private SimulateClass si 阅读全文
posted @ 2013-12-18 11:21 nosmall 阅读(207) 评论(0) 推荐(0) 编辑
摘要: chart helper 是asp.net chart control的包装类1. 数据绑定的方法(1)AddSeries方法优点:可以对数据输出格式进行设定缺点: 手动设定,繁琐Series 中的各项参数:chartType: 字符串类型,值与SeriesChartType相同,例如:bar(横向图), pie(饼图), column(竖栏图).... name: the name of legend(图例的名字), 需要在chart上添加AddLegends方法在显示界面上显示图例 xValue, yValue :数组 (2) DataBindTable方法 优点: 可以... 阅读全文
posted @ 2013-11-26 10:49 nosmall 阅读(539) 评论(0) 推荐(0) 编辑
摘要: ---恢复内容开始---实例:empidcustidqty2A523A201B202B271C343C223D30要求转换后的透视图如下:empidABCD1NULL2034NULL25227NULLNULL320NULL22301.标准sql 进行透视转换 select empid, sum(case when custid ='A' then qty End) AS A, sum(case when custid ='B' then qty End) AS B, sum(case when custid ='C' then qty End) 阅读全文
posted @ 2013-10-25 09:49 nosmall 阅读(478) 评论(0) 推荐(0) 编辑
摘要: 说明:笔者刚入行,写的都是初级内容,还请各位看官多多指教。1. poshytip 用途: 弹出提示框 如何使用: 文件头中加入 实例 $(".showTips").poshytip({ content: function () { return $(this).text(); } }); 2. Uploadify 用途: 附件上传 弊端: 在IE下可以正常使用,在FF和Chrome中无法正常使用 原因:浏览器通过flash组件实现文件上传的不同。IE 使用相同的session。 而FF 打开一个新的连接, 所以服务器将会认为该连接是未认证的用户。 实例: va... 阅读全文
posted @ 2013-10-24 10:34 nosmall 阅读(533) 评论(0) 推荐(0) 编辑