Guest User

Untitled

a guest
Jan 23rd, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. $('#show-action').click(function() {
  2. showDialog({
  3. title: 'Action',
  4. text: '<div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label getmdl-select">'+
  5. '<input type="text" value="" class="mdl-textfield__input" id="sample4" readonly>'+
  6. '<input type="hidden" value="" name="sample4">'+
  7. '<i class="mdl-icon-toggle__label material-icons">keyboard_arrow_down</i>'+
  8. '<label for="sample4" class="mdl-textfield__label">Country</label>'+
  9. '<ul for="sample4" class="mdl-menu mdl-menu--bottom-left mdl-js-menu">'+
  10. ' <li class="mdl-menu__item" data-val="DEU">Germany</li>'+
  11. ' <li class="mdl-menu__item" data-val="BLR">Belarus</li>'+
  12. ' <li class="mdl-menu__item" data-val="RUS">Russia</li>'+
  13. '</ul>'+
  14. '</div>',
  15. negative: {
  16. title: 'Nope'
  17. },
  18. positive: {
  19. title: 'Yay',
  20. onClick: function(e) {
  21. alert('Action performed!');
  22. }
  23. }
  24. });
  25. });
Add Comment
Please, Sign In to add comment