i have grails application. i use javascript files with this project.
(I use javascript for calender)
problem:
this calender works fine on my pc, but when i put my project on the server this calender doesn’t work.
What can i do to keep this calender works on the server.
Note: operating system of my Pc and af server is linus ubuntu.
<g:javascript library="application"/>
<script src="/tandium.com/js/jquery-1.4.2.min.js" type="text/javascript"></script>
<script src="/tandium.com/js/jquery-ui-1.8.4.custom.min.js" type="text/javascript"></script>
<script src="/tandium.com/js/jquery.ui.datetimepicker.js" type="text/javascript"></script>
<script type="text/javascript" language="javascript1.2">
<script type="text/javascript">
$(document).ready(function() {
$('.datetime').datetimepicker({dateFormat: "yyyy-mm-dd HH:MM:ss"});
});
</script>
This calender works when user click on a textbox, calender appears, user then choose a date, to appear in the textbox
Right, now you have posted some code, I think I can see the issue..
You have hard-coded your context into your javascript links
Can you try using the grails code to get a link like so:
That should fix it… (you would have been getting 404 errors, and any javascript console would have shown you those files as missing)
Also, the line:
Has an extra
.2">on the end of it (but that might be a cut/paste error posting here)