VRFS-2329 changed radio button on RSVP cancel dialog to fix Qt bug

This commit is contained in:
Brian Smith 2014-10-14 00:00:02 -04:00
parent ab66504532
commit 9e7dc1f354
3 changed files with 25 additions and 5 deletions

View File

@ -99,6 +99,12 @@
$dialog = $('[layout-id="' + dialogId + '"]');
$("#rsvp-cancel-dialog").iCheck({
checkboxClass: 'icheckbox_minimal',
radioClass: 'iradio_minimal',
inheritClass: true
});
events();
}

View File

@ -60,4 +60,13 @@
padding:5px;
margin-bottom:32px; // to ensure buttons don't overlap
}
ul#cancel-rsvp-container {
margin-left: 0px;
list-style: none;
li {
margin-bottom: 10px;
}
}
}

View File

@ -9,11 +9,16 @@
.schedule-recurrence
.part
.error{:style => 'display:none'}
%input{:type => 'radio', :name => 'cancel', :value => 'yes', :checked => true} Cancel RSVP just for this one session
%br
%input{:type => 'radio', :name => 'cancel', :value => 'all'} Cancel RSVP for all future sessions
%br
.icheckbuttons
%ul{:id => 'cancel-rsvp-container'}
%li
%input{:type => 'radio', :id => 'cancel-single-session', :name => 'cancel', :value => 'yes', :checked => true}
%label{:for => 'cancel-single-session', :class => 'radio-text'} Cancel RSVP just for this one session
.clearall
%li
%input{:type => 'radio', :id => 'cancel-all-sessions', :name => 'cancel', :value => 'all'}
%label{:for => 'cancel-all-sessions', :class => 'radio-text'} Cancel RSVP for all future sessions
.clearall
.cancel-instructions Enter a message to the other musicians in the session (optional):
%textarea.txtComment{id: 'txtComment', rows: '2', placeholder: 'Enter a comment...'}
.buttons