FineUI 官方论坛
标题:
经验分享 - 为FineUI添加复制按钮功能
[打印本页]
作者:
swtseaman
时间:
2013-12-19 21:37
标题:
经验分享 - 为FineUI添加复制按钮功能
今天项目里有一个涉及到用户信息显示,为方便用户查看信息后进行快速复制,所以用FineUI结合Js复制插件做了一个复制按钮功能!
1、添加一个Window,代码如下:
<x:Window runat="server" Title="用户信息" IsModal="true" Width="320" Height="200" BodyPadding="10px" Layout="Column" ID="window_UserMsg">
<Items>
<x:Label runat="server" Text="用户信息如下:" ColumnWidth="100%"></x:Label>
<x:TextArea runat="server" ID="txt_UserMsg" ColumnWidth="100%"></x:TextArea>
<x:Panel runat="server" ColumnWidth="100%" ShowBorder="false" ShowHeader="false">
<Items>
<x:Button runat="server" ID="btn_Copy" Text="复制" Icon="PageCopy"></x:Button>
</Items>
</x:Panel>
</Items>
</x:Window>
复制代码
2、引用复制插件
<script src="js/ZeroClipboard.js"></script>
复制代码
3、在</body>代码前加入如下脚本:
<script>
var clip = null; //声明一个clip复制对象
function $(id) { return document.getElementById(id); } //为方便查询,做了一个跟Jquery一样的选择功能
function init() { //初始化代码
if (clip == null) {
ZeroClipboard.setMoviePath("/js/ZeroClipboard.swf"); //绑定flash文件
clip = new ZeroClipboard.Client(); //声明clip复制对象
clip.setHandCursor(true); //设置鼠标为手型
clip.addEventListener('mouseOver', function (client) { //添加mouseOver事件,当鼠标移入时触发
clip.setText($('window_UserMsg_txt_UserMsg-inputEl').value); //当鼠标移入时,将txt_UserMsg的最新内容赋值给clip复制对象
});
clip.addEventListener('complete', function () { //添加复制完成事件
window.F.alert('复制成功!');
});
clip.glue("window_UserMsg_ctl01_btn_Copy", "window_UserMsg_ctl01"); //将clip复制对象绑定到btn_Copy按钮
}
}
Ext.onReady(function () { init(); }) //Ext加载完毕,初始化复制插件
</script>
复制代码
到此,FinUI复制按钮功能就可以使用了,至于用到什么地方,大家就自由发挥吧!
附上JS复制插件文件:[attach]3995[/attach]
运行效果截图:
[attach]3996[/attach]
作者:
shihahayue
时间:
2014-2-27 17:49
谢谢,以后用的到
作者:
txw999
时间:
2014-7-31 20:38
谢谢以后有用
欢迎光临 FineUI 官方论坛 (https://fineui.com/bbs/)
Powered by Discuz! X3.4