Skip to content

Commit 5404003

Browse files
author
terrypacker
committed
294: Not able to check "Settable Override" on a Simple Point on a
Graphic view Task-Url: http://github.com/infiniteautomation/ma-core-public/issues/issue/294
1 parent a1cba75 commit 5404003

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

Graphical views/RELEASE-NOTES

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
*Version 1.5.1*
2+
* Fixed bug where 'Settable override' checkbox was always disabled for Simple Point components.
3+
14
*Version 1.5.0*
25
* Upgraded to work with core version 2.5.x
36

Graphical views/module.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=graphicalViews
2-
version=1.5.0
2+
version=1.5.1
33
coreVersion=2.5
44
description=Adds the ability to create graphical views of points using with a drag and drop interface.
55
descriptionKey=graphicalViews.description

Graphical views/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>com.infiniteautomation.mango</groupId>
44
<artifactId>gviews</artifactId>
5-
<version>1.5.0</version>
5+
<version>1.5.1</version>
66
<name>Graphical Views Module</name>
77
<build>
88
<directory>maven-target</directory>

Graphical views/web/include/settingsEditor.jsp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,8 @@
130130
};
131131
132132
this.pointSelectChanged = function() {
133-
var point = getElement(settingsEditor.pointList, $get("settingsPointList"));
133+
//var point = getElement(settingsEditor.pointList, $get("settingsPointList"));
134+
var point = getElement(settingsEditor.pointList, pointFilteringSelect.get('value'));
134135
if (!point || !point.settable) {
135136
$set("settingsSettable", false);
136137
$("settingsSettable").disabled = true;

0 commit comments

Comments
 (0)