diff options
Diffstat (limited to 'portal/src/main/webapp/extsys/vim/vimView.html')
-rw-r--r-- | portal/src/main/webapp/extsys/vim/vimView.html | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/portal/src/main/webapp/extsys/vim/vimView.html b/portal/src/main/webapp/extsys/vim/vimView.html index 8e0e06d..0dce392 100644 --- a/portal/src/main/webapp/extsys/vim/vimView.html +++ b/portal/src/main/webapp/extsys/vim/vimView.html @@ -116,11 +116,14 @@ </div> <div class="form-group"> <label class="control-label col-sm-3"> - <span>Complex Name</span> + <span>Physical Location Id</span> <span class="required" aria-required="true">*</span> </label> <div class="col-sm-7"> - <input type="text" ms-duplex="currentElement['complexName']" name="complexName" class="form-control"/> + <select ms-duplex="currentElement['physicalLocationId']"> + <option value="null"></option> + <option ms-repeat="physicalLocationIds">{{el}}</option> + </select> <span class="help-block"></span> </div> </div> |