-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquery.html
More file actions
34 lines (29 loc) · 964 Bytes
/
query.html
File metadata and controls
34 lines (29 loc) · 964 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<script type="text/javascript">
RED.nodes.registerType('griddb-query',{
category: 'function',
color: '#a6bbcf',
defaults: {
name: {value:""},
tql: {value:"select *"},
},
inputs:1,
outputs:1,
icon: "file.png",
label: function() {
return this.name||"griddb-query";
}
});
</script>
<script type="text/html" data-template-name="griddb-query">
<div class="form-row">
<label for="node-input-name"><i class="icon-tag"></i> Container</label>
<input type="text" id="node-input-name" placeholder="Container ">
</div>
<div class="form-row">
<label for="node-input-columnlist"><i class="icon-tag"></i> Query</label>
<input type="text" id="node-input-tql" placeholder="select *">
</div>
</script>
<script type="text/html" data-help-name="griddb-query">
<p>Write Data to a GridDB Container</p>
</script>