Posts by Etobdc • 48 points
11 posts
-
0
votes1
answer81
viewsQ: How to sort interconnected events with Jquery?
I am developing a Web System that has a page that can contain 4 Script blocks. I wrote a Script that can be found in one of these blocks, but I don’t know which one, it is manipulated by the…
-
0
votes1
answer185
viewsA: JSON Search for data from specific pages
I think we need to pass the ID as parameter in the javascript of the profile page.html. In this part of the profile API you are making a GET to catch the id and get the staff with this id. ... $id =…
-
0
votes3
answers6042
viewsA: How to limit the size of Body to be centered on the Css screen
I believe that limiting the size of Body itself is not a good practice, however, you can create a class to center the content. .container { position: relative; margin-left: auto; margin-right: auto;…
-
0
votes2
answers579
viewsA: How to make Curl between containers?
I managed to reach the following solution: You must link the containers in Docker-Compose Using the links: container name if you are going to upload the containers in the same Docker-Compose. Using…
-
0
votes2
answers579
viewsQ: How to make Curl between containers?
I started using Docker a short time ago, probably why I got stuck in this problem. I have a API and a Front who keeps making requests via Curl for her. But when I put these projects on Docker and…
-
2
votes1
answer82
viewsQ: Create folders in Kcfinder
Is there any way/configuration to create folders by Kcfinder in his uploads directory? Ex: The default directory is /images, inside it I would like to create other folders by Kcfinder itself, but I…
-
1
votes2
answers210
viewsA: Countdown incorrect date
You are picking up Everything in the variable Units, causing the week and month to be added up as well. Use the variable Units as follows: var units = countdown.DAYS | countdown.HOURS |…
-
0
votes1
answer486
viewsA: How do I make the Datepicker refresh work?
I could not use the refresh method in my datepicker, so I tried to find an alternative measure.. It’s not the right way, but it solved my problem. onSelect: function (dateText, inst) { if…
-
0
votes1
answer486
viewsQ: How do I make the Datepicker refresh work?
First I will talk about how this datepiker works, it has to follow several rules, which makes it difficult to create the code. I can use only one datepicker for the selection of dates, both input…
-
0
votes2
answers1133
viewsA: How to set maxDate on datepicker to seven days after the selected date?
I kept making changes to the codes until I got the following result: $(".datepicker_reservas").datepicker({ minDate: 0, numberOfMonths: [1,4], beforeShowDay: function(date) { var date1 =…
-
0
votes2
answers1133
viewsQ: How to set maxDate on datepicker to seven days after the selected date?
When a date is selected, the user should be able to select another date within one week after the date he selected. Here’s the code I’m using: $(".datepicker_reservas").datepicker({ minDate: 0,…