PabloTorrecillas / IndiWebClient

Repositorio creado para realizar la aplicación web IndiWebClient
GNU General Public License v3.0
0 stars 0 forks source link

Buscar elementos numéricos escritos #10

Closed PabloTorrecillas closed 9 years ago

PabloTorrecillas commented 9 years ago

Intentar buscar los elementos numéricos de JQuery, los cuales puedan escribirse. Es decir, aparte del botón que muestre el subir y bajar de número, intentar hacer que se pueda escribir el número al que queremos llegar desde teclado.

Aparte de eso habrá que mostrar encima de la caja de los números (texto oculto): Format: [format, min, max, step] [Lo que me llegue del parseo]

PabloTorrecillas commented 9 years ago

Realizado: antiguaVentana.innerHTML += '

'+ nodes[i].getAttribute("label") + '<input type="number" id="numerics" min=' +nodes[i].getAttribute("min") + ' max = '+ nodes[i].getAttribute("max") + ' title="Format: [format, min, max, step], [' + nodes[i].getAttribute("format") + ", "+ nodes[i].getAttribute("min") + ", " + nodes[i].getAttribute("max") + ", " + nodes[i].getAttribute("step") +' ]">' + '
';