mirror of
https://github.com/node-red/node-red-nodes.git
synced 2023-10-10 13:36:58 +02:00
fixed bug with outputs not being set correctly after initial load
This commit is contained in:
parent
497f08bba9
commit
e72ced85e6
@ -111,34 +111,36 @@
|
||||
|
||||
<script type="text/javascript">
|
||||
RED.nodes.registerType('postgres',{
|
||||
category: 'storage-output',
|
||||
color:"rgb(148, 226, 252)",
|
||||
defaults: {
|
||||
postgresdb: { type:"postgresdb",required:true},
|
||||
name: {value:""},
|
||||
output: {value:false}
|
||||
},
|
||||
inputs:1,
|
||||
outputs:0,
|
||||
icon: "postgres.png",
|
||||
align: "right",
|
||||
label: function() {
|
||||
return this.name||(this.sqlquery?this.sqlquery:"postgres");
|
||||
},
|
||||
labelStyle: function() {
|
||||
return this.name?"node_label_italic":"";
|
||||
},
|
||||
oneditprepare: function() {
|
||||
|
||||
$( "#node-input-output" ).prop( "checked", this.output );
|
||||
$("#node-input-name").focus();
|
||||
|
||||
},
|
||||
oneditsave: function() {
|
||||
category: 'storage-output',
|
||||
color:"rgb(148, 226, 252)",
|
||||
defaults: {
|
||||
postgresdb: { type:"postgresdb",required:true},
|
||||
name: {value:""},
|
||||
output: {value:false},
|
||||
outputs: {value:0}
|
||||
},
|
||||
inputs: 1,
|
||||
outputs: 0,
|
||||
icon: "postgres.png",
|
||||
align: "right",
|
||||
label: function() {
|
||||
return this.name||(this.sqlquery?this.sqlquery:"postgres");
|
||||
},
|
||||
labelStyle: function() {
|
||||
return this.name?"node_label_italic":"";
|
||||
},
|
||||
oneditprepare: function() {
|
||||
|
||||
$( "#node-input-output" ).prop( "checked", this.output );
|
||||
$("#node-input-name").focus();
|
||||
|
||||
},
|
||||
oneditsave: function() {
|
||||
|
||||
var hasOutput = $( "#node-input-output" ).prop( "checked" );
|
||||
this.outputs = hasOutput ? 1: 0;
|
||||
|
||||
}
|
||||
});
|
||||
var hasOutput = $( "#node-input-output" ).prop( "checked" );
|
||||
this.outputs = hasOutput ? 1:0;
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
</script>
|
||||
|
Loading…
x
Reference in New Issue
Block a user