Hi Peter,
Thank you for your reply.
Yes I am using AJAX post function. Is that not suposed to work?
Here is my code (part of it on one attempt …)
$(“#search”).bind(‘click’, function () {
$.ajax({
type:”POST”,
url : ‘${pageContext.request.contextPath}/Mgrid.htm’,
data : $(‘#formname’).serialize(),
success : function(response) {
alert(response);
}
});
}
I know that it “calls” Mgrid.htm because I have a log but it does not open Mgrid.htm page in the browser.
(Mgrid.htm is just a copy of jqwidgets grid.htm in order to avoid other “noise”…)
Thank You Very much
Fernando Castro