All Questions

1
answer

Notice to close app

I am working with an app on AndroidStudio. What code could I implement for when the back is called to leave the app to let me know if I want to leave it or not?     
asked on 10.04.2017 / 08:16
4
answers

Error in ES6: "is not a function"

How to call a method (from another) that are in the same class in NodeJS? class Usuario{ static foo(){ let a = this.bar(); } bar(){ return true; } } Usuario.foo(); I...
asked on 10.04.2017 / 20:36
2
answers

change the default home laravel

Someone knows how to change the welcome.balde.php that has the default laravel and change it to home.blade.php . I tried configuring it in the reoutes.php but I still get the welcome, do you have to make a configuration to run?...
asked on 11.04.2017 / 16:24
1
answer

Place cursor at the beginning of an input after event focus

I have a concern that I would like to share with you in order to find a solution. I am using React for the implementation of a project and I need in one of my forms that when performing the autofocus of one of its inputs which already has an...
asked on 11.04.2017 / 13:47
1
answer

Error while doing an SQL query

I have a small problem with a query, I am trying to add the amounts that exist in my table detalle_ventas, what I want to do is add the quantities that have the same product_id and the same expiration date. Example: id_producto | fecha_venc...
asked on 10.04.2017 / 12:52
3
answers

Someone knows why the Java IDE returns an error when I convert from String to GregorianCalendar

BufferedReader br = new BufferedReader (new InputStreamReader (System.in)); String fechaN; System.out.println("Introduce tu fecha de nacimiento en el siguiento formato dd/mm/aaaa"); try{ fechaN = br.readLine();...
asked on 11.04.2017 / 18:10
4
answers

SQL - query of minutes elapsed

I have the following query: SELECT BELNR_ID ,BELPOS_ID ,DocDate ,AUFTRAG ,APLATZ_ID ,CONVERT(VARCHAR(10), ANFZEIT, 103) AS 'Fecha Inicio' ,RIGHT(ANFZEIT, 7) AS 'Hora Inicio' ,CONVERT(VARCHAR(10), ENDZEIT, 103) AS 'F...
asked on 19.04.2017 / 14:27
1
answer

how to know how many words a String has in php?

Hello friend, I have a small PHP exercise in which I have to request the user's name and tell him how many words have his full name and that's it. but I do not constrict it I have this following code: $textosolicitado = print "var nombre=...
asked on 20.04.2017 / 00:19
2
answers

send select data by ajax

I have a form that when selecting a 'select' is sent automatically by AJAX, the call works well. Now when passing the variables of the form it says Notice: Undefined index: In the index.php file I have function enviar(theForm) { $.a...
asked on 30.09.2018 / 07:40
1
answer

Fix a table header in php

I have an html table and I want to fix the header but at the moment of doing it, I reduce the size of th and the entire table is unbalanced thead,tbody tr{ display:table; width:100%; table-layout:fixed; } thead {     position: fixed;     ...
asked on 02.10.2018 / 17:36