jQuery UI Widgets › Forums › Editors › DateTimeInput › Mobile DateTimeInput Grid problem
Tagged: datatime, date picker, date-time, jquery datetime
This topic contains 6 replies, has 2 voices, and was last updated by FernandoCastro 9 years, 4 months ago.
-
Author
-
Hi,
I manage to put working jqwidgets example jqxDateTimeInput for mobile.
I also put work a mobile grid showing my data from a postgresql.
What I can not achieve is to make my jqxDateTimeInput page call the grid mobile page.
I want to use jqxDateTimeInput to select date time interval and then show my data on a grid.
Can any one please post an example how jqxDateTimeInput “calls” mobile grid page??
Thank You very much
Fernando Castro
Hi Fernando Castro,
Your problem does not seem to be related to our widgets. You may probably use jQuery’s AJAX function to make page calls.
Best Regards,
Peter StoevjQWidgets Team
http://www.jqwidgets.comHi 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
Hi Fernando Castro,
Making AJAX call never opens another web page. It sends some data to another page. If you want to open a web page, use window.open.
Best Regards,
Peter StoevjQWidgets Team
http://www.jqwidgets.comHi Peter,
My problem is that I must call a servlet and my servlet should open another page…
Can you please just gave me a tip how to do it??
Tnhak you very much
Fernando
Hi Fernando Castro,
Calling servlet is not a function of our product. Unfortunately, I cannot help with this one.
Best Regards,
Peter StoevjQWidgets Team
http://www.jqwidgets.comok Peter,
thanks any way for your help 🙂
-
AuthorPosts
You must be logged in to reply to this topic.