Posts by Joyce SD • 107 points
18 posts
-
0
votes1
answer678
viewsQ: How to print PDF’S with python by checking if the print was successful?
Is there any way to implement a python printing routine where it is possible to verify that the file has been printed successfully? I’ve tried using java with PDFBOX, but I couldn’t find a way to do…
-
0
votes0
answers42
viewsQ: set value by function Success ajax jquery
In the Success function I am not able to set a value of a div with the content of the date variable $(document).on("click", ".js-busca-previsao-chegada", function(event) { event.preventDefault();…
-
1
votes1
answer103
viewsQ: Combox check/clear checkbox
I have this code that a button marks and unchecks a checkbox http://jsfiddle.net/H544C/1/ more instead of the button in my case would be a combobox that marks/unchecks checkbox Could someone help…
-
0
votes2
answers370
viewsA: Javascript error - Datatables
var table = $('#js-table-lista-cliente-mes').DataTable({ "sDom": '<"search-box"r>ltip', "lengthChange": false, "language": { …
-
0
votes2
answers370
viewsQ: Javascript error - Datatables
Hello I already have a code that works on the dataTables on a page, so I took the template and the only changes I made was rename the js , rename function $() and . column(I placed the column…
-
0
votes1
answer39
viewsA: selectize js is behind the input
failed to add the css <link rel="stylesheet" th:href="@{/css/selectize.css}" /> <link rel="stylesheet" th:href="@{/css/selectize.bootstrap3.css}" /> after adding them, it worked. Obs:…
-
0
votes1
answer39
viewsQ: selectize js is behind the input
I’m using selectize and I’m having a problem imput is behind my table and the states only the first is on the white background the others are transparent someone knows how I can solve this? Follow…
-
0
votes2
answers64
viewsA: View Image in Javascript
I was able to place the images instead of the code using only javascript follows the resolution of the problem, because if someone is going through something similar can solve.…
javascriptanswered Joyce SD 107 -
0
votes1
answer108
viewsQ: Thymeleaf hide button
I have a single modal which I call in two pages. I want the button ALTERAR CLIENTE appears in the modal of page "A" and on page "B" this button disappears. Like I said it’s the same modal for two…
-
0
votes2
answers64
viewsQ: View Image in Javascript
I have table made in Javascript, follow the image below: Follow the Javascript code (Code is working perfectly): $(".js-tbody-historico-cliente").on("change", function() { var codigo_cliente =…
javascriptasked Joyce SD 107 -
1
votes3
answers11376
viewsA: How to return the first and last day of the current month in Javascript?
As I wanted to know only the last working day of the month I used the var date = new Date(); var ultimoDia = new Date(date.getFullYear(), date.getMonth() + 1, 0); My JS code looks like this:…
-
2
votes1
answer677
viewsA: HTML - THYMELEAF - pass parameter
I leave my answer here : <form method="GET" th:action="@{/acompanhamentoprimeiropedido}"> <input class="form-control" name="parametroBuscaPrimeiroPedido" /> <button type="submit"…
-
1
votes1
answer677
viewsQ: HTML - THYMELEAF - pass parameter
I created a parameter in Procedurecallerrepository and Procedurecallerrepositoryimpl So far everything ok my error is in html and I don’t know where I’m going wrong (I’m sorry if it’s something…
-
0
votes0
answers71
viewsQ: Datatables - a single search field for multiple tables
I have a problem that is: I have a single table that repeats itself every day (all have the same columns) what differentiates is the day and the information of the day. I would like a single search…
-
2
votes0
answers59
viewsQ: Spring JPA - Procedure call with sqlserver dialect
Hello, I have the following configuration in my application file.properties: spring.datasource.driverClassName=com.microsoft.sqlserver.jdbc.SQLServerDriver spring.jpa.hibernate.dialect=…
-
2
votes2
answers594
viewsA: Thymeleaf - Spring boot - Empty validation
I resolved with: ${#strings.isEmpty(name)} found the answer on the link: http://thymeleaf.org/doc/tutorials/2.1/usingthymeleaf.html#strings…
-
0
votes2
answers594
viewsQ: Thymeleaf - Spring boot - Empty validation
I have this code that already works: <span class="label" th:classappend="${usuario.ativo ? 'label-success' : 'label-danger'}"> </span></td> but now I want the following: <span…
-
3
votes2
answers160
viewsQ: Annotation @Scheduled Spring check environment
I have a controller annotated with @Scheduled but when the test environment is active it also runs. It is possible to check the environment in which application is running so that the method is run…