Advertisement
Guest User

inline input select and button

a guest
Feb 21st, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.         <div class="form-group">
  2.             <label class="control-label">Category</label>
  3.             <div class="input-group">
  4.                 <select class="form-control" style="border-right-radius:0; -webkit-appearance: none;" ng-model="category" ng-change="categoryChanged(category)" ng-options="category as category.name group by category.type for category in categories track by category.id">
  5.                     <option value="">Select Category</option>
  6.                 </select>
  7.                 <span class="input-group-btn">
  8.                     <button class="btn btn-default" type="button" ng-click="newCategory()" >
  9.                         <span class="glyphicon glyphicon-plus"></span> New Category
  10.                 </button>
  11.                 </span>
  12.             </div>
  13.         </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement