Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的页面上,我使用 Devexpress CallbackPanel 动态加载其内容,包括 javascript 块。由于 DX 不(默认情况下)在回调端运行这些脚本,我找到了一种解决方法。
您唯一需要做的就是指定以前缀“dxss_”开头的脚本块的 id,然后魔术就起作用了。
<script type="text/javascript" id="dxss_AnyTextHere"> //some script here </script>
您可以使用“ClientSideEvents-EndCallback”指定的 ASPxCallback 客户端事件,您可以在其中指定 javascript 函数。从此函数中,您可以调用在回调期间添加的任何脚本。