jQWidgets Forums

jQuery UI Widgets Forums Editors DateTimeInput Mobile DateTimeInput Grid problem

This topic contains 6 replies, has 2 voices, and was last updated by  FernandoCastro 9 years, 2 months ago.

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
  • Mobile DateTimeInput Grid problem #80328

    FernandoCastro
    Participant

    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

    Mobile DateTimeInput Grid problem #80338

    Peter Stoev
    Keymaster

    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 Stoev

    jQWidgets Team
    http://www.jqwidgets.com

    Mobile DateTimeInput Grid problem #80347

    FernandoCastro
    Participant

    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

    Mobile DateTimeInput Grid problem #80358

    Peter Stoev
    Keymaster

    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 Stoev

    jQWidgets Team
    http://www.jqwidgets.com

    Mobile DateTimeInput Grid problem #80360

    FernandoCastro
    Participant

    Hi 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

    Mobile DateTimeInput Grid problem #80361

    Peter Stoev
    Keymaster

    Hi Fernando Castro,

    Calling servlet is not a function of our product. Unfortunately, I cannot help with this one.

    Best Regards,
    Peter Stoev

    jQWidgets Team
    http://www.jqwidgets.com

    Mobile DateTimeInput Grid problem #80362

    FernandoCastro
    Participant

    ok Peter,

    thanks any way for your help 🙂

Viewing 7 posts - 1 through 7 (of 7 total)

You must be logged in to reply to this topic.