Advertisement
Guest User

Untitled

a guest
May 30th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. @Html.BeginForm(){
  2.  
  3. <label>Select</label>
  4. <div class="btn-group btn-group-justified" data-toggle="buttons">
  5. <label class="btn btn-default active">
  6. <input type="radio" name="saleType" id="sellItem" autocomplete="off"> <i class="fa fa-suitcase"></i> Item
  7. </label>
  8. <label class="btn btn-default">
  9. <input type="radio" name="saleType" id="sellCoin" autocomplete="off" > <i class="fa fa-database"></i> Moeda
  10. </label>
  11. </div>
  12.  
  13. <div> </div> //show some inputs if the radiobutton sellItem is clicked
  14.  
  15. <div> </div> //show some inputs if the radiobutton sellCoin is clicked
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement