Drop down list of all device names for input
-
What is an unbalanced tags?
<head> <!-- Server side query for points with given device name, and server side sort --> <ma-point-query query="{deviceName:deviceName}" sort="'name'" points="points"></ma-point-query> <ma-get-point-value points="points"></ma-get-point-value> </head> <div flex layout="row" layout-align="space-between" layout-padding layout-fill layout-wrap> <md-card flex="45" flex-xs="100" class="cardcolor"> <md-card-content> <md-input-container> <!-- <label>Choose a data source</label> <ma-data-source-list ng-model="myDataSource"></ma-data-source-list> --> </md-input-container> </md-card-content> </md-card> <md-card flex="45" flex-xs="100" class="cardcolor"> <md-card-content> <div layout="column"> <md-input-container> <label>Device names for selected data source</label> <ma-device-name-list ng-model="deviceName"></ma-device-name-list> </md-input-container> <h2>All points for device:</h2> <div ng-repeat="pt in points"> <label>{{pt.name}}: </label> {{pt.renderedValue}} </div> </div> </md-card-content> </md-card> </div>
-
There's a couple ways to have unbalanced tags, either with something like this occurring:
<b><i></b></i>
or something like this...
<div> My unclosed div! <div> My closed div! </div>
The issue I notice in the HTML you just posted was that you do not have a <body> section. I would presume everything after your </head> should be in the <body>...</body> tags. http://www.w3schools.com/tags/tag_body.asp
-
I fixed the body tags and refreshed the page.
I am getting this error in our Rest Errors
Oct 28, 2016 2:58 PM 404 Not Found GET /rest/v1/device-names
-
Check your log file.
Tryhttp://ip:port/rest/v1/device-names
in your browser's URL.
Check your env.properties file for rest.enabled=true
Use swagger to test the endpoint.
Check to ensure you're using a short dash (hyphen, lower case underscore) instead of a long dash or a medium dash in the URL. -
my rest.enabled is true.
when I tried the url you gave me. I got htis errorHTTP ERROR 403
Problem accessing /rest/v1/device-names. Reason:
Access Denied
-
You were not logged in.
-
The funny thing is this isnt even working on the example page. I can get it to see my data sources, but not the devices.
-
What version is your mangoApi module? I suspect you have an old version installed.
-
1.1.7
-
@atkins-chrisw
There's the problem, you will need v1.1.8 for the device name REST endpoints. Problem is we haven't released this into the store, sorry for the mixup! I will ensure v1.1.8 is released today. -
@atkins-chrisw
v1.1.8 has been released to the store.