Aggiunta selezione tramite ID per funzione input
This commit is contained in:
parent
a28ffe5b57
commit
97bcbed521
4
add.php
4
add.php
|
@ -86,9 +86,9 @@ $(document).ready(function(){
|
|||
id_plugin: "'.$id_plugin.'",
|
||||
}).then(function(response) {
|
||||
// Selezione automatica nuovo valore per il select
|
||||
var select = $("#'.get('select').'");
|
||||
var select = input("'.get('select').'", 1);
|
||||
if (select) {
|
||||
select.selectSetNew(response.id, response.text, response.data);
|
||||
select.getElement().selectSetNew(response.id, response.text, response.data);
|
||||
//select.change();
|
||||
}
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
* @param {string|jQuery|HTMLElement} name
|
||||
* @returns {Input|*}
|
||||
*/
|
||||
function input(name) {
|
||||
function input(name, use_id) {
|
||||
let element;
|
||||
|
||||
// Selezione tramite jQuery
|
||||
|
@ -38,6 +38,11 @@ function input(name) {
|
|||
element = $(name);
|
||||
}
|
||||
|
||||
// Selezione tramite ID
|
||||
else if (use_id !== undefined) {
|
||||
element = $("#" + name ).last();
|
||||
}
|
||||
|
||||
// Selezione per nome
|
||||
else {
|
||||
element = $("[name='" + name + "']").last();
|
||||
|
|
Loading…
Reference in New Issue