Jump to content

close a showModal-Form by clicking NOT in the form


erich.wanker

Recommended Posts

hello,

 

has anyone a trick to close a showmodal-form by clicking beside the form ?

 

like a popup .. if it is visible and i click somewhere - the popup will be closed..

 

i open the form per:   tUniForm.ShowModal;

 

thanks for suggestions :-)

 

 

 

Link to comment
Share on other sites

Hello, can anyone help me with the Suggestion of Oliver ?

 

i search a piece of javascript and the step´s how to implement it to close a ShowModal Form by clicking on the "x-mask" div element ...

 

Thank you

Link to comment
Share on other sites


// UniForm1.script:

function setMaskeventClosewindow(target) {
var elements = document.body.getElementsByTagName('div');
for (var i = 0; i < elements.length; i++) {
if (elements[i].className.indexOf('mask') != -1) {
elements[i].onclick = function() {target.close();};
}
}
}


// UniForm1.onShow:

procedure TuniForm1.UniFormShow(Sender: TObject);
begin
UniSession.AddJS('setMaskeventClosewindow(' + self.WebForm.ExtWindow.JSName + ');');
end;


// call in MainForm:

UniForm1.ShowModal;

 

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...