zoukankan      html  css  js  c++  java
  • 解决Devexpress的dropdown控件在IE9之后样式错乱问题

    protected override void OnPreRenderComplete(EventArgs e)
    {
    //------------------------------------------------------------------------------------------------------
    //TODO: We should be able to remove this code once we update DevExpress to a recent version.
    // Problem exists in the DevExpress dropdown controls used on the
    // Select Payemnt Method - Change Expiration Date Month-Year controls.
    // This was a known issue at DevExpress for IE9+ versions, and was fixed in version 2010 and later
    // version 2010 and later. http://www.devexpress.com/Support/Center/Question/Details/B192965
    //------------------------------------------------------------------------------------------------------
    base.OnPreRenderComplete(e);
    Page.Header.Controls.AddAt(0, new HtmlMeta { HttpEquiv = "X-UA-Compatible", Content = "IE=8" });
    }

    <script type="text/javascript" >
    var orig_aspxEmulateDocumentOnMouseDown = _aspxEmulateDocumentOnMouseDown;
    _aspxEmulateDocumentOnMouseDown = function _aspxEmulateDocumentOnMouseDown(evt)
    {
    var emulatedEvt = document.createEvent("MouseEvents");
    emulatedEvt.initMouseEvent("mousedown", true, true, window, 0, evt.screenX, evt.screenY,
    evt.clientX, evt.clientX, evt.ctrlKey, evt.altKey, evt.shiftKey, false, 0, null);
    document.dispatchEvent(emulatedEvt);
    }
    </script>

  • 相关阅读:
    AD域新建用户
    Windows程序设计(1)
    C++ 进阶 模板和STL
    C++ 基于多态的职工管理系统
    C++核心编程
    C++入门-控制台版的通讯录管理系统
    第一章、熟悉工作环境和相关工具
    Spring整合JDBC temple
    SpringMVC整合mybaitis
    实验12 添加0号中断处理程序
  • 原文地址:https://www.cnblogs.com/caosenianhuan/p/3670174.html
Copyright © 2011-2022 走看看