Powered by Vanilla 1.1.8.
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!
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.
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>
1 to 3 of 3