Guest User

Untitled

a guest
Mar 20th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. @using (Ajax.BeginForm("ListProductInRangeAjax", "Product", ajaxOptions, new { @class = "form-inline", style = "margin-bottom: 20px", id = "filter-form" }))
  2. {
  3. @*<div class="form-group col-md-5">
  4. <label for="minPrice">Min price:</label>
  5. <input type="number" step="0.01" name="minPrice" class="form-control" id="minPrice" />
  6. </div>
  7.  
  8. <div class="form-group col-md-5">
  9. <label for="maxPrice">Max price:</label>
  10. <input type="number" step="0.01" name="maxPrice" class="form-control" id="maxPrice" />
  11. </div>*@
  12. <input type="hidden" name="minPrice" value="" id="minPrice" />
  13. <input type="hidden" name="maxPrice" value="" id="maxPrice" />
  14.  
  15. <div class="form-group col-md-3">
  16. <label for="range">Price range: </label>
  17. <input type="text" id="range" readonly style="border: 0px; font-weight: bold" />
  18. </div>
  19.  
  20. <div class="form-group col-md-7">
  21. <div id="slider-range"></div>
  22. </div>
  23.  
  24. <input type="submit" value="Filter!" class="btn btn-primary" />
  25. }
Add Comment
Please, Sign In to add comment