terça-feira, 27 de julho de 2010

funções para excluir o documento

function Excluir(){

//=== Montando a URL de Retorno ===
var aux_url = location.protocol + "//" + location.hostname + caminho;
var acao = "/($All)/" + document.forms[0].DocID.value + "?DeleteDocument";
var url = aux_url + acao;
var wopener = window.opener.location.href;
//alert(wopener);

//=== Valida a Exclusão ===
if (confirm("Deseja excluir o documento? ")) {
window.location.href = url;
window.opener.location.href = wopener;
//window.opener._doClick('$Refresh','this',null);
window.close();
}
}


function excluirDoc(){
if(confirm('Confirma a exclusão?')){
var urlCorrente = new String(document.location);
var urlDelecao = '';
if(urlCorrente.indexOf('?') == -1 ){
urlDelecao = urlCorrente + '?DeleteDocument';
}else{
var vetTemp = new Array();
vetTemp = urlCorrente.split('?');
var urlSemQueryString = vetTemp[0];
urlDelecao = urlSemQueryString + '?DeleteDocument';
}
self.location = urlDelecao;
}
}

Nenhum comentário:

Postar um comentário