EasyUI Forum

General Category => EasyUI for jQuery => Topic started by: devnull on October 10, 2012, 05:48:42 AM



Title: Form type:'POST'
Post by: devnull on October 10, 2012, 05:48:42 AM
I have tried setting the form method to POST, however it seems to have no effect:
Code:
	$('#'+fid).form('submit',{  
url:"xxx.php",
type:'POST'
});


Title: Re: Form type:'POST'
Post by: stworthy on October 10, 2012, 04:02:05 PM
The type property is not supported now. Please add method=post to your form markup.

Code:
$('#'+fid).attr('method','post');