2 #columnEditTable table tbody td {
6 #columnEditTable table tbody tr {
13 vertical-align:middle;
20 #columnEditTable .selectWrap{
25 #drilldownOption .selectWrap{
30 <div style="height: 700px;">
31 <div class="b2b-modal-header ng-scope in">
32 <h2 id="myModalLabel" modal-title="">Report Column - Edit </h2>
33 <div class="corner-button in">
34 <button type="button" class="close" aria-label="Close"
35 ng-click="$dismiss('cancel')"></button>
38 <div class="b2b-modal-body ng-scope ng-isolate-scope in" style="margin-bottom: -50px;">
39 <form name="workflowForm" class="css-form" novalidate>
41 <!-- <div class="form-row input-emphasized-field">
42 <label class="span12 input-emphasized" for="textinputID-2a">The selected report will be removed. Do you want to continue</label>
44 <div id="columnEditTable">
45 <table class="striped">
46 <!-- <caption><span>Table caption</span></caption> -->
57 <td class="colTableLeftColumn">Column ID:</td>
58 <td>{{columnEditData.colId}}</td>
62 <td class="colTableLeftColumn">Display Name:</td>
63 <td><input type="text" name="displayName" ng-model="colName.value" class="colTableInput"></td>
67 <td class="colTableLeftColumn">Display Width (px):</td>
68 <td><input type="text" name="displayWidth" ng-model="displayWidth" class="colTableInput"></td>
72 <td class="colTableLeftColumn">Display Alignment: </td>
74 <select name="displayAlignment" b2b-dropdown ng-model="selectedDisplayAlignment.value" placeholder-text="Select">
75 <option b2b-dropdown-list option-repeat="d in displayAlignmentOptions" value="{{d.value}}">{{d.text}}</option>
81 <td class="colTableLeftColumn">Display Header Alignment:</td>
83 <select name="displayHeaderAlignment" b2b-dropdown ng-model="selectedDisplayHeaderAlignment.value" placeholder-text="Select">
84 <option b2b-dropdown-list option-repeat="d in displayAlignmentOptions" value="{{d.value}}">{{d.text}}</option>
90 <td class="colTableLeftColumn">Sortable:</td>
92 <select name="sortable" b2b-dropdown ng-model="sortable.value" placeholder-text="Select">
93 <option b2b-dropdown-list option-repeat="d in ynOptions" value="{{d.value}}">{{d.text}}</option>
99 <td class="colTableLeftColumn">Visible:</td>
101 <select name="visible" b2b-dropdown ng-model="visible.value" placeholder-text="Select">
102 <option b2b-dropdown-list option-repeat="d in ynOptions" value="{{d.value}}">{{d.text}}</option>
108 <td class="colTableLeftColumn" style="width:350px;">Drill-down Link:</td>
109 <td id="drilldownOption">
110 <select name="drillDown" b2b-dropdown ng-model="selectedDrillDownReport.value" placeholder-text="Select">
111 <option b2b-dropdown-list option-repeat="d in drilldownReports" value="{{d.id}}">{{d.name}}</option>
120 <div class="b2b-modal-footer ng-scope ng-isolate-scope in">
121 <div class="cta-button-group in">
122 <button class="btn btn-alt btn-small" type="button" ng-click="save()">Save</button>
123 <button class="btn btn-alt btn-small" type="button"
124 ng-click="cancel()">Cancel</button>