FineUI 官方论坛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

模拟右下角弹窗

已有 2582 次阅读2015-11-23 09:37 |个人分类:Fineui 分享


<!DOCTYPE html>


<html xmlns="http://www.w3.org/1999/xhtml">

<head runat="server">

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

    <title></title>

</head>

<body>

    <form id="form1" runat="server">

        <f:PageManager runat="server" />

       

        <f:Button runat="server" ID="btn1" OnClick="btn1_OnClick" Text="haha"></f:Button>

        <f:Window ID="Window1" runat="server" Height="200px" Width="300px" IsModal="true" EnableMaximize="True"

            CloseAction="HidePostBack" EnableIFrame="True" Hidden="False" Icon="ApplicationFormEdit"

            Target="Top" EnableResize="True">

        </f:Window>


    </form>

</body>

</html>

<script src="../../res/js/jquery.js"></script>

<script>

    Ext.onReady(function () {

        setWin();

    });


    function setWin() {

        var window1 = F('<%=Window1.ClientID %>');

        //alert(window1.getHeight() + "-" + window1.getWidth() + " width:" + ($(window).width() - window1.getWidth()));


        window1.setX($(window).width() - window1.getWidth());

        window1.setY($(window).height() - window1.getHeight());

    }

</script>


后台代码:

protected void btn1_OnClick(object sender, EventArgs e)

        {

            PageContext.RegisterStartupScript(Window1.GetShowReference("alert.aspx", "查看库存") + "setWin();");


        }



有个小bug,如果浏览器变小或变大,弹窗位置会改变,我这没处理,如果有兴趣自己改下。~.~


路过

鸡蛋

鲜花

握手

雷人

评论 (0 个评论)

小黑屋|FineUI 官方论坛 ( 皖ICP备2021006167号-1 )

GMT+8, 2024-4-24 07:04 , Processed in 0.032064 second(s), 20 queries , Gzip On.

Powered by Discuz! X3.4

© 2001-2017 Comsenz Inc.

返回顶部