Replace Ajax "get" calls by "posts" since long URLs may be truncated... and sometimes URLs get longer than expected when some characters are urlencoded... (Trac #195)

SVN:trunk[628]
This commit is contained in:
Denis Flaven
2010-07-26 15:28:19 +00:00
parent b3594f5899
commit c9a573e39f
6 changed files with 19 additions and 19 deletions

View File

@@ -102,8 +102,8 @@ function WizardHelper(sClass)
{
//console.log('data sent:', this.ToJSON());
//console.log('oWizard:', this);
$.get('ajax.render.php?json_obj=' + this.ToJSON(),
{ operation: 'wizard_helper' },
$.post('ajax.render.php',
{ operation: 'wizard_helper', json_obj: this.ToJSON() },
function(html){
$('body').append(html);
//console.log('data received:', oWizardHelper);