Merge branch 'master' of https://github.com/devcode-it/openstamanager
This commit is contained in:
commit
1c596a4cf3
2
add.php
2
add.php
|
@ -86,7 +86,7 @@ $(document).ready(function(){
|
||||||
id_plugin: "'.$id_plugin.'",
|
id_plugin: "'.$id_plugin.'",
|
||||||
}).then(function(response) {
|
}).then(function(response) {
|
||||||
// Selezione automatica nuovo valore per il select
|
// Selezione automatica nuovo valore per il select
|
||||||
var select = input($("#'.get('select').'"));
|
var select = input("#'.get('select').'");
|
||||||
if (select) {
|
if (select) {
|
||||||
select.getElement().selectSetNew(response.id, response.text, response.data);
|
select.getElement().selectSetNew(response.id, response.text, response.data);
|
||||||
//select.change();
|
//select.change();
|
||||||
|
|
|
@ -38,6 +38,11 @@ function input(name) {
|
||||||
element = $(name);
|
element = $(name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Selezione tramite ID
|
||||||
|
else if (name.substr(0,1) == "#") {
|
||||||
|
element = $(name).last();
|
||||||
|
}
|
||||||
|
|
||||||
// Selezione per nome
|
// Selezione per nome
|
||||||
else {
|
else {
|
||||||
element = $("[name='" + name + "']").last();
|
element = $("[name='" + name + "']").last();
|
||||||
|
|
Loading…
Reference in New Issue