Ajax при помощи ExtJS
Задача: используя ExtJS получить некое значение из стороннего PHP скрипта и передать его в поле input.
Вероятно можно и более элегантно, но не захотелось тратить время на изучение этого фреймворка..
1 2 3 4 5 6 7 8 9 10 11 12 |
Ext.onReady(function(){ var agrmnum=document.getElementById('_agreement_').value; Ext.Ajax.request({ url : 'http://eowirfoei.ru/ofdierofi.php?agrm_id='+agrmnum, async : false, failure : function(){alert('Error');}, success : function(response){ //alert(response.responseText); document.getElementById('_PaySum').value = response.responseText; } }); }); |