Interesting questions
-
0
votes1
answer64
viewsThe 'value' should be a Valid Javascript Date instance. When using the Kendo ui’s date Picker
I’m trying to store a date in the bank through the component date Picker do Kendo ui it sends to my bank in this format: 2019-07-23T00:00:00 When I seek it from the bank and assign the value of the…
-
0
votes1
answer25
viewsMultisort array setting in PHP
opa, everything right?! I took this script to give continuity and has the select that brings me the database data. I’m having difficulty in doing Multisort. <?php $sql = mysql_query("select…
-
1
votes1
answer205
viewsHide/Show function does not work in IE 8
I have a Javascript that makes the function of grouping items in a table. For example I click on it and it expands bringing more values of this item. The problem is that in IE 8 does not work. In…
-
1
votes0
answers164
viewsRedux-thunk - Dispatch is not a Function
Hi, I’m having trouble with the redux-thunk. The console shows me the error saying that the dispatch is not set within my action, I tried to give a console.log of the arguments I get in the function…
reactasked 9 years, 5 months ago Eduardo Sganzerla 111 -
0
votes1
answer679
viewsLayout of many columns with datatable
I’m having a problem with datatable layout. I ended up creating a very extensive component (if I’m not mistaken, about 25 columns). I need to move one of these columns (year) according to the scroll…
-
1
votes1
answer211
viewsSelect with cast(Numeric as decimal) works, but view creation does not
Good morning to all! I currently work with postgresql and am doing a database migration, and need to create a view of my old database tables. Well, I need the numerical columns to be rounded 15.3…
-
0
votes1
answer130
viewsShow xml nfe tag value in datagridview columns
I have a little problem because I am reading the tags of an xml of Nfe, but I am not able to show in the columns of datagridview, my code is reading the correct tags, but do not notice anything in…
c#asked 7 years, 11 months ago Junior Guerreiro 617 -
4
votes2
answers1312
viewsHow to change the "Key" orientation of a Caption in ggplot?
how can I change the "key" of the caption below, so that it stays in the horizontal position, without changing the vertical lines of the chart. Also, how to leave the caption background with the…
-
0
votes1
answer141
viewsWEB API POST returns NULL
I am starting my studies with REST API and following an Internet tutorial I developed this API : Class : namespace SimpleRESTServer.Models { public class Person { public long ID { get; set; } public…
-
1
votes0
answers38
viewsDoubt Jboss Data Virtualization
Good evening, I am with a project where I have to consume tables generated in star format, for use of BI, the company bought a paid tool, but do not want to spend much on licenses. Therefore a user…
-
-1
votes1
answer33
viewsHow to add items from a column in SQL
I’d like to know how to add up those repeated items totaling their amount, I’m a beginner in SQL select Cardapio.Indicadorsetor, Service from Cardapio,…
-
1
votes3
answers260
viewsHow do I change the edge color of the input tag when selected
How do I change the checkbox border color when, for example option 1 is selected? Given my html code: <div class="opcao-de-entrega"> <p class="menu-opcoes-titulo"> Opções de entrega…
-
-1
votes1
answer75
viewsSimilar function to imagecreatefrom for . doc/docx and pdf in PHP
I have been looking for something similar to the imagecreatefrom function, for different documents of images, like doc and pdf, but it seems that there is something of the kind. Currently I upload…
-
-1
votes1
answer66
viewsMargin does not push content to the center
I recently asked a question because my margin top did not push my div down, following the example in the previous question I was able to solve, but now, using the same explanation of the previous…
cssasked 7 years, 2 months ago Fernando Munhoz 163 -
0
votes2
answers40
viewsRestore UL size when leaving focus!
I have the code down below: $("ul#menu > li").find("label").hover ( function(e) { e.stopPropagation(); let ul = $(this).parent().find("ul"); ul.css('display', e.type == "mouseenter" ? 'flex' :…
-
0
votes2
answers45
viewsEnable the button when fields are filled in
I’m wanting two things are: button enabled when fields are filled OR make mandatory in the fields (required), this I put the required in the input fields, when clicking Save/Continue, simply it…
-
1
votes2
answers987
viewsAngularjs | How to define a boot process for a controller?
I have an app full of Ajax that needs to get data via Webservice when the page loads. I’ve already initialized via ng-init but I don’t know how to have the controller "load" and execute the code…
-
1
votes2
answers577
viewshow to compare null/null value when type character in C
printf("\nteste -> "); scanf("%i", &opAjuda); /* opAhelp is to receive a whole, but I want to do an if here, saying that if a person writes a character instead of the whole one, it goes to…
-
1
votes1
answer174
viewsASP.NET - . aspx does not receive fields from the form post cross Omain
I have a form template that I want the customer to use to paste on your page. The form points to a. aspx page on my server. At the Page_load event in mine. aspx I want to get the fields filled form…
-
1
votes2
answers98
viewsHow to print a double value with zero in java?
I would like to print a double array value in Java, example: 8,00 <- I’d like the exit to be 08,00. How can I do that? public class Main { public static void main(String[] args) { double[]…
javaasked 4 years, 10 months ago LucasSolac 29