Ragazzi volevo porvi il seguente quesito..
Apro una showModalDialog con questo script:
<script language="javascript">
function Modifica(url) {
var features='dialogHeight:600px;dialogWidth:400px;cen ter:1;scroll:no;status:0;unadorned:no;'
var arrModal = window.showModalDialog(url,null,features);
if (arrModal!=null){
document.getElementById('IDMailing').value = arrModal.IDMailing;
document.getElementById('Nome').value = arrModal.Nome;
document.getElementById('Cognome').value = arrModal.Cognome;
document.getElementById('Email').value = arrModal.Email;
document.getElementById('IDCategoriaEmail').value = arrModal.IDCategoriaEmail;
document.getElementById('Cestino').value = arrModal.Cestino;
document.FormTmp.submit();
}
}
</script>
Con il Browser Mozilla mi dice che window.showModalDialog is not a function ....proprio nella riga di apertura della showModalDialog mi da l'errore come posso risolvere..dove sbaglio?