Hi
I am using Input fields as below .. i am not able to see poNumber attribute value passing to server where as able to retrieve all other field data.
<form id=’createOrderForm’ enctype=”multipart/form-data”>
………
<input id=’poNumber’>
…………..
</form>
$(“#poNumber”).jqxInput({width: ‘125px’, height: ’20px’ , theme:’web’});
$.ajax({
cache: false,
url: ‘/dataServlet?action=CreateOrder’,
data: createOrderForm.serialize(),
type: “POST”,
success: function (data, status, xhr) {
alert(‘success create order’);
},
error: function (jqXHR, textStatus, errorThrown) {
alert(errorThrown + ” / Error while creating order : ” + rowid[m]);
}
});
Thanks