iSeller Commerce
iSeller POS Retail
iSeller POS F&B
iSeller POS Express
Crosslight
WebUI
ClientUI
What's New
Download Trial
Web Solution
Mobile Solution
Enterprise Solution
Custom Development
Blog
Community
Latest Development Blogs
ForumPostTopic
Browse By Tag
i have problem's with webdialogbox, when i want hide this with a button asp.net.
i'm using this comand's
dlgbControles.ShowOnLoad = FalsedlgbControles.Visible = FalsedlgbControles.IsUnloaded = False
this line "dlgbControles.ShowOnLoad = False" hidde the control but in the second click of button aspnet
I created a simple sample based on your requirement. In the sample, the asp.net Button is placed inside WebDialogBox content. When the button is clicked, it will set the value of ShowOnLoad property to “false”.
protected void Button1_Click(object sender, EventArgs e) { dlgBox.ShowOnLoad = false; }
Please let us know if you have different scenario.
I'm using this function in javascript for show the webdialogbox,
the property webdialogbox ShowOnLoad=false BY DEFAULT
{
dialogBox.ShowDialog();
i want hide a webdialogbox with a button ISNet.WebUI.WebDesktop.WebButton,
i'm using this code but not working
Protected Sub wbAceptar_Clicked(ByVal sender As Object, ByVal e As ISNet.WebUI.WebDesktop.WebButtonClickedEventArgs) Handles wbAceptar.Clicked
End sub
please help me
One of the default behaviors of WebDialogBox is the TrueModal behavior. The modal behavior means that when DialogBox shown, the parent window which owns the DialogBox should become unclickable.
If your WebButton is located in the parent window, then you need to set WebDialogBox to use Modeless mode, instead of Modal mode which is set by default. When the WebDialogBox is using Modeless mode, the background object will no longer be blocked. This allows you to interact with the Webpage while the WebDialogBox is active.
To use modeless mode, simply set IsModal to false.
I modify the sample so that now it has two buttons. Each of the buttons is used to show and hide WebDialogBox. Please have the sample tested on your end and let me know whether it helps or not.
I sent a picture to explain better
or there is a JavaScript code to hide the webdialogBox well as webdialogBox.ShowDialog (); maybe webdialogBox.Show = false;
There is a javascript method that you can use to close WebDialogBox, it is "CloseDialog()" method. Below is the snippet code.
function Button1_onclick() { var dlgBox = ISGetObject("dlgBox"); dlgBox.CloseDialog(); }
or
Choose this if you're already a member of Intersoft Community Forum. You can link your OpenID account to your existing Intersoft Social ID.
Choose this if you don't have an Intersoft account yet. Your authenticated OpenID will be automatically linked to your new Intersoft account.
Enter your Wordpress Blogname