mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-05-04 22:19:38 +00:00
fhemweb.js: fix PSC set for select (Forum #70813)
git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@14057 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
447b6c3a73
commit
6f6aa209bf
@ -656,7 +656,7 @@ FW_inlineModify() // Do not generate a new HTML page upon pressing modify
|
|||||||
}
|
}
|
||||||
newDef = $(this).closest("form").find("input:text").val();
|
newDef = $(this).closest("form").find("input:text").val();
|
||||||
if(newDef == undefined)
|
if(newDef == undefined)
|
||||||
newDef = $(this).closest("form").find("input[name^=val]").val();
|
newDef = $(this).closest("form").find("[name^=val]").val();
|
||||||
cmd = $(this).attr("name")+"="+cmd+" "+devName+" "+arg+" "+newDef;
|
cmd = $(this).attr("name")+"="+cmd+" "+devName+" "+arg+" "+newDef;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user