0
I created a robot in Delphi to open a website and include the data automatically.
I’m having trouble calling a Javascript routine that has on this site, as below:
<script type="text/javascript">
function prepararInclusaoItem(id) {
myForm = document.getElementById('faturaForm');
myForm.action='faturamentoPrepararInclusaoItem.do';
myForm.id.value = id;
}
function excluirItem(codigo) {
if(confirm('Deseja realmente excluir este Item de Pagamento?')) {
navegarPara('ExcluirItem', codigo);
}
return false;
}
</script>
And to access the record has the routine that calls the script :
What’s the matter?
– stderr
Dude, I don’t know if you can fire these methods in Javascript. But it seems to me, are 2 objects that will include and delete something. So ,you could shoot for Delphi, the action of that particular object (assuming it’s a button)
– Victor Tadashi