All Questions

2
answers

Define and obtain the current Locale of Configuration in Android N?

How can you assign a locale and get the locale current on Android N? Configuration conf = getResources().getConfiguration(); conf.locale = new Locale("es") // Deprecated String language = conf.locale.getDisplayName() //Deprecated...
asked on 16.09.2016 / 13:14
1
answer

Query database with SQLAlchemy

I am trying to apply a query to a table, using the ORM sqlalchemy in a database already created with mysql, with the following code: eng = create_engine("mysql+mysqldb://host='localhost', user='root', passwd='...',port='3307', database='Nomina...
asked on 08.08.2017 / 01:00
2
answers

How to insert data from a table by selecting data from another mysql table

I have the following code: if($_POST['id']=="id") { $nomb_idm=$_POST['nombre']; $n_idm=$_POST['id']; $nivel_ide=$_POST['nivel']; $pass_ide=$_POST['pass']; $correo_idm= $_POST['correo']; $usuario_ide= $_POST['usuario']; $idfto=$_POST['id...
asked on 11.08.2017 / 01:50
1
answer

Get IDS with Drag & Drop

I have this code that makes a drag & drop that I pulled from the Javascript page, it works fine. I just have a problem, I need the ID of the div where it fell. I did this but it does not work, I get undefinied the grid ID. function dragstar...
asked on 02.08.2017 / 18:15
1
answer

Change FullCalendar resources

I'm making a calendar, using the "timeline" view of FullCalendar . What I want to do is change the "resources" in a dynamic way, since I already have a view of Students and the Projects view, each with its corresponding events. I tried to do...
asked on 10.08.2017 / 15:19
3
answers

How to add the values of a multidimensional array in PHP

I would like to know if I have this array in PHP array (size=5) 94 => array (size=4) 0 => string '7' (length=1) 1 => string '7' (length=1) 2 => string '7' (length=1) 3 => string '7' (length=1) 95...
asked on 04.08.2017 / 21:38
1
answer

How to get cloud style under a Bootstrap Navbar

How could I get the following style in my navbar in bootstrap 3, referring to the cloud style? The design I want to obtain is the following: I have tried with IMG as an edge but I can not do it. .navbar-principal .img-logo {...
asked on 10.08.2017 / 20:28
1
answer

how to go through the next arrangement? in php

Array ( [0] => Array ( [0] => Array ( [estatus] => ok [mensaje] => Mensaje enviado [referencia] => 2017081504081721546 [numcelular] =>...
asked on 15.08.2017 / 23:07
2
answers

Enable input dependent on a chekbox

The modal shows data that is retrieved by a query and I am filling it with a for cycle. With several tests that I did I could get true or false which is the value of the checkbox but what does not change is the state of the input to enable or...
asked on 15.08.2017 / 20:44
2
answers

How to serialize / deserialize a node of type CDATA

The next class (of an xml) has several attributes and contains text. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.6.1055.0")] [System.SerializableAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] [Syste...
asked on 07.09.2017 / 17:20