Posts by Silvio Yousseff Oliveira • 41 points
3 posts
-
2
votes1
answer574
viewsQ: Add Maven to a Web Application Project
Good morning, I am using a Web Application Project, to be able to use the Google App Engine. I wish I could download the . jar and its dependencies using Maven, someone knows how to add Maven to my…
-
1
votes2
answers193
viewsA: Date Picker opens itself when it changes neighbor input
I managed to sort it out like this: $( ".dtpBloqueio" ).datepicker('destroy'); and then I created again the datepicker: $(".dtpBloqueio").datepicker( { numberOfMonths: 2, dateFormat: 'dd/mm/yy',…
-
1
votes2
answers193
viewsQ: Date Picker opens itself when it changes neighbor input
Good morning, I have the following code: var maxDate = new Date(); maxDate.setDate( maxDate.getDate() + 364); $(".dtpBloqueio").datepicker( { numberOfMonths: 2, dateFormat: 'dd/mm/yy', maxDate:…