Guest User

Untitled

a guest
Oct 19th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. <div class="row">
  2. <div class="col-md-5">
  3. Do you have other locations?
  4. </div>
  5. <div class="col-md-2">
  6. <asp:RadioButtonList ID="RBL126" runat="server"
  7. SelectedValue='<%# Bind("OtherAddresses") %>' >
  8. <asp:ListItem Value="True"
  9. onchange='rblShow("otherlocations");'> Yes
  10. </asp:ListItem>
  11. <asp:ListItem Value="False"
  12. onchange='rblHide("otherlocations");'> No
  13. </asp:ListItem>
  14. <asp:ListItem Value="" Text="" style="display: none" />
  15. </asp:RadioButtonList>
  16. </div>
  17. </div>
  18. <div id="otherlocations" runat="server" class="row" style="display:none">
  19. <div class="col-md-12">Please supply a list of all locations</div>
  20. </div>
  21.  
  22. <div class="row">
  23. <div class="col-md-5">Do you have other locations?</div>
  24. <div class="col-md-2">
  25. <input id="RBL126_0" type="radio" name="RBL126"
  26. onclick='rblShow("otherLocations");' value="True"
  27. checked=@Model.OtherAddresses /><label
  28. for="RBL126_0">Yes</label>
  29. <input id="RBL126_1" type="radio" name="RBL126"
  30. onclick='rblHide("otherLocations");' value="False"
  31. checked=@Model.OtherAddresses /><label for="RBL126_1">
  32. No</label>
  33. </div>
  34. </div>
  35. <div id="otherLocations"
  36.  
  37. style="@((bool)Model.OtherAddresses?"display:inline":"display:none")">
  38. <div class="col-md-12">Please supply a list of all locations</div>
  39. </div>
Add Comment
Please, Sign In to add comment