C1Dialog页面加载时不希望显示,点击对应按钮显示
现在希望实现如下功能
1.在进入页面的时候不显示C1Dialog对话框
2.点击显示对话框按钮的时候显示出来
现在设置了C1Dialog1.ShowOnLoad = False,这样在点击按钮的时候也显示不了了,请问如何设置,谢谢
<script type="text/javascript">
function showDialog() {
C1Dialog1.c1dialog();
}
</script>
<asp:Button runat="server" ID="btnShow" Text="显示对话框" Width="100" />
<wijmo:C1Dialog ID="C1Dialog1" runat="server"Title="基本对话框" Width="300" Height="185" >
<CaptionButtons>
<Refresh Visible="false" />
</CaptionButtons>
<Content>
<p>
这是默认的对话框,它在显示信息时非常有用。对话窗口可以移动,调整大小,并可以用“X”图标关闭。
</p>
</Content>
</wijmo:C1Dialog>
https://demo.grapecity.com.cn/Co ... ialog/Overview.aspx
可以参考这个demo,其中有示例代码
页:
[1]