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>

  • 相关阅读:
    关于文件路径的生成
    re模块小结
    logging模块知识点及应用小结
    微信小程序上传图片
    小程序图表插件
    小程序实现多图上传、预览
    微信小程序实现验证码倒计时效果
    微信小程序上传图片,视频及预览
    小程序实现星级打分
    小程序获取系统日期时间
  • 原文地址:https://www.cnblogs.com/caosenianhuan/p/3670174.html
Copyright © 2011-2022 走看看