Not signed in (Sign In)

Powered by Vanilla 1.1.8.

Welcome Guest!
Want to take part in these discussions? If you have an account, please sign in. If you don't have an account, register now.
    • CommentAuthorbeausmith
    • CommentTimeApr 20th 2009
     #1

    What version of jQuery is included with Uni-Form v1.3?

    And further curious just want to make sure that it is compatible with the most recent versions of jQuery.

    Thanks for the awesome framework!

  1.  #2

    Currentlt Uni-Form does not function with the newest jQuery since the guy who maintained that part of the project is no longer contributing (actually for a while now), so I’m shipping it with an older version of jquery that does work. Any help here is appreciated.

    • CommentAuthorwongo888
    • CommentTimeAug 31st 2009
     #3

    I managed to get the jQuery UI Datepicker 1.7.2 to work with Uni-Form. The jQuery version I’m using is 1.3.2 I think. My problem was that UForm sets z-index to 1 and jQuery was putting the datepicker at z-index 0 and it was displaying behind the form. I set the jQuery picker to open at a higher z-index and now it seems to work.

    <script type=“text/javascript”>
    $(document).ready(function(){
    $(”#id_starts”).datepicker();
    $(”#id_expires”).datepicker();
    });
    </script>

    <style>
    /* Fix uniForm set to z-index 1, datepicker needs to be on top */
    .ui-datepicker { z-index:1000 }
    </style>