Skip to content

Commit

Permalink
SLTS-39 Add icon PointProperties on the form the data source edit
Browse files Browse the repository at this point in the history
  • Loading branch information
grzesiekb committed Oct 28, 2016
1 parent c2f7aed commit 43ca0d2
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions WebContent/WEB-INF/jsp/dataSourceEdit.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,17 @@
appendPointListColumnFunctions(pointListColumnHeaders, pointListColumnFunctions);
pointListColumnHeaders.push("");
pointListColumnFunctions.push(function(p) {
return writeImage("editImg"+ p.id, null, "icon_comp_edit", "<fmt:message key="common.edit"/>", "editPoint("+ p.id +")");
});
pointListColumnHeaders.push("");
pointListColumnFunctions.push(function(p) {
return writeImage("editImg"+ p.id, null, "icon_ds_edit", "<fmt:message key="common.edit"/>", "window.location='data_point_edit.shtm?dpid="+ p.id +"'");
});
var headers = $("pointListHeaders");
var td;
for (var i=0; i<pointListColumnHeaders.length; i++) {
Expand Down

0 comments on commit 43ca0d2

Please sign in to comment.