Questions tagged as 'jquery'

0
answers

How do you load different views in the index.html file, jquery?

I do not know if that way this question is asked. Currently I have an index.html file where I have all the css and all the js necessary for the design but I have a folder called "views" and basically so that the design, in these new files that a...
asked by 09.09.2018 / 02:33
0
answers

how to make the data of a web service repeat on an ajax call?

function RealizaConsultaNotificacion(operacion, pStringJson) { $.ajax({ timeout: 60000, url: 'http://74.208.98.86:7070/OriginacionWS', headers: { 'Accept': 'application/json', 'Content-Type': 'application/json' }...
asked by 10.09.2018 / 17:25
1
answer

field editable in bootstraptable with x-editable

I am using a bootstrap table from which I want to modify a record of the table, for this I am using a complement called X-Editable ( link ) but the editable field is an input and I need it to be a text because I have to introduce line breaks in...
asked by 10.09.2018 / 23:49
1
answer

Validate that CKEDITOR is not empty

I am using CKEDITOR 5 to replace some textarea that will be used to publish informative content on a website. The problem I have when validating that the CKEDITOR is not empty, I have tried several things but nothing that I can give with the sol...
asked by 07.09.2018 / 21:49
0
answers

Event when a multi-select is deselected

The problem is that I want to run an AJAX with the variable id_company, ONLY when an option of a multiselect is deselected, but I really do not know how to do it. Everything works fine until the condition is out of the event, that's where my AJA...
asked by 09.09.2018 / 17:36
0
answers

DatePicker in Vue.js

I'm using Vue.js to make an application, but only the structure. In other words, to assemble the forms, plugins and others, I prefer to do it with Javascript or, failing that, with something already pre-designed with Jquery. It is the case of...
asked by 06.09.2018 / 15:47
2
answers

How to get a photo taken from the Cam to keep it with MVC

I have a code that takes the picture activating the camera of the pc, encrypts it by passing it to base64: <video id="video"></video> <br> <button id="boton">Tomar foto</button> <p id="estado"&g...
asked by 05.09.2018 / 18:08
0
answers

How can I pass a controller variable to a jsp?

I have the following method in which I recover values, and I do an operation with these values, what I want to do is send my variable total to jsp, 'because I want to validate with that value, and for example, if my variable total...
asked by 10.09.2018 / 20:15
1
answer

Problem button click function jquery with datatables bootstrap

I have a table more or less like that. In the delete button I have a class that I use to delete the record from ajax. The code of the table in a simplified way is the following: <table cellpadding="0" cellspacing="0" border="0" class=...
asked by 04.09.2018 / 21:00
1
answer

How can I make the chosen value in a combo go to the select?

function ComboAnio(){ var meses = new Array("01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"); var d = new Date(); var n = d.getMonth(); var y = d.getFullYear(); var select = document.getElementById("sele...
asked by 05.09.2018 / 00:05