Posts by Alessandra_ • 50 points
7 posts
-
1
votes1
answer625
viewsQ: How to use CASE in a Where clause
Hello, I have the following script situation: SELECT * FROM Formulario WHERE DataInclusao = '2019-10-28 08:19:54.000' AND chave = 'XXXXXXX' AND Id = 2 This table has a column called Productoid, in…
-
0
votes1
answer369
viewsA: Problem using toFixed to round value
Doing other searches, I was able to solve the problem using Math.round() For the rounding problem due to inaccurate floating point arithmetic, it was necessary to use the function as follows…
javascriptanswered Alessandra_ 50 -
1
votes1
answer369
viewsQ: Problem using toFixed to round value
I’m using the function toFixed() javascript to display values to two decimal places (toFixed(2) to display 2 digits after decimal point). The problem occurs that I have two situations where the…
javascriptasked Alessandra_ 50 -
0
votes0
answers474
viewsQ: Problem to view report using Crystal Reports in Visual Studio 2017
I’m having trouble seeing report information using Crystal Reports in Visual Studio 2017. When I open a RPT file it is visualized as follows: Since he should open the report with the components…
-
1
votes1
answer364
viewsA: Improve visual information on Chart.js
Try to add the beginAtZero in the scale configuration on yAxes, where it will make it clear that the scale starts at zero. scales: { yAxes: [{ ticks: { beginAtZero: true }, scaleLabel: { display:…
-
0
votes2
answers859
viewsA: Chart.JS does not appear in the modal bootstrap!
@Witnesstruth about your chart size problem, I had a similar problem and managed to solve including a style within the tag canvas <canvas id="myChart" style="height:40vh; width:…
modalanswered Alessandra_ 50 -
0
votes1
answer59
viewsQ: How to create a Listview with delete action
Hello, I would like to know how to create a listview in which you have the option to remove that item from the list. I am working with MVVM