2016-06-29 06:57:45 +00:00
|
|
|
<%
|
2023-10-10 14:49:16 +00:00
|
|
|
data = action_data
|
|
|
|
@seminar = data["seminar"]
|
|
|
|
@seminar_signup = data["seminar_signup"]
|
|
|
|
@time_now = data["time_now"]
|
2016-06-29 06:57:45 +00:00
|
|
|
@form_index = 0
|
2021-06-17 10:07:43 +00:00
|
|
|
if data["prefix_url"]
|
|
|
|
prefix_url = data["prefix_url"]
|
|
|
|
else
|
2021-06-18 06:51:12 +00:00
|
|
|
prefix_url = OrbitHelper.url_to_show(@seminar.to_param)
|
2021-06-17 10:07:43 +00:00
|
|
|
end
|
2023-01-11 09:44:40 +00:00
|
|
|
registration_is_open = @seminar.registration_status.present?
|
|
|
|
sign_up_not_yet = @seminar.signup_start_date && @time_now && @seminar.signup_start_date > @time_now
|
|
|
|
sign_up_overdue = @seminar.signup_end_date && @time_now && (@seminar.signup_end_date + 1.day <= @time_now)
|
2023-01-11 09:46:06 +00:00
|
|
|
signup_is_full = @seminar.signup_is_full?
|
2016-06-29 06:57:45 +00:00
|
|
|
%>
|
2023-10-10 02:14:57 +00:00
|
|
|
<style>
|
|
|
|
.error {
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
</style>
|
2023-01-11 09:44:40 +00:00
|
|
|
<% if !registration_is_open %>
|
|
|
|
|
|
|
|
<%= t('seminar.sign_up_not_open') %>
|
|
|
|
|
|
|
|
<% elsif sign_up_not_yet %>
|
|
|
|
|
|
|
|
<%= t('seminar.sign_up_not_yet') %>
|
|
|
|
|
|
|
|
<% elsif sign_up_overdue %>
|
|
|
|
|
|
|
|
<%= t('seminar.sign_up_overdue') %>
|
2023-01-11 09:46:06 +00:00
|
|
|
|
|
|
|
<% elsif signup_is_full %>
|
|
|
|
|
|
|
|
<%= t('seminar.sign_up_is_full') %>
|
|
|
|
|
2023-01-11 09:44:40 +00:00
|
|
|
<% else %>
|
2016-06-29 06:57:45 +00:00
|
|
|
<%#= stylesheet_link_tag "lib/main-forms" %>
|
|
|
|
<%= stylesheet_link_tag "basic/bootstrap-datetimepicker" %>
|
|
|
|
<%= javascript_include_tag "lib/bootstrap-datetimepicker" %>
|
|
|
|
<%= javascript_include_tag "lib/datetimepicker/date.time.picker.js" %>
|
|
|
|
<%= javascript_include_tag "lib/datetimepicker/datetimepicker.js" %>
|
2021-04-14 11:44:06 +00:00
|
|
|
<% notice = flash["notice"] || params[:notice] %>
|
2016-06-29 06:57:45 +00:00
|
|
|
<% flash.each do |key, msg| %>
|
2021-04-14 11:44:06 +00:00
|
|
|
<% next if key.to_s == "notice" %>
|
|
|
|
<%= content_tag :p, msg, :class => [key, "alert alert-error in fade"], :style => "color: red; font-weight: bold;" %>
|
|
|
|
<% end %>
|
|
|
|
<% if notice.present? %>
|
|
|
|
<%= content_tag :p, params[:notice], :class => ["notice alert alert-error in fade"], :style => "color: red; font-weight: bold;" %>
|
|
|
|
<script type="text/javascript">
|
|
|
|
window.alert("<%=notice%>");
|
|
|
|
</script>
|
2016-06-29 06:57:45 +00:00
|
|
|
<% end %>
|
2022-01-11 02:23:50 +00:00
|
|
|
<style type="text/css">
|
|
|
|
.checkbox input[type=checkbox], .checkbox-inline input[type=checkbox], .radio input[type=radio], .radio-inline input[type=radio] {
|
|
|
|
position: relative;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
</style>
|
2023-10-10 14:49:16 +00:00
|
|
|
<%= form_for @seminar_signup, url: (@seminar_signup.new_record? ? seminars_path : update_signup_form_seminars_path), html: {class: "content form-horizontal" , :id=>"new-seminar-signup", multipart: true} do |f| %>
|
2016-06-29 06:57:45 +00:00
|
|
|
<fieldset>
|
|
|
|
|
|
|
|
<!-- Title -->
|
|
|
|
<div class="form-group">
|
2023-10-10 02:14:57 +00:00
|
|
|
<label for="title" class="col-sm-2 control-label"><%#= t('seminar.title') %></label>
|
2016-06-29 06:57:45 +00:00
|
|
|
<div class="col-sm-10">
|
2023-10-10 02:14:57 +00:00
|
|
|
<h3><%= @seminar.title %></h3>
|
2016-06-29 06:57:45 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-06-26 03:56:02 +00:00
|
|
|
<% if !@seminar.signup_note.blank? %>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="note" class="col-sm-2 control-label"><%= t('seminar.note') %></label>
|
|
|
|
<div class="col-sm-10">
|
|
|
|
<%= @seminar.signup_note.html_safe %>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
2021-03-24 13:06:49 +00:00
|
|
|
<div>
|
|
|
|
<div class="col-sm-12" style="text-align: center;"> *(<%= t('seminar.required') %>) </div>
|
|
|
|
</div>
|
2019-11-26 15:52:52 +00:00
|
|
|
<% if @seminar.seminar_signup_field_sets.count != 0 %>
|
|
|
|
<% @seminar.seminar_signup_field_sets.each do |signup_field| %>
|
2023-10-10 14:49:16 +00:00
|
|
|
<% if !(signup_field.disabled) && signup_field.field_name != 'recaptcha' && signup_field.field_name != 'password' %>
|
2023-10-10 02:14:57 +00:00
|
|
|
<div class="form-group<%= (@seminar.registration_status[0] == 'G' && (signup_field.field_name == 'password' || signup_field.field_name == "status")) ? ' hide' : '' %>" id="<%= signup_field.field_name == 'password' ? 'registration_status' : '' %>">
|
2019-11-26 15:52:52 +00:00
|
|
|
<label for="<%= signup_field['name'][I18n.locale] %>" class="col-sm-2 control-label">
|
2021-03-24 13:06:49 +00:00
|
|
|
<% if !(['address','note'].include? signup_field.field_name) %>
|
2019-11-26 15:52:52 +00:00
|
|
|
*
|
2016-06-29 06:57:45 +00:00
|
|
|
<% end %>
|
2019-11-26 15:52:52 +00:00
|
|
|
<%= signup_field['name'][I18n.locale] %>
|
|
|
|
</label>
|
|
|
|
<% if signup_field.field_name == 'status' %>
|
2021-03-24 13:06:49 +00:00
|
|
|
<% status_translations = ['G','C'].map{|c| [c, t("seminar.registration_status_#{c}")] }.to_h %>
|
|
|
|
<% status_translations = {'G'=>'No','C'=>'Yes'} if (signup_field.name.values.select{|v| v.include?('?') || v.include?('是否')}.count != 0 rescue false) %>
|
2019-11-26 15:52:52 +00:00
|
|
|
<div class="col-sm-10">
|
|
|
|
<% if @seminar.registration_status.include?('G') %>
|
|
|
|
<label class="radio-inline">
|
2021-03-24 13:06:49 +00:00
|
|
|
<%= f.radio_button :status, 'G', :checked => true , :onclick => "$('#registration_status').addClass('hide');" %> <%= status_translations['G'] %>
|
2019-11-26 15:52:52 +00:00
|
|
|
</label>
|
|
|
|
<% end %>
|
|
|
|
<% if @seminar.registration_status.include?('C') %>
|
|
|
|
<label class="radio-inline">
|
2021-03-24 13:06:49 +00:00
|
|
|
<%= f.radio_button :status, 'C', :onclick => "$('#registration_status').removeClass('hide');", :checked => (@seminar.registration_status.count == 1 and @seminar.registration_status.include?('C') ? true : false) %> <%= status_translations['C'] %>
|
2019-11-26 15:52:52 +00:00
|
|
|
</label>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
<% elsif signup_field.field_name == 'unit' %>
|
|
|
|
<div class="col-sm-10">
|
2021-03-24 13:06:49 +00:00
|
|
|
<%= f.text_field 'unit', :class=>"input-medium form-control", :value => (@seminar_signup.send("unit_translations")[locale] rescue nil), :placeholder=> "#{signup_field.placeholder[I18n.locale]}", :required => true %>
|
2019-11-26 15:52:52 +00:00
|
|
|
</div>
|
|
|
|
<% elsif signup_field.field_name == 'address' %>
|
|
|
|
<div class="col-sm-10">
|
|
|
|
<div class="input-append">
|
|
|
|
<div class="tab-content">
|
|
|
|
<% @site_in_use_locales.each_with_index do |locale, i| %>
|
|
|
|
<div class="tab-pane fade <%= ( i == 0 ) ? "active in" : '' %>" id="address_<%= locale %>">
|
|
|
|
<%= f.fields_for "address_translations".to_sym do |f| %>
|
|
|
|
<%= f.text_field locale, :class=>"input-medium form-control", :value => (@seminar_signup.send("address_translations")[locale] rescue nil), :placeholder=> "#{signup_field.placeholder[I18n.locale]}" %>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
<div class="btn-group" data-toggle="buttons-radio">
|
|
|
|
<% @site_in_use_locales.each_with_index do |locale, i| %>
|
|
|
|
<a class="btn <%= ( i == 0 ) ? "active" : '' %>" href="#address_<%= locale %>" data-toggle="tab"><%= t(locale.to_s) %></a>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<% elsif signup_field.field_name == 'email' %>
|
|
|
|
<div class="col-sm-10">
|
2023-10-10 14:49:16 +00:00
|
|
|
<%= f.email_field :email, :class=>"input-medium form-control availibility", :placeholder=> signup_field.placeholder[I18n.locale], :required => true, :title => t("seminar_signup.email_check") %>
|
2023-10-10 02:14:57 +00:00
|
|
|
<div class="loader"></div>
|
2023-10-04 16:38:24 +00:00
|
|
|
</div>
|
|
|
|
<% elsif signup_field.field_name == 'password' %>
|
|
|
|
<div class="col-sm-10">
|
|
|
|
<%= f.password_field :password, :class=>"input-medium form-control availibility", :id=>signup_field['field_name'], :placeholder=> signup_field.placeholder[I18n.locale], :pattern => signup_field.validator, :title => t("seminar_signup.password_check") %>
|
2019-11-26 15:52:52 +00:00
|
|
|
</div>
|
|
|
|
<% elsif signup_field.field_name == 'note' %>
|
|
|
|
<div class="col-sm-10">
|
|
|
|
<div class="input-append">
|
|
|
|
<div class="tab-content">
|
|
|
|
<% @site_in_use_locales.each_with_index do |locale, i| %>
|
|
|
|
<div class="tab-pane fade <%= ( i == 0 ) ? "active in" : '' %>" id="note_<%= locale %>">
|
|
|
|
<%= f.fields_for "note_translations".to_sym do |f| %>
|
|
|
|
<%= f.text_area locale, rows: 5, :class=>"input-medium form-control", :value => (@seminar_signup.send("note_translations")[locale] rescue nil), :placeholder=> "#{signup_field.placeholder[I18n.locale]}" %>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
<div class="btn-group" data-toggle="buttons-radio">
|
|
|
|
<% @site_in_use_locales.each_with_index do |locale, i| %>
|
|
|
|
<a class="btn <%= ( i == 0 ) ? "active" : '' %>" href="#note_<%= locale %>" data-toggle="tab"><%= t(locale.to_s) %></a>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-10-10 14:49:16 +00:00
|
|
|
<% elsif signup_field.field_name == 'tel' %>
|
|
|
|
<div class="col-sm-10">
|
2023-10-11 00:47:59 +00:00
|
|
|
<%= f.text_field :tel, :class=>"input-medium form-control", :placeholder=> signup_field.placeholder[I18n.locale], :required => true, pattern: "[\\d\\+\\-\\(\\)]{10,13}", title: t("seminar.phone_hint") %>
|
2023-10-10 14:49:16 +00:00
|
|
|
<p>(<%= t("seminar.phone_hint") %>)</p>
|
|
|
|
</div>
|
2019-11-26 15:52:52 +00:00
|
|
|
<% else %>
|
|
|
|
<div class="col-sm-10">
|
2023-10-04 16:38:24 +00:00
|
|
|
<%= f.text_field signup_field['field_name'], :class=>"input-medium form-control", :id=>signup_field['field_name'], :placeholder=> signup_field.placeholder[I18n.locale], :required => true %>
|
2019-11-26 15:52:52 +00:00
|
|
|
</div>
|
2016-06-29 06:57:45 +00:00
|
|
|
<% end %>
|
|
|
|
</div>
|
2019-11-26 15:52:52 +00:00
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
<% else %>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="status" class="col-sm-2 control-label"><%= t('seminar.registration_status') %></label>
|
|
|
|
<div class="col-sm-10">
|
|
|
|
<% if @seminar.registration_status.include?('G') %>
|
|
|
|
<label class="radio-inline">
|
|
|
|
<%= f.radio_button :status, 'G', :checked => true , :onclick => "$('#registration_status').addClass('hide');" %> <%= t('seminar.registration_status_G') %>
|
|
|
|
</label>
|
|
|
|
<% end %>
|
|
|
|
<% if @seminar.registration_status.include?('C') %>
|
|
|
|
<label class="radio-inline">
|
|
|
|
<%= f.radio_button :status, 'C', :onclick => "$('#registration_status').removeClass('hide');", :checked => (@seminar.registration_status.count == 1 and @seminar.registration_status.include?('C') ? true : false) %> <%= t('seminar.registration_status_C') %>
|
|
|
|
</label>
|
|
|
|
<% end %>
|
2016-06-29 06:57:45 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2019-11-26 15:52:52 +00:00
|
|
|
|
|
|
|
<!-- Name to Last Name -->
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="name" class="col-sm-2 control-label">*<%= t('seminar_signup.name') %></label>
|
|
|
|
<div class="col-sm-10">
|
|
|
|
<%= f.text_field :name, :class=>"input-medium form-control", :id=>'name', :placeholder=> t('seminar_signup.name'), :required => true %>
|
2016-06-29 06:57:45 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2019-11-26 15:52:52 +00:00
|
|
|
|
|
|
|
<!-- Tel to First Name -->
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="tel" class="col-sm-2 control-label">*<%= t('seminar_signup.tel') %></label>
|
|
|
|
<div class="col-sm-10">
|
2023-10-10 14:49:16 +00:00
|
|
|
<%= f.text_field :tel, :class=>"input-medium form-control", :placeholder=> t('seminar_signup.tel'), :required => true, pattern: "[\\d\\+\\-\\(\\)]+" %>
|
2019-11-26 15:52:52 +00:00
|
|
|
</div>
|
2016-06-29 06:57:45 +00:00
|
|
|
</div>
|
2019-11-26 15:52:52 +00:00
|
|
|
|
|
|
|
<!-- Email -->
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="email" class="col-sm-2 control-label">*<%= t(:email) %></label>
|
|
|
|
<div class="col-sm-10">
|
2023-10-10 14:49:16 +00:00
|
|
|
<%= f.email_field :email, :class=>"input-medium form-control availibility", :placeholder=> t(:email), :required => true %>
|
2019-11-26 15:52:52 +00:00
|
|
|
</div>
|
2016-06-29 06:57:45 +00:00
|
|
|
</div>
|
2019-11-26 15:52:52 +00:00
|
|
|
|
|
|
|
<div class="form-group <%= @seminar.registration_status[0] == 'C' ? '' : 'hide' %>" id="registration_status">
|
|
|
|
<label for="password" class="col-sm-2 control-label">*<%= t('seminar_signup.password') %></label>
|
|
|
|
<div class="col-sm-10">
|
|
|
|
<%= f.text_field :password, :class=>"input-medium form-control", :placeholder=> t('seminar_signup.password') %>
|
|
|
|
<%= t('seminar_signup.password_message') %>
|
2016-06-29 06:57:45 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2019-11-26 15:52:52 +00:00
|
|
|
<% end %>
|
2023-10-10 02:14:57 +00:00
|
|
|
<%
|
|
|
|
group = 1
|
|
|
|
counter = 0
|
|
|
|
%>
|
|
|
|
|
|
|
|
<% @seminar.seminar_signup_fields.where(:disabled=>false).asc(:sort_number, :_id).each_with_index do |rf, idx| %>
|
|
|
|
<% if(idx == 5) %>
|
|
|
|
<div id="optional">
|
|
|
|
<% end %>
|
|
|
|
<% if(idx % 5 == 0) && idx != 0 %>
|
|
|
|
<% group += 1 %>
|
2023-10-10 14:49:16 +00:00
|
|
|
<% if @seminar_signup.seminar_signup_values[@form_index] && !@seminar_signup.seminar_signup_values[@form_index].value.blank? %>
|
|
|
|
<div id="group<%= group %>">
|
|
|
|
<% else %>
|
2023-10-10 02:14:57 +00:00
|
|
|
<div id="group<%= group %>" style="display:none;">
|
2023-10-10 14:49:16 +00:00
|
|
|
<% end %>
|
2023-10-10 02:14:57 +00:00
|
|
|
<% end %>
|
|
|
|
<% counter += 1 %>
|
2016-06-29 06:57:45 +00:00
|
|
|
<div class="form-group">
|
|
|
|
|
|
|
|
<%= rf.block_helper(@seminar,@form_index,false,"seminar_signup",@seminar_signup, rf.to_require) %>
|
|
|
|
|
|
|
|
</div>
|
2023-10-10 02:14:57 +00:00
|
|
|
<% if(counter % 5 == 0) && idx != 4 %>
|
|
|
|
<% counter = 0 %>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
<% if(idx == 25) %>
|
|
|
|
<div id="optional">
|
|
|
|
<% end %>
|
2016-06-29 06:57:45 +00:00
|
|
|
<% @form_index = @form_index +1 %>
|
|
|
|
|
|
|
|
<% end %>
|
2023-10-10 02:14:57 +00:00
|
|
|
</div>
|
|
|
|
<div class="form-group" style="text-align:center;margin:10px 0;">
|
|
|
|
<button id="add-member" class="btn btn-primary" style="display:inline; width: 150px;position: relative;float: left;"><%= t("seminar_signup.add_member") %></button>
|
|
|
|
<button id="remove-member" class="btn btn-primary" style="display:inline;position: relative;float: right; background:red; border-color:red;display: none;"><%= t("seminar_signup.remove_member") %></button>
|
|
|
|
</div>
|
2016-06-29 06:57:45 +00:00
|
|
|
|
|
|
|
<!-- 驗證碼 -->
|
2023-10-10 14:49:16 +00:00
|
|
|
<% if @seminar.seminar_signup_field_sets.count != 0 && @seminar_signup.new_record? %>
|
2019-11-26 15:52:52 +00:00
|
|
|
<% if !(@seminar.seminar_signup_field_sets.select{|v| v.field_name=='recaptcha'}[0].disabled) %>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="note" class="col-sm-2 control-label"><%= t('seminar_signup.recaptcha') %></label>
|
|
|
|
<div class="col-sm-10">
|
|
|
|
<%= gotcha_error %>
|
|
|
|
<%= gotcha %>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
2016-06-29 06:57:45 +00:00
|
|
|
|
2016-08-04 07:58:35 +00:00
|
|
|
<!-- <div class="form-group">
|
|
|
|
<label for="note" class="col-sm-2 control-label"><%#= t('nkuht_donate.recaptcha') %></label>
|
2016-06-29 06:57:45 +00:00
|
|
|
<div class="col-sm-10">
|
2016-08-04 07:58:35 +00:00
|
|
|
<%#= show_simple_captcha %>
|
2016-06-29 06:57:45 +00:00
|
|
|
</div>
|
2016-08-04 07:58:35 +00:00
|
|
|
</div> -->
|
2016-06-29 06:57:45 +00:00
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<div class="col-sm-offset-2 col-sm-10">
|
|
|
|
<label>
|
2023-10-10 14:49:16 +00:00
|
|
|
<input id="agree" name="agree" value="1" type="checkbox" required="required" <% if !@seminar_signup.new_record? %>checked="checked"<%end%>>
|
|
|
|
<a href="<%= prefix_url %>?method=show_privacy" target="_blank" style="color: black;"><%= t("seminar_signup.agree")%></a>
|
2016-06-29 06:57:45 +00:00
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<div class="col-sm-offset-2 col-sm-10">
|
2021-03-31 08:15:12 +00:00
|
|
|
<input type="hidden" name="referer_url" value="<%= request.original_url.split(request.env["HTTP_HOST"]).last rescue "/" %>">
|
2016-06-29 06:57:45 +00:00
|
|
|
<input type="hidden" name="seminar_signup[seminar_main_id]" value="<%= @seminar.id %>">
|
2023-10-10 14:49:16 +00:00
|
|
|
<% if !@seminar_signup.new_record? %>
|
|
|
|
<input type="hidden" name="signup_id" value="<%= @seminar_signup.id %>">
|
|
|
|
<% end %>
|
2021-03-24 13:06:49 +00:00
|
|
|
<%= f.submit "Submit", class: 'btn btn-primary', :id => 'button-mail' %>
|
|
|
|
<%= f.button "Delete", type: 'reset', class: 'btn' %>
|
2016-06-29 06:57:45 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</fieldset>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
(function(){
|
2023-10-11 00:47:59 +00:00
|
|
|
function check_repeat_value(event) {
|
2023-10-10 14:49:16 +00:00
|
|
|
var validated = true;
|
|
|
|
var all_values = $.map($('input[name^="seminar_signup_values"]:visible'), function(v) {
|
|
|
|
return [[v, $(v).val()]];
|
|
|
|
}).filter(function(v){
|
|
|
|
return v[1] != ''
|
|
|
|
});
|
|
|
|
var values = [];
|
|
|
|
for (var i=0;i< all_values.length;i++){
|
|
|
|
if (values.includes(all_values[i][1])){
|
|
|
|
all_values[i][0].setCustomValidity("<%= t('seminar.repeat_hint') %>");
|
2023-10-11 14:04:17 +00:00
|
|
|
all_values[i][0].focus();
|
|
|
|
$(all_values[i][0]).parents('form')[0].reportValidity();
|
2023-10-10 14:49:16 +00:00
|
|
|
validated = false;
|
2023-10-11 14:04:17 +00:00
|
|
|
$(all_values[i][0]).one('keyup change', function(){
|
|
|
|
this.setCustomValidity("");
|
|
|
|
});
|
2023-10-10 14:49:16 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
values.push(all_values[i][1]);
|
|
|
|
}
|
|
|
|
return validated;
|
|
|
|
}
|
2023-10-11 14:04:17 +00:00
|
|
|
function uploadSubmit(form){
|
|
|
|
$.ajax({
|
|
|
|
type: 'post',
|
|
|
|
method: 'post',
|
|
|
|
async: false,
|
|
|
|
contentType: false,
|
|
|
|
processData: false,
|
|
|
|
dataType: "script",
|
|
|
|
url: $(form).attr('action'),
|
|
|
|
data: new FormData(form)
|
|
|
|
});
|
|
|
|
}
|
2021-03-24 13:06:49 +00:00
|
|
|
$(".rucaptcha-image").siblings("input[type=\"text\"]").attr("placeholder","Verification");
|
2016-06-29 06:57:45 +00:00
|
|
|
var validated = false,
|
|
|
|
chks = false,
|
|
|
|
pwd = $('#seminar_signup_password')
|
2023-10-11 14:04:17 +00:00
|
|
|
$('input[type=submit]').on('click', function(){
|
|
|
|
var form = $(this).parents('form')[0];
|
|
|
|
if (form){
|
|
|
|
window.setTimeout(function(){
|
|
|
|
form.reportValidity();
|
|
|
|
}, 500);
|
|
|
|
}
|
|
|
|
});
|
2016-06-29 06:57:45 +00:00
|
|
|
$("form.content").submit(function(event) {
|
2023-10-11 00:47:59 +00:00
|
|
|
if (!check_repeat_value(event)){
|
2023-10-10 14:49:16 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if ($('*[name^="seminar_signup_values"]:visible')){
|
|
|
|
$('input[name^="seminar_signup_values"]:visible').map(function(k, v) {
|
|
|
|
return $(v).val();
|
|
|
|
});
|
|
|
|
}
|
2016-06-29 06:57:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
if ($('#seminar_signup_status_c:checked').val() == 'C'){
|
|
|
|
if (pwd.val() == ''){
|
|
|
|
pwd.attr('required', true);
|
|
|
|
pwd.focus();
|
|
|
|
alert( '<%= t('seminar_signup.password') %>' + ' is required');
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
<%
|
2023-04-12 03:33:32 +00:00
|
|
|
@seminar.seminar_signup_fields.where(:disabled=>false).asc(:sort_number, :_id).each do |rf|
|
2016-06-29 06:57:45 +00:00
|
|
|
|
|
|
|
if rf.markup == 'checkbox'
|
|
|
|
%>
|
|
|
|
|
|
|
|
var checkedCount = $("input[type=checkbox][id^=seminar_signup_values_<%= rf.id %>]:checked").length;
|
|
|
|
if (checkedCount == 0){
|
|
|
|
alert( '<%= rf.title %>' + ' is required');
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
<%
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
%>
|
|
|
|
|
|
|
|
var form = $(this),
|
|
|
|
isChecked = $('#agree:checked').val()?true:false;
|
|
|
|
|
|
|
|
if(!isChecked){
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2023-10-11 14:04:17 +00:00
|
|
|
uploadSubmit(this);
|
|
|
|
return false;
|
|
|
|
|
2016-06-29 06:57:45 +00:00
|
|
|
});
|
|
|
|
|
2023-10-10 14:49:16 +00:00
|
|
|
$('input[type="email"]').blur(function(){
|
2016-06-29 06:57:45 +00:00
|
|
|
var type = $(this).attr("id"),
|
|
|
|
loader = $(this).parent().find('.loader'),
|
|
|
|
elem = $(this),
|
|
|
|
value = $(this).val() || null;
|
2023-10-10 14:49:16 +00:00
|
|
|
var checkAvailability = function(){
|
|
|
|
$.ajax({
|
|
|
|
url : "<%= "/xhr/seminars/check_email/#{@seminar.id}" %>",
|
|
|
|
data : {"type" : type, "email" : value},
|
|
|
|
dataType : "json",
|
|
|
|
type : "get",
|
|
|
|
success : function(data){
|
|
|
|
if( data.success == true ){
|
|
|
|
loader.removeClass("error");
|
|
|
|
}else{
|
|
|
|
loader.addClass("error");
|
2016-06-29 06:57:45 +00:00
|
|
|
}
|
2023-10-10 14:49:16 +00:00
|
|
|
loader.text(data.result);
|
2016-06-29 06:57:45 +00:00
|
|
|
}
|
2023-10-10 14:49:16 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
if( value ){
|
|
|
|
if (!this.checkValidity()){
|
|
|
|
loader.addClass("error");
|
|
|
|
loader.text("<%= t("seminar.email_hint") %>");
|
|
|
|
return;
|
|
|
|
}else{
|
|
|
|
loader.removeClass("error");
|
|
|
|
loader.text("");
|
2016-06-29 06:57:45 +00:00
|
|
|
}
|
2023-10-10 14:49:16 +00:00
|
|
|
if(type == "seminar_signup_email"){
|
|
|
|
loader.text("Checking...")
|
|
|
|
checkAvailability();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2023-10-05 11:40:03 +00:00
|
|
|
$(".upload").on("change",function(){
|
|
|
|
let filenamedom = $(this).parent().parent().find(".filename");
|
|
|
|
let filenameA = $(this).val().split('\\');
|
|
|
|
filenamedom.text(filenameA[filenameA.length - 1]);
|
|
|
|
})
|
2016-06-29 06:57:45 +00:00
|
|
|
|
2023-10-10 02:14:57 +00:00
|
|
|
$("#optional label").each(function(){
|
|
|
|
if($(this).hasClass("control-label")){
|
|
|
|
$(this).text("*" + $(this).text());
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
// $("#seminar_signup_values_3_value").removeAttr("placeholder");
|
|
|
|
|
2023-10-10 14:49:16 +00:00
|
|
|
let currentGroup = 1 + $("#new-seminar-signup div[id^=group]:visible").length;
|
2023-10-11 14:04:17 +00:00
|
|
|
function showGroup($group){
|
|
|
|
$group.show();
|
|
|
|
$group.find('.fake-clean-file').remove();
|
|
|
|
$group.find('input,textarea').attr("required", true);
|
|
|
|
}
|
|
|
|
|
|
|
|
function hideGroup($group){
|
|
|
|
$group.hide();
|
|
|
|
$group.find("input[type!=hidden], textarea").val("");
|
|
|
|
$.each($group.find("input[type=file]"), function(k, v) {
|
|
|
|
$(v).after("<input class=\"fake-clean-file\" type=\"hidden\" name=\""+$(v).attr('name')+"\" value=\"\">");
|
|
|
|
});
|
|
|
|
$group.find('input,textarea').attr("required", false);
|
|
|
|
}
|
|
|
|
|
2023-10-10 14:49:16 +00:00
|
|
|
if (currentGroup > 1){
|
|
|
|
$("#remove-member").show();
|
2023-10-11 14:04:17 +00:00
|
|
|
for (var i = 1; i < currentGroup; i++){
|
|
|
|
showGroup($("#group" + i));
|
|
|
|
}
|
2023-10-10 14:49:16 +00:00
|
|
|
}
|
2023-10-11 14:04:17 +00:00
|
|
|
|
2023-10-10 02:14:57 +00:00
|
|
|
$("#add-member").on("click",function () {
|
|
|
|
if(currentGroup < 5){
|
|
|
|
$("#remove-member").show();
|
|
|
|
currentGroup++;
|
|
|
|
if(currentGroup == 5){
|
2023-10-10 14:49:16 +00:00
|
|
|
$(this).hide();
|
2023-10-10 02:14:57 +00:00
|
|
|
}
|
|
|
|
}
|
2023-10-11 14:04:17 +00:00
|
|
|
showGroup($("#group" + currentGroup));
|
2023-10-10 02:14:57 +00:00
|
|
|
return false;
|
|
|
|
})
|
|
|
|
$("#remove-member").on("click",function () {
|
2023-10-10 14:49:16 +00:00
|
|
|
$("#add-member").show();
|
2023-10-10 02:14:57 +00:00
|
|
|
if(currentGroup > 0){
|
2023-10-11 14:04:17 +00:00
|
|
|
hideGroup($("#group" + currentGroup));
|
2023-10-10 02:14:57 +00:00
|
|
|
currentGroup--;
|
|
|
|
if(currentGroup == 1){
|
|
|
|
$(this).hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
})
|
|
|
|
|
2016-06-29 06:57:45 +00:00
|
|
|
})();
|
|
|
|
</script>
|
|
|
|
|
2023-01-11 09:44:40 +00:00
|
|
|
<% end %>
|