node-red-contrib-ozmap
Version:
OZMap wrapper to ozmap-api. Helper to use OZMap API's
39 lines (35 loc) • 1.26 kB
HTML
<script type="text/javascript">
RED.nodes.registerType('getAllPropertiesWithClients', {
category: 'ozmap',
color: '#a6bbcf',
defaults: {
name: { value: 'getAllPropertiesWithClients' },
ozmapconnection: { value: '', type: 'ozmap-connection' },
},
inputs: 1,
outputs: 2,
icon: 'file.png',
label: function () {
return 'OZMap: ' + this.name;
},
});
</script>
<script type="text/html" data-template-name="getAllPropertiesWithClients">
<div class="form-row">
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
<input type="text" id="node-input-name" placeholder="Name" />
</div>
<div class="form-row">
<label for="node-input-ozmapconnection"><i class="fa fa-tag"></i> OZMap Connection</label>
<input type="text" id="node-input-ozmapconnection" placeholder="Name" />
</div>
<div class="form-row">
<br /><br />
<a style="color: blue" href="https://api.ozmap.com.br/#/Caixa/get_getAllPropertiesWithClientses" target="_blank">
https://api.ozmap.com.br/#/Caixa/get_getAllPropertiesWithClientses
</a>
</div>
</script>
<script type="text/html" data-help-name="getAllPropertiesWithClients">
<p>Get getAllPropertiesWithClients from ozmap</p>
</script>