mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-01-31 12:49:34 +00:00
a1beda9398
git-svn-id: https://svn.fhem.de/fhem/trunk@3922 2b470e98-0d58-463d-a4d8-8e2adae1ed80
32 lines
461 B
JavaScript
32 lines
461 B
JavaScript
|
|
function
|
|
FW_textFieldUpdateLine(d)
|
|
{
|
|
var name = "textField."+d[0];
|
|
//console.log("Cmd "+d);
|
|
|
|
el = document.getElementById(name);
|
|
|
|
if(el) {
|
|
el.value = d[1];
|
|
}
|
|
|
|
}
|
|
|
|
function
|
|
textField_setText(el,cmd)
|
|
{
|
|
var v = el.value;
|
|
//console.log("Got "+v);
|
|
//console.log("Cmd "+cmd);
|
|
|
|
var req = new XMLHttpRequest();
|
|
req.open("GET", cmd.replace('%',v), true);
|
|
req.send(null);
|
|
}
|
|
|
|
FW_widgets['textField'] = {
|
|
updateLine:FW_textFieldUpdateLine
|
|
};
|
|
|