Fixed issue with related set action buttons.

This commit is contained in:
chouseknecht
2013-10-07 17:21:48 -04:00
parent fc8b77823d
commit ac7f4af94d
3 changed files with 4 additions and 6 deletions

View File

@@ -1522,9 +1522,9 @@ angular.module('FormGenerator', ['GeneratorHelpers', 'ngCookies'])
html += "<button type=\"button\" class=\"btn btn-xs";
html += (action['class']) ? " " + action['class'] : "";
html += "\" ";
html += "id=\"row" + action + "_btn\" ";
html += "id=\"row" + act + "_btn\" ";
html += this.attr(action,'ngClick');
html += this.attr(action, 'ngShow');
html += (action.ngShow) ? this.attr(action, 'ngShow') : "";
html += (action.awToolTip) ? this.attr(action,'awToolTip') : "";
html += (action.awToolTip) ? "data-placement=\"top\" " : "";
html += ">" + this.icon(action.icon);