รวม code แก้ไข OP 3138, 3141, 2736, 2654
This commit is contained in:
@@ -46,5 +46,20 @@ namespace TodoAPI2.Models
|
||||
|
||||
[MaxLength(255)]
|
||||
public string target_score5 { get; set; }
|
||||
|
||||
public string behavior_fix
|
||||
{
|
||||
get
|
||||
{
|
||||
if (!string.IsNullOrEmpty(behavior))
|
||||
{
|
||||
if (behavior.Split(' ').Count() > 1)
|
||||
{
|
||||
return behavior.Replace(behavior.Split(' ')[0], "");
|
||||
}
|
||||
}
|
||||
return behavior;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -57,13 +57,23 @@ namespace TodoAPI2.Models
|
||||
{
|
||||
var entity = _repository.Get(id);
|
||||
|
||||
if(entity.behavior != entity.behavior_fix)
|
||||
{
|
||||
entity.behavior = entity.behavior_fix;
|
||||
}
|
||||
|
||||
return GetDto(entity);
|
||||
}
|
||||
public eva_evaluation_behaviorWithSelectionViewModel GetWithSelection(int id)
|
||||
{
|
||||
var entity = _repository.Get(id);
|
||||
var i = Mapper.Map<eva_evaluation_behaviorWithSelectionViewModel>(entity);
|
||||
|
||||
if (entity.behavior != entity.behavior_fix)
|
||||
{
|
||||
entity.behavior = entity.behavior_fix;
|
||||
}
|
||||
|
||||
var i = Mapper.Map<eva_evaluation_behaviorWithSelectionViewModel>(entity);
|
||||
|
||||
return i;
|
||||
}
|
||||
@@ -101,7 +111,7 @@ namespace TodoAPI2.Models
|
||||
{
|
||||
id = m_eva_evaluation_behavior.id,
|
||||
create_evaluation_detail_id = m_eva_evaluation_behavior.create_evaluation_detail_id,
|
||||
behavior = m_eva_evaluation_behavior.behavior,
|
||||
behavior = m_eva_evaluation_behavior.behavior_fix,
|
||||
weight = m_eva_evaluation_behavior.weight,
|
||||
target_score1 = m_eva_evaluation_behavior.target_score1,
|
||||
target_score2 = m_eva_evaluation_behavior.target_score2,
|
||||
|
||||
@@ -32,5 +32,7 @@ namespace TodoAPI2.Models
|
||||
|
||||
public int? create_evaluation_detail_id_eva_create_evaluation_detail_create_evaluation_id { get; set; }
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
@@ -278,7 +278,7 @@ public class MyHelper
|
||||
Response.Cookies.Delete("emp_id");
|
||||
|
||||
CookieOptions option = new CookieOptions();
|
||||
option.Expires = DateTime.Now.AddHours(3);
|
||||
//option.Expires = DateTime.Now.AddHours(3);
|
||||
Response.Cookies.Append("emp_name", emp.fullname, option);
|
||||
Response.Cookies.Append("emp_id", emp.id.ToString(), option);
|
||||
}
|
||||
|
||||
@@ -26,8 +26,8 @@
|
||||
<!--right slidebar-->
|
||||
<link href="~/BackendScript/css/slidebars.css" rel="stylesheet">
|
||||
|
||||
<!--Date Picker-->
|
||||
<link href="~/BackendScript/assets/bootstrap-datepicker/css/datepicker.css" rel="stylesheet">
|
||||
<!--Date Picker 2-->
|
||||
<link href="~/lib/jquery.calendars/css/jquery.calendars.picker.css" rel="stylesheet">
|
||||
|
||||
<!--Select2-->
|
||||
<link href='~/select2/css/select2.min.css' rel='stylesheet' type='text/css'>
|
||||
@@ -171,11 +171,15 @@
|
||||
<!--common script for all pages-->
|
||||
<script src="~/BackendScript/js/common-scripts.js"></script>
|
||||
|
||||
<!--Date Picker-->
|
||||
<script src="~/BackendScript/js/bootstrap-datepicker-th/bootstrap-datepicker.js"></script>
|
||||
<script src="~/BackendScript/js/bootstrap-datepicker-th/bootstrap-datepicker-thai.js"></script>
|
||||
<script src="~/BackendScript/js/bootstrap-datepicker-th/bootstrap-datepicker.th.js"></script>
|
||||
<!--Date Picker 2-->
|
||||
<script src="~/BackendScript/assets/bootstrap-daterangepicker/moment.min.js"></script>
|
||||
<script src="~/lib/jquery.calendars/js/jquery.plugin.min.js"></script>
|
||||
<script src="~/lib/jquery.calendars/js/jquery.calendars.min.js"></script>
|
||||
<script src="~/lib/jquery.calendars/js/jquery.calendars.plus.min.js"></script>
|
||||
<script src="~/lib/jquery.calendars/js/jquery.calendars.picker.min.js"></script>
|
||||
<script src="~/lib/jquery.calendars/js/jquery.calendars.thai.min.js"></script>
|
||||
<script src="~/lib/jquery.calendars/js/jquery.calendars.thai-th.js"></script>
|
||||
<script src="~/lib/jquery.calendars/js/jquery.calendars.picker-th.js"></script>
|
||||
|
||||
<!--Select2-->
|
||||
<script src='~/select2/js/select2.min.js' type='text/javascript'></script>
|
||||
@@ -216,7 +220,7 @@
|
||||
});
|
||||
|
||||
$('.money').maskMoney();
|
||||
|
||||
|
||||
$(document).on('change', 'input.money', function() {
|
||||
var value = parseFloat(parseFloat($(this).val()).toFixed(2));
|
||||
$(this).maskMoney();
|
||||
@@ -227,7 +231,7 @@
|
||||
$(document).on('focus', 'input.money:not([readonly], :disabled)', function() {
|
||||
$(this).maskMoney('destroy');
|
||||
var val = $(this).maskMoney('unmasked')[0];
|
||||
val = val === 0 ? '' : val;
|
||||
val = val === 0 ? '' : val;
|
||||
$(this).val(val);
|
||||
});
|
||||
$(document).on('blur', 'input.money', function() {
|
||||
@@ -246,7 +250,7 @@
|
||||
startPos,
|
||||
endPos,
|
||||
value;
|
||||
|
||||
|
||||
if ((key >= 48 && key <= 57) || e.key == '.') {
|
||||
} else {
|
||||
preventDefault(e);
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
<!--right slidebar-->
|
||||
<link href="~/BackendScript/css/slidebars.css" rel="stylesheet">
|
||||
|
||||
<!--Date Picker-->
|
||||
<link href="~/BackendScript/assets/bootstrap-datepicker/css/datepicker.css" rel="stylesheet">
|
||||
<!--Date Picker 2-->
|
||||
<link href="~/lib/jquery.calendars/css/jquery.calendars.picker.css" rel="stylesheet">
|
||||
|
||||
<!--Select2-->
|
||||
<link href='~/select2/css/select2.min.css' rel='stylesheet' type='text/css'>
|
||||
@@ -151,7 +151,7 @@
|
||||
<script src="~/BackendScript/js/jquery.nicescroll.js" type="text/javascript"></script>
|
||||
<script src="~/BackendScript/js/jquery.sparkline.js" type="text/javascript"></script>
|
||||
<script src="~/BackendScript/js/respond.min.js"></script>
|
||||
|
||||
|
||||
<script src="~/BackendScript/js/jQuery-Mask-Plugin-master/dist/jquery.mask.min.js"></script>
|
||||
<script src="~/BackendScript/js/jquery-maskmoney-master/dist/jquery.maskMoney.min.js"></script>
|
||||
<script src="~/BackendScript/js/jsrsasign-all-min.js"></script>
|
||||
@@ -166,11 +166,15 @@
|
||||
<!--common script for all pages-->
|
||||
<script src="~/BackendScript/js/common-scripts.js"></script>
|
||||
|
||||
<!--Date Picker-->
|
||||
<script src="~/BackendScript/js/bootstrap-datepicker-th/bootstrap-datepicker.js"></script>
|
||||
<script src="~/BackendScript/js/bootstrap-datepicker-th/bootstrap-datepicker-thai.js"></script>
|
||||
<script src="~/BackendScript/js/bootstrap-datepicker-th/bootstrap-datepicker.th.js"></script>
|
||||
<!--Date Picker 2-->
|
||||
<script src="~/BackendScript/assets/bootstrap-daterangepicker/moment.min.js"></script>
|
||||
<script src="~/lib/jquery.calendars/js/jquery.plugin.min.js"></script>
|
||||
<script src="~/lib/jquery.calendars/js/jquery.calendars.min.js"></script>
|
||||
<script src="~/lib/jquery.calendars/js/jquery.calendars.plus.min.js"></script>
|
||||
<script src="~/lib/jquery.calendars/js/jquery.calendars.picker.min.js"></script>
|
||||
<script src="~/lib/jquery.calendars/js/jquery.calendars.thai.min.js"></script>
|
||||
<script src="~/lib/jquery.calendars/js/jquery.calendars.thai-th.js"></script>
|
||||
<script src="~/lib/jquery.calendars/js/jquery.calendars.picker-th.js"></script>
|
||||
|
||||
|
||||
<!--Select2-->
|
||||
@@ -202,7 +206,7 @@
|
||||
});
|
||||
|
||||
$('.money').maskMoney();
|
||||
|
||||
|
||||
$(document).on('change', 'input.money', function() {
|
||||
var value = parseFloat(parseFloat($(this).val()).toFixed(2));
|
||||
$(this).maskMoney();
|
||||
@@ -213,7 +217,7 @@
|
||||
$(document).on('focus', 'input.money:not([readonly], :disabled)', function() {
|
||||
$(this).maskMoney('destroy');
|
||||
var val = $(this).maskMoney('unmasked')[0];
|
||||
val = val === 0 ? '' : val;
|
||||
val = val === 0 ? '' : val;
|
||||
$(this).val(val);
|
||||
});
|
||||
$(document).on('blur', 'input.money', function() {
|
||||
@@ -232,7 +236,7 @@
|
||||
startPos,
|
||||
endPos,
|
||||
value;
|
||||
|
||||
|
||||
if ((key >= 48 && key <= 57) || e.key == '.') {
|
||||
} else {
|
||||
preventDefault(e);
|
||||
|
||||
@@ -166,10 +166,14 @@
|
||||
<thead>
|
||||
<tr>
|
||||
<th>เครื่องมือ</th>
|
||||
<th><label id='h_eva_create_evaluation_detail_employee_id'>ผู้รับการประเมิน</label></th>
|
||||
<th><label>รหัสพนักงาน</label></th>
|
||||
<th><label>ผู้รับการประเมิน</label></th>
|
||||
<th><label>ประเภทตำแหน่ง</label></th>
|
||||
<th><label>ตำแหน่ง</label></th>
|
||||
<th><label>ระดับตำแหน่ง</label></th>
|
||||
<th><label id='h_eva_create_evaluation_detail_chief'>ผู้ประเมิน </label></th>
|
||||
<th><label>หมายเหตุ</label></th>
|
||||
<th><label>ผู้ประเมิน</label></th>
|
||||
<th><label>หน่วยงาน</label></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody></tbody>
|
||||
|
||||
@@ -154,14 +154,9 @@
|
||||
<th width="30%"><label>ผลสัมฤทธิ์ตัวชี้วัดผลงาน</label></th>
|
||||
<th><label>น้ำหนัก (%)</label></th>
|
||||
|
||||
<th><label>1</label></th>
|
||||
<th><label>2</label></th>
|
||||
<th><label>3</label></th>
|
||||
<th><label>4</label></th>
|
||||
<th><label>5</label></th>
|
||||
|
||||
<th width="10%"><label>คะแนน (ระบุ 1.00-5.00)</label></th>
|
||||
<th width="10%"><label>รวมคะแนน</label></th>
|
||||
<th width="10%"><label>รวมคะแนน<br />(น้ำหนัก x คะแนน / 100)</label></th>
|
||||
|
||||
</tr>
|
||||
</thead>
|
||||
@@ -169,17 +164,12 @@
|
||||
<tr>
|
||||
<th>รวม</th>
|
||||
|
||||
<th width="25%"><label id='h_eva_evaluation_achievement_process_achievement'></label></th>
|
||||
<th><label id='h_eva_evaluation_achievement_process_achievement'></label></th>
|
||||
<th><label id='h_eva_evaluation_achievement_process_weight'></label></th>
|
||||
|
||||
<th><label id='h_eva_evaluation_achievement_process_target_score1'></label></th>
|
||||
<th><label id='h_eva_evaluation_achievement_process_target_score2'></label></th>
|
||||
<th><label id='h_eva_evaluation_achievement_process_target_score3'></label></th>
|
||||
<th><label id='h_eva_evaluation_achievement_process_target_score4'></label></th>
|
||||
<th><label id='h_eva_evaluation_achievement_process_target_score5'></label></th>
|
||||
|
||||
<th width="15%"><label id='h_eva_evaluation_achievement_process_score'></label></th>
|
||||
<th width="10%">
|
||||
<th><label id='h_eva_evaluation_achievement_process_score'></label></th>
|
||||
<th>
|
||||
<p id="eva_create_evaluation_detail_summary1_total_summary_chief" />
|
||||
</th>
|
||||
|
||||
@@ -210,28 +200,20 @@
|
||||
<tr>
|
||||
<th>ลำดับ</th>
|
||||
<th><label>พฤติกรรมการปฏิบัติงาน</label></th>
|
||||
<th width="10%"><label>น้ำหนัก (%)</label></th>
|
||||
<th width="7%"><label>1</label></th>
|
||||
<th width="7%"><label>2</label></th>
|
||||
<th width="7%"><label>3</label></th>
|
||||
<th width="7%"><label>4</label></th>
|
||||
<th width="7%"><label>5</label></th>
|
||||
<th width="15%"><label>คะแนน (ระบุ 1.00-5.00)</label></th>
|
||||
<th width="10%"><label>รวมคะแนน</label></th>
|
||||
<th><label>น้ำหนัก (%)</label></th>
|
||||
|
||||
<th><label>คะแนน (ระบุ 1.00-5.00)</label></th>
|
||||
<th><label>รวมคะแนน<br />(น้ำหนัก x คะแนน / 100)</label></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<th></th>
|
||||
<th><label id='h_eva_evaluation_behavior_process_behavior'>รวม</label></th>
|
||||
<th width="10%"><label id='h_eva_evaluation_behavior_process_weight'></label></th>
|
||||
<th width="7%"><label id='h_eva_evaluation_behavior_process_target_score1'></label></th>
|
||||
<th width="7%"><label id='h_eva_evaluation_behavior_process_target_score2'></label></th>
|
||||
<th width="7%"><label id='h_eva_evaluation_behavior_process_target_score3'></label></th>
|
||||
<th width="7%"><label id='h_eva_evaluation_behavior_process_target_score4'></label></th>
|
||||
<th width="7%"><label id='h_eva_evaluation_behavior_process_target_score5'></label></th>
|
||||
<th width="15%"><label id='h_eva_evaluation_behavior_process_score'></label></th>
|
||||
<th width="10%">
|
||||
<th><label id='h_eva_evaluation_behavior_process_weight'></label></th>
|
||||
|
||||
<th><label id='h_eva_evaluation_behavior_process_score'></label></th>
|
||||
<th>
|
||||
<p id="eva_create_evaluation_detail_summary1_total_summary_competency_chief" />
|
||||
</th>
|
||||
</tr>
|
||||
@@ -265,7 +247,7 @@
|
||||
<th><label>คะแนนประเมิน</label></th>
|
||||
<th><label>น้ำหนัก (%)</label></th>
|
||||
<th><label>คะแนน</label></th>
|
||||
<th><label>รวมคะแนน</label></th>
|
||||
<th><label>รวมคะแนน<br />(น้ำหนัก x คะแนน / 100)</label></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="thin-border-bottom">
|
||||
|
||||
@@ -203,18 +203,12 @@
|
||||
<th>ลำดับ</th>
|
||||
|
||||
<th><label>ผลสัมฤทธิ์ตัวชี้วัดผลงาน</label></th>
|
||||
<th><label>น้ำหนัก</label></th>
|
||||
|
||||
<th><label>1</label></th>
|
||||
<th><label>2</label></th>
|
||||
<th><label>3</label></th>
|
||||
<th><label>4</label></th>
|
||||
<th><label>5</label></th>
|
||||
<th><label>น้ำหนัก (%)</label></th>
|
||||
|
||||
<th><label>คะแนน</label></th>
|
||||
<th><label>รวมคะแนน</label></th>
|
||||
<th><label>คะแนน <br />(ระบุ 1.00-5.00)</label></th>
|
||||
<th><label>รวมคะแนน</label></th>
|
||||
<th><label>รวมคะแนน<br />(น้ำหนัก x คะแนน / 100)</label></th>
|
||||
|
||||
</tr>
|
||||
</thead>
|
||||
@@ -223,18 +217,12 @@
|
||||
<th>รวม</th>
|
||||
|
||||
<th><label id='h_eva_evaluation_achievement_process2_achievement'></label></th>
|
||||
<th width="7%"><label id='h_eva_evaluation_achievement_process2_weight'></label></th>
|
||||
<th><label id='h_eva_evaluation_achievement_process2_weight'></label></th>
|
||||
|
||||
<th width="7%"><label id='h_eva_evaluation_achievement_process2_target_score1'></label></th>
|
||||
<th width="7%"><label id='h_eva_evaluation_achievement_process2_target_score2'></label></th>
|
||||
<th width="7%"><label id='h_eva_evaluation_achievement_process2_target_score3'></label></th>
|
||||
<th width="7%"><label id='h_eva_evaluation_achievement_process2_target_score4'></label></th>
|
||||
<th width="7%"><label id='h_eva_evaluation_achievement_process2_target_score5'></label></th>
|
||||
|
||||
<th width="7%"><label id='h_eva_evaluation_achievement_process2_score'></label></th>
|
||||
<th width="7%"><label id='x1'></label></th>
|
||||
<th width="10%"><label id='h_eva_evaluation_achievement_process2_score2'></label></th>
|
||||
<th width="7%"><p id="eva_create_evaluation_detail_summary2_total_summary_supervisor" /></th>
|
||||
<th><label id='h_eva_evaluation_achievement_process2_score'></label></th>
|
||||
<th><label id='x1'></label></th>
|
||||
<th><label id='h_eva_evaluation_achievement_process2_score2'></label></th>
|
||||
<th><p id="eva_create_evaluation_detail_summary2_total_summary_supervisor" /></th>
|
||||
|
||||
</tr>
|
||||
</tfoot>
|
||||
@@ -263,32 +251,23 @@
|
||||
<tr>
|
||||
<th>ลำดับ</th>
|
||||
<th><label>พฤติกรรมการปฏิบัติงาน</label></th>
|
||||
<th width="8%"><label>น้ำหนัก</label></th>
|
||||
<th width="7%"><label>1</label></th>
|
||||
<th width="7%"><label>2</label></th>
|
||||
<th width="7%"><label>3</label></th>
|
||||
<th width="7%"><label>4</label></th>
|
||||
<th width="7%"><label>5</label></th>
|
||||
<th width="8%"><label>คะแนน</label></th>
|
||||
<th width="8%"><label>รวมคะแนน</label></th>
|
||||
<th width="13%"><label>คะแนน <br/>(ระบุ 1.00-5.00)</label></th>
|
||||
<th width="8%"><label>รวมคะแนน</label></th>
|
||||
<th><label>น้ำหนัก (%)</label></th>
|
||||
|
||||
<th><label>คะแนน</label></th>
|
||||
<th><label>รวมคะแนน</label></th>
|
||||
<th><label>คะแนน <br/>(ระบุ 1.00-5.00)</label></th>
|
||||
<th><label>รวมคะแนน<br/>(น้ำหนัก x คะแนน / 100)</label></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<th></th>
|
||||
<th><label id='h_eva_evaluation_behavior_process2_behavior'>รวม</label></th>
|
||||
<th width="8%"><label id='h_eva_evaluation_behavior_process2_weight'></label></th>
|
||||
<th width="7%"><label id='h_eva_evaluation_behavior_process2_target_score1'></label></th>
|
||||
<th width="7%"><label id='h_eva_evaluation_behavior_process2_target_score2'></label></th>
|
||||
<th width="7%"><label id='h_eva_evaluation_behavior_process2_target_score3'></label></th>
|
||||
<th width="7%"><label id='h_eva_evaluation_behavior_process2_target_score4'></label></th>
|
||||
<th width="7%"><label id='h_eva_evaluation_behavior_process2_target_score5'></label></th>
|
||||
<th width="8%"><label id='h_eva_evaluation_behavior_process2_score'></label></th>
|
||||
<th width="8%"><p id="x2" /></th>
|
||||
<th width="13%"><label id='h_eva_evaluation_behavior_process2_score2'></label></th>
|
||||
<th width="8%"><p id="eva_create_evaluation_detail_summary2_total_summary_competency_supervisor" /></th>
|
||||
<th><label id='h_eva_evaluation_behavior_process2_weight'></label></th>
|
||||
<th><label id='h_eva_evaluation_behavior_process2_score'></label></th>
|
||||
<th><p id="x2" /></th>
|
||||
<th><label id='h_eva_evaluation_behavior_process2_score2'></label></th>
|
||||
<th><p id="eva_create_evaluation_detail_summary2_total_summary_competency_supervisor" /></th>
|
||||
</tr>
|
||||
</tfoot>
|
||||
<tbody class="thin-border-bottom" id="eva_evaluation_behavior_process2Body"></tbody>
|
||||
@@ -317,9 +296,9 @@
|
||||
<thead>
|
||||
<tr>
|
||||
<th><label>คะแนนประเมิน</label></th>
|
||||
<th><label>น้ำหนัก</label></th>
|
||||
<th><label>น้ำหนัก (%)</label></th>
|
||||
<th><label>คะแนน</label></th>
|
||||
<th><label>รวมคะแนน</label></th>
|
||||
<th><label>รวมคะแนน<br />(น้ำหนัก x คะแนน / 100)</label></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="thin-border-bottom">
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
{
|
||||
"connectionStrings": {
|
||||
//"mainDBConnectionString": "Server=192.168.1.34;Port=32432;Database=tb320_hr_site2;User ID=postgres;Password=ZdPr0jects;",
|
||||
//"externalDBConnectionString": "Server=192.168.1.34;Port=32432;Database=tb320_hr_site2;User ID=postgres;Password=ZdPr0jects;"
|
||||
"mainDBConnectionString": "Server=192.168.2.233;Port=5432;Database=tb320_hr_site2;User ID=postgres;Password=project0*;",
|
||||
"externalDBConnectionString": "Server=192.168.2.233;Port=5432;Database=tb320_hr_site2;User ID=postgres;Password=project0*;"
|
||||
},
|
||||
@@ -40,7 +42,7 @@
|
||||
"modulesite": "http://tb320dev.zd.co.th/menu/evaluation",
|
||||
"sitename": "เนติบัณฑิตยสภา ในพระบรมราชูปถัมภ์",
|
||||
"modulename": "ระบบประวัติเงินเดือนและการเลื่อนเงินเดือน",
|
||||
"hr_upload_api": "http://tb-320.zd.co.th/api/file/upload"
|
||||
"hr_upload_api": "https://hrm.thethaibar.or.th/api/file/upload"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,4 +1,25 @@
|
||||
|
||||
$(document).ready(function () {
|
||||
$( document ).on( 'focus', ':input', function(){
|
||||
$( this ).attr( 'autocomplete', 'nakorn2' );
|
||||
});
|
||||
|
||||
$('*[data-provide="datepicker"]').wrap('<div class="input-group"></div>');
|
||||
|
||||
$('*[data-provide="datepicker"]').calendarsPicker(
|
||||
{
|
||||
calendar: $.calendars.instance('thai','th'),
|
||||
yearRange: 'c-200:c+10',
|
||||
showOnFocus: true,
|
||||
showTrigger: '<div class="input-group-append"><span class="trigger input-group-text"><i class="fa fa-calendar"></i></span></div>'
|
||||
}
|
||||
);
|
||||
//$('*[data-provide="datepicker"]').attr("placeholder", "วว/ดด/ปปปป");
|
||||
$('*[data-provide="datepicker"]').mask("99/99/9999", {placeholder: 'วว/ดด/ปปปป' });
|
||||
|
||||
});
|
||||
|
||||
//=====================================================
|
||||
|
||||
function formatNumber(num) {
|
||||
if(num === "" || num === null) return "";
|
||||
return num.toString().replace(/(\d)(?=(\d{3})+(?!\d))/g, '$1,');
|
||||
|
||||
@@ -151,6 +151,8 @@ function eva_create_evaluation_detail_GoDelete(a) {
|
||||
var eva_create_evaluation_detailTableV;
|
||||
|
||||
var eva_create_evaluation_detail_setupTable = function (result) {
|
||||
console.log(result);
|
||||
var groupColumn = 8;
|
||||
tmp = '"';
|
||||
eva_create_evaluation_detailTableV = $('#eva_create_evaluation_detailTable').DataTable({
|
||||
"processing": true,
|
||||
@@ -158,11 +160,15 @@ var eva_create_evaluation_detail_setupTable = function (result) {
|
||||
"data": result,
|
||||
"select": false,
|
||||
"columns": [
|
||||
{ "data": "id" },
|
||||
{ "data": "employee_id_external_linkage_external_name" },
|
||||
{ "data": "position_type_text" },
|
||||
{ "data": "position_level_text" },
|
||||
{ "data": "chief_external_linkage_external_name" },
|
||||
{ "data": "id" },
|
||||
{ "data": "employee_no" },
|
||||
{ "data": "employee_id_external_linkage_external_name" },
|
||||
{ "data": "position_type_text" },
|
||||
{ "data": "position_name" },
|
||||
{ "data": "position_level_text" },
|
||||
{ "data": "remark" },
|
||||
{ "data": "chief_external_linkage_external_name" },
|
||||
{ "data": "department_name" },
|
||||
|
||||
],
|
||||
"columnDefs": [
|
||||
@@ -172,12 +178,28 @@ var eva_create_evaluation_detail_setupTable = function (result) {
|
||||
"render": function (data, type, row, meta) {
|
||||
return "<button type='button' class='btn btn-warning btn-sm' onclick='javascript:eva_create_evaluation_detail_GoEdit(" + tmp + data + tmp + ")'><i class='fa fa-pencil'></i></button> <button type='button' class='btn btn-danger btn-sm' onclick='javascript:eva_create_evaluation_detail_GoDelete(" + tmp + data + tmp + ")'><i class='fa fa-trash-o '></i></button> ";
|
||||
}
|
||||
}],
|
||||
},
|
||||
{ "visible": false, "targets": groupColumn }],
|
||||
"language": {
|
||||
"url": appsite + "/DataTables-1.10.16/thai.json"
|
||||
},
|
||||
"paging": true,
|
||||
"searching": false
|
||||
"searching": false,
|
||||
"drawCallback": function ( settings ) {
|
||||
var api = this.api();
|
||||
var rows = api.rows( {page:'current'} ).nodes();
|
||||
var last=null;
|
||||
|
||||
api.column(groupColumn, {page:'current'} ).data().each( function ( group, i ) {
|
||||
if ( last !== group ) {
|
||||
$(rows).eq( i ).before(
|
||||
'<tr class="group"><td colspan="9"><b>หน่วยงาน : '+group+'</b></td></tr>'
|
||||
);
|
||||
|
||||
last = group;
|
||||
}
|
||||
} );
|
||||
}
|
||||
});
|
||||
endLoad();
|
||||
};
|
||||
|
||||
@@ -53,9 +53,9 @@ searchVacation();
|
||||
|
||||
item_level_score = data.item_level_score;
|
||||
|
||||
$("#w1").text(data.create_evaluation_score1.toFixed(2)+"%");
|
||||
$("#w2").text(data.create_evaluation_score2.toFixed(2)+"%");
|
||||
$("#w3").text((data.create_evaluation_score1+data.create_evaluation_score2).toFixed(2)+"%");
|
||||
$("#w1").text(data.create_evaluation_score1.toFixed(2));
|
||||
$("#w2").text(data.create_evaluation_score2.toFixed(2));
|
||||
$("#w3").text((data.create_evaluation_score1+data.create_evaluation_score2).toFixed(2));
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -14,7 +14,7 @@ $("#eva_create_evaluation_detail_summary1_achievement_chief").text(data.achievem
|
||||
$("#eva_create_evaluation_detail_summary1_competency_chief").text(data.competency_chief);
|
||||
$("#eva_create_evaluation_detail_summary1_score_chief").text(data.score_chief);
|
||||
$("#eva_create_evaluation_detail_summary1_level_score_chief").text(data.level_score_chief);
|
||||
|
||||
console.log(data);
|
||||
}
|
||||
|
||||
function eva_create_evaluation_detail_summary1_GetFromForm() {
|
||||
|
||||
@@ -14,7 +14,7 @@ $("#eva_create_evaluation_detail_summary2_achievement_supervisor").text(data.ach
|
||||
$("#eva_create_evaluation_detail_summary2_competency_supervisor").text(data.competency_supervisor);
|
||||
$("#eva_create_evaluation_detail_summary2_score_supervisor").text(data.score_supervisor);
|
||||
$("#eva_create_evaluation_detail_summary2_level_score_supervisor").text(data.level_score_supervisor);
|
||||
|
||||
console.log(data);
|
||||
}
|
||||
|
||||
function eva_create_evaluation_detail_summary2_GetFromForm() {
|
||||
|
||||
@@ -6,11 +6,11 @@ $("#eva_evaluation_achievement_process_achievement_" + i).text("");
|
||||
$("#eva_evaluation_achievement_process_weight_" + i).text("");
|
||||
$("#eva_evaluation_achievement_process_score_" + i).val("");
|
||||
$("#eva_evaluation_achievement_process_sumary_" + i).text("");
|
||||
$("#eva_evaluation_achievement_process_target_score1_" + i).val("");
|
||||
$("#eva_evaluation_achievement_process_target_score2_" + i).val("");
|
||||
$("#eva_evaluation_achievement_process_target_score3_" + i).val("");
|
||||
$("#eva_evaluation_achievement_process_target_score4_" + i).val("");
|
||||
$("#eva_evaluation_achievement_process_target_score5_" + i).val("");
|
||||
//$("#eva_evaluation_achievement_process_target_score1_" + i).val("");
|
||||
//$("#eva_evaluation_achievement_process_target_score2_" + i).val("");
|
||||
//$("#eva_evaluation_achievement_process_target_score3_" + i).val("");
|
||||
//$("#eva_evaluation_achievement_process_target_score4_" + i).val("");
|
||||
//$("#eva_evaluation_achievement_process_target_score5_" + i).val("");
|
||||
|
||||
}
|
||||
|
||||
@@ -22,11 +22,11 @@ $("#eva_evaluation_achievement_process_achievement_" + i).text(data.achievement)
|
||||
$("#eva_evaluation_achievement_process_weight_" + i).text(data.weight);
|
||||
$("#eva_evaluation_achievement_process_score_" + i).val(data.score);
|
||||
$("#eva_evaluation_achievement_process_sumary_" + i).text(data.sumary);
|
||||
$("#eva_evaluation_achievement_process_target_score1_" + i).val(data.target_score1);
|
||||
$("#eva_evaluation_achievement_process_target_score2_" + i).val(data.target_score2);
|
||||
$("#eva_evaluation_achievement_process_target_score3_" + i).val(data.target_score3);
|
||||
$("#eva_evaluation_achievement_process_target_score4_" + i).val(data.target_score4);
|
||||
$("#eva_evaluation_achievement_process_target_score5_" + i).val(data.target_score5);
|
||||
//$("#eva_evaluation_achievement_process_target_score1_" + i).val(data.target_score1);
|
||||
//$("#eva_evaluation_achievement_process_target_score2_" + i).val(data.target_score2);
|
||||
//$("#eva_evaluation_achievement_process_target_score3_" + i).val(data.target_score3);
|
||||
//$("#eva_evaluation_achievement_process_target_score4_" + i).val(data.target_score4);
|
||||
//$("#eva_evaluation_achievement_process_target_score5_" + i).val(data.target_score5);
|
||||
|
||||
}
|
||||
|
||||
@@ -38,11 +38,11 @@ eva_evaluation_achievement_processObject.achievement = obj.find("#eva_evaluation
|
||||
eva_evaluation_achievement_processObject.weight = obj.find("#eva_evaluation_achievement_process_weight_" + i).text();
|
||||
eva_evaluation_achievement_processObject.score = obj.find("#eva_evaluation_achievement_process_score_" + i).val();
|
||||
eva_evaluation_achievement_processObject.sumary = obj.find("#eva_evaluation_achievement_process_sumary_" + i).text();
|
||||
eva_evaluation_achievement_processObject.target_score1 = obj.find("#eva_evaluation_achievement_process_target_score1_" + i).val();
|
||||
eva_evaluation_achievement_processObject.target_score2 = obj.find("#eva_evaluation_achievement_process_target_score2_" + i).val();
|
||||
eva_evaluation_achievement_processObject.target_score3 = obj.find("#eva_evaluation_achievement_process_target_score3_" + i).val();
|
||||
eva_evaluation_achievement_processObject.target_score4 = obj.find("#eva_evaluation_achievement_process_target_score4_" + i).val();
|
||||
eva_evaluation_achievement_processObject.target_score5 = obj.find("#eva_evaluation_achievement_process_target_score5_" + i).val();
|
||||
//eva_evaluation_achievement_processObject.target_score1 = obj.find("#eva_evaluation_achievement_process_target_score1_" + i).val();
|
||||
//eva_evaluation_achievement_processObject.target_score2 = obj.find("#eva_evaluation_achievement_process_target_score2_" + i).val();
|
||||
//eva_evaluation_achievement_processObject.target_score3 = obj.find("#eva_evaluation_achievement_process_target_score3_" + i).val();
|
||||
//eva_evaluation_achievement_processObject.target_score4 = obj.find("#eva_evaluation_achievement_process_target_score4_" + i).val();
|
||||
//eva_evaluation_achievement_processObject.target_score5 = obj.find("#eva_evaluation_achievement_process_target_score5_" + i).val();
|
||||
|
||||
eva_evaluation_achievement_processObject.active_mode = obj.find("#isActive_" + i + "_eva_evaluation_achievement_process").val();
|
||||
return eva_evaluation_achievement_processObject;
|
||||
@@ -75,11 +75,11 @@ function eva_evaluation_achievement_process_Get(a, blankItem) {
|
||||
tag += '<td><label id="rowCount">' + (i + 1) + '</label><input type="hidden" id="isActive_' + (i + 1) + '_eva_evaluation_achievement_process" value="1" /><input class="form-control" type="hidden" id="eva_evaluation_achievement_process_id_' + (i + 1)+'" /><input class="form-control" type="hidden" id="eva_evaluation_achievement_process_create_evaluation_detail_id_' + (i + 1)+'" /></td>';
|
||||
tag += '<td><p id="eva_evaluation_achievement_process_achievement_' + (i + 1)+'" /></td>';
|
||||
tag += '<td><p id="eva_evaluation_achievement_process_weight_' + (i + 1)+'" /></td>';
|
||||
tag += '<td><input class="form-control" id="eva_evaluation_achievement_process_target_score1_' + (i + 1)+'"/></td>';
|
||||
tag += '<td><input class="form-control" id="eva_evaluation_achievement_process_target_score2_' + (i + 1)+'"/></td>';
|
||||
tag += '<td><input class="form-control" id="eva_evaluation_achievement_process_target_score3_' + (i + 1)+'"/></td>';
|
||||
tag += '<td><input class="form-control" id="eva_evaluation_achievement_process_target_score4_' + (i + 1)+'"/></td>';
|
||||
tag += '<td><input class="form-control" id="eva_evaluation_achievement_process_target_score5_' + (i + 1)+'"/></td>';
|
||||
//tag += '<td><input class="form-control" id="eva_evaluation_achievement_process_target_score1_' + (i + 1)+'"/></td>';
|
||||
//tag += '<td><input class="form-control" id="eva_evaluation_achievement_process_target_score2_' + (i + 1)+'"/></td>';
|
||||
//tag += '<td><input class="form-control" id="eva_evaluation_achievement_process_target_score3_' + (i + 1)+'"/></td>';
|
||||
//tag += '<td><input class="form-control" id="eva_evaluation_achievement_process_target_score4_' + (i + 1)+'"/></td>';
|
||||
//tag += '<td><input class="form-control" id="eva_evaluation_achievement_process_target_score5_' + (i + 1)+'"/></td>';
|
||||
tag += '<td><input class="form-control" type="number" min="0" max="5" step=".01" onchange="javascript:Oneva_evaluation_achievement_process_scoreChange();" id="eva_evaluation_achievement_process_score_' + (i + 1)+'" /></td>';
|
||||
tag += '<td><p id="eva_evaluation_achievement_process_sumary_' + (i + 1)+'" /></td>';
|
||||
|
||||
|
||||
@@ -8,11 +8,11 @@ $("#eva_evaluation_achievement_process2_weight_" + i).text("");
|
||||
$("#eva_evaluation_achievement_process2_score_" + i).text("");
|
||||
$("#eva_evaluation_achievement_process2_score2_" + i).val("");
|
||||
$("#eva_evaluation_achievement_process2_sumary2_" + i).text("");
|
||||
$("#eva_evaluation_achievement_process2_target_score1_" + i).val("");
|
||||
$("#eva_evaluation_achievement_process2_target_score2_" + i).val("");
|
||||
$("#eva_evaluation_achievement_process2_target_score3_" + i).val("");
|
||||
$("#eva_evaluation_achievement_process2_target_score4_" + i).val("");
|
||||
$("#eva_evaluation_achievement_process2_target_score5_" + i).val("");
|
||||
//$("#eva_evaluation_achievement_process2_target_score1_" + i).val("");
|
||||
//$("#eva_evaluation_achievement_process2_target_score2_" + i).val("");
|
||||
//$("#eva_evaluation_achievement_process2_target_score3_" + i).val("");
|
||||
//$("#eva_evaluation_achievement_process2_target_score4_" + i).val("");
|
||||
//$("#eva_evaluation_achievement_process2_target_score5_" + i).val("");
|
||||
|
||||
}
|
||||
|
||||
@@ -27,11 +27,11 @@ $("#eva_evaluation_achievement_process2_score_" + i).text(data.score);
|
||||
$("#eva_evaluation_achievement_process2_sumary_" + i).text(data.sumary);
|
||||
$("#eva_evaluation_achievement_process2_score2_" + i).val(data.score2);
|
||||
$("#eva_evaluation_achievement_process2_sumary2_" + i).text(data.sumary2);
|
||||
$("#eva_evaluation_achievement_process2_target_score1_" + i).val(data.target_score1);
|
||||
$("#eva_evaluation_achievement_process2_target_score2_" + i).val(data.target_score2);
|
||||
$("#eva_evaluation_achievement_process2_target_score3_" + i).val(data.target_score3);
|
||||
$("#eva_evaluation_achievement_process2_target_score4_" + i).val(data.target_score4);
|
||||
$("#eva_evaluation_achievement_process2_target_score5_" + i).val(data.target_score5);
|
||||
//$("#eva_evaluation_achievement_process2_target_score1_" + i).val(data.target_score1);
|
||||
//$("#eva_evaluation_achievement_process2_target_score2_" + i).val(data.target_score2);
|
||||
//$("#eva_evaluation_achievement_process2_target_score3_" + i).val(data.target_score3);
|
||||
//$("#eva_evaluation_achievement_process2_target_score4_" + i).val(data.target_score4);
|
||||
//$("#eva_evaluation_achievement_process2_target_score5_" + i).val(data.target_score5);
|
||||
|
||||
}
|
||||
|
||||
@@ -45,11 +45,11 @@ eva_evaluation_achievement_process2Object.weight = obj.find("#eva_evaluation_ach
|
||||
eva_evaluation_achievement_process2Object.score = obj.find("#eva_evaluation_achievement_process2_score_" + i).text();
|
||||
eva_evaluation_achievement_process2Object.score2 = obj.find("#eva_evaluation_achievement_process2_score2_" + i).val();
|
||||
eva_evaluation_achievement_process2Object.sumary2 = obj.find("#eva_evaluation_achievement_process2_sumary2_" + i).text();
|
||||
eva_evaluation_achievement_process2Object.target_score1 = obj.find("#eva_evaluation_achievement_process2_target_score1_" + i).val();
|
||||
eva_evaluation_achievement_process2Object.target_score2 = obj.find("#eva_evaluation_achievement_process2_target_score2_" + i).val();
|
||||
eva_evaluation_achievement_process2Object.target_score3 = obj.find("#eva_evaluation_achievement_process2_target_score3_" + i).val();
|
||||
eva_evaluation_achievement_process2Object.target_score4 = obj.find("#eva_evaluation_achievement_process2_target_score4_" + i).val();
|
||||
eva_evaluation_achievement_process2Object.target_score5 = obj.find("#eva_evaluation_achievement_process2_target_score5_" + i).val();
|
||||
//eva_evaluation_achievement_process2Object.target_score1 = obj.find("#eva_evaluation_achievement_process2_target_score1_" + i).val();
|
||||
//eva_evaluation_achievement_process2Object.target_score2 = obj.find("#eva_evaluation_achievement_process2_target_score2_" + i).val();
|
||||
//eva_evaluation_achievement_process2Object.target_score3 = obj.find("#eva_evaluation_achievement_process2_target_score3_" + i).val();
|
||||
//eva_evaluation_achievement_process2Object.target_score4 = obj.find("#eva_evaluation_achievement_process2_target_score4_" + i).val();
|
||||
//eva_evaluation_achievement_process2Object.target_score5 = obj.find("#eva_evaluation_achievement_process2_target_score5_" + i).val();
|
||||
|
||||
eva_evaluation_achievement_process2Object.active_mode = obj.find("#isActive_" + i + "_eva_evaluation_achievement_process2").val();
|
||||
return eva_evaluation_achievement_process2Object;
|
||||
@@ -84,11 +84,11 @@ function eva_evaluation_achievement_process2_Get(a, blankItem) {
|
||||
tag += '<td><label id="rowCount">' + (i + 1) + '</label><input type="hidden" id="isActive_' + (i + 1) + '_eva_evaluation_achievement_process2" value="1" /><input class="form-control" type="hidden" id="eva_evaluation_achievement_process2_id_' + (i + 1)+'" /><input class="form-control" type="hidden" id="eva_evaluation_achievement_process2_create_evaluation_detail_id_' + (i + 1)+'" /></td>';
|
||||
tag += '<td><p id="eva_evaluation_achievement_process2_achievement_' + (i + 1)+'" /></td>';
|
||||
tag += '<td><p id="eva_evaluation_achievement_process2_weight_' + (i + 1)+'" /></td>';
|
||||
tag += '<td><input class="form-control" id="eva_evaluation_achievement_process2_target_score1_' + (i + 1)+'"/></td>';
|
||||
tag += '<td><input class="form-control" id="eva_evaluation_achievement_process2_target_score2_' + (i + 1)+'"/></td>';
|
||||
tag += '<td><input class="form-control" id="eva_evaluation_achievement_process2_target_score3_' + (i + 1)+'"/></td>';
|
||||
tag += '<td><input class="form-control" id="eva_evaluation_achievement_process2_target_score4_' + (i + 1)+'"/></td>';
|
||||
tag += '<td><input class="form-control" id="eva_evaluation_achievement_process2_target_score5_' + (i + 1)+'"/></td>';
|
||||
//tag += '<td><input class="form-control" id="eva_evaluation_achievement_process2_target_score1_' + (i + 1)+'"/></td>';
|
||||
//tag += '<td><input class="form-control" id="eva_evaluation_achievement_process2_target_score2_' + (i + 1)+'"/></td>';
|
||||
//tag += '<td><input class="form-control" id="eva_evaluation_achievement_process2_target_score3_' + (i + 1)+'"/></td>';
|
||||
//tag += '<td><input class="form-control" id="eva_evaluation_achievement_process2_target_score4_' + (i + 1)+'"/></td>';
|
||||
//tag += '<td><input class="form-control" id="eva_evaluation_achievement_process2_target_score5_' + (i + 1)+'"/></td>';
|
||||
tag += '<td><p id="eva_evaluation_achievement_process2_score_' + (i + 1)+'" /></td>';
|
||||
tag += '<td><p id="eva_evaluation_achievement_process2_sumary_' + (i + 1)+'" /></td>';
|
||||
tag += '<td><input class="form-control" type="number" min="0" max="5" step=".01" onchange="javascript:Oneva_evaluation_achievement_process2_scoreChange();" id="eva_evaluation_achievement_process2_score2_' + (i + 1)+'" /></td>';
|
||||
|
||||
@@ -27,6 +27,7 @@ $("#eva_evaluation_behavior_target_score2").val(data.target_score2);
|
||||
$("#eva_evaluation_behavior_target_score3").val(data.target_score3);
|
||||
$("#eva_evaluation_behavior_target_score4").val(data.target_score4);
|
||||
$("#eva_evaluation_behavior_target_score5").val(data.target_score5);
|
||||
console.log(data);
|
||||
}
|
||||
|
||||
function eva_evaluation_behavior_GetFromForm() {
|
||||
|
||||
@@ -6,11 +6,11 @@ $("#eva_evaluation_behavior_process_behavior_" + i).text("");
|
||||
$("#eva_evaluation_behavior_process_weight_" + i).text("");
|
||||
$("#eva_evaluation_behavior_process_score_" + i).val("");
|
||||
$("#eva_evaluation_behavior_process_sumary_" + i).text("");
|
||||
$("#eva_evaluation_behavior_process_target_score1_" + i).val("");
|
||||
$("#eva_evaluation_behavior_process_target_score2_" + i).val("");
|
||||
$("#eva_evaluation_behavior_process_target_score3_" + i).val("");
|
||||
$("#eva_evaluation_behavior_process_target_score4_" + i).val("");
|
||||
$("#eva_evaluation_behavior_process_target_score5_" + i).val("");
|
||||
//$("#eva_evaluation_behavior_process_target_score1_" + i).val("");
|
||||
//$("#eva_evaluation_behavior_process_target_score2_" + i).val("");
|
||||
//$("#eva_evaluation_behavior_process_target_score3_" + i).val("");
|
||||
//$("#eva_evaluation_behavior_process_target_score4_" + i).val("");
|
||||
//$("#eva_evaluation_behavior_process_target_score5_" + i).val("");
|
||||
|
||||
}
|
||||
|
||||
@@ -21,11 +21,11 @@ $("#eva_evaluation_behavior_process_behavior_" + i).text(data.behavior);
|
||||
$("#eva_evaluation_behavior_process_weight_" + i).text(data.weight);
|
||||
$("#eva_evaluation_behavior_process_score_" + i).val(data.score);
|
||||
$("#eva_evaluation_behavior_process_sumary_" + i).text(data.sumary);
|
||||
$("#eva_evaluation_behavior_process_target_score1_" + i).val(data.target_score1);
|
||||
$("#eva_evaluation_behavior_process_target_score2_" + i).val(data.target_score2);
|
||||
$("#eva_evaluation_behavior_process_target_score3_" + i).val(data.target_score3);
|
||||
$("#eva_evaluation_behavior_process_target_score4_" + i).val(data.target_score4);
|
||||
$("#eva_evaluation_behavior_process_target_score5_" + i).val(data.target_score5);
|
||||
//$("#eva_evaluation_behavior_process_target_score1_" + i).val(data.target_score1);
|
||||
//$("#eva_evaluation_behavior_process_target_score2_" + i).val(data.target_score2);
|
||||
//$("#eva_evaluation_behavior_process_target_score3_" + i).val(data.target_score3);
|
||||
//$("#eva_evaluation_behavior_process_target_score4_" + i).val(data.target_score4);
|
||||
//$("#eva_evaluation_behavior_process_target_score5_" + i).val(data.target_score5);
|
||||
|
||||
}
|
||||
|
||||
@@ -37,11 +37,11 @@ eva_evaluation_behavior_processObject.behavior = obj.find("#eva_evaluation_behav
|
||||
eva_evaluation_behavior_processObject.weight = obj.find("#eva_evaluation_behavior_process_weight_" + i).text();
|
||||
eva_evaluation_behavior_processObject.score = obj.find("#eva_evaluation_behavior_process_score_" + i).val();
|
||||
eva_evaluation_behavior_processObject.sumary = obj.find("#eva_evaluation_behavior_process_sumary_" + i).text();
|
||||
eva_evaluation_behavior_processObject.target_score1 = obj.find("#eva_evaluation_behavior_process_target_score1_" + i).val();
|
||||
eva_evaluation_behavior_processObject.target_score2 = obj.find("#eva_evaluation_behavior_process_target_score2_" + i).val();
|
||||
eva_evaluation_behavior_processObject.target_score3 = obj.find("#eva_evaluation_behavior_process_target_score3_" + i).val();
|
||||
eva_evaluation_behavior_processObject.target_score4 = obj.find("#eva_evaluation_behavior_process_target_score4_" + i).val();
|
||||
eva_evaluation_behavior_processObject.target_score5 = obj.find("#eva_evaluation_behavior_process_target_score5_" + i).val();
|
||||
//eva_evaluation_behavior_processObject.target_score1 = obj.find("#eva_evaluation_behavior_process_target_score1_" + i).val();
|
||||
//eva_evaluation_behavior_processObject.target_score2 = obj.find("#eva_evaluation_behavior_process_target_score2_" + i).val();
|
||||
//eva_evaluation_behavior_processObject.target_score3 = obj.find("#eva_evaluation_behavior_process_target_score3_" + i).val();
|
||||
//eva_evaluation_behavior_processObject.target_score4 = obj.find("#eva_evaluation_behavior_process_target_score4_" + i).val();
|
||||
//eva_evaluation_behavior_processObject.target_score5 = obj.find("#eva_evaluation_behavior_process_target_score5_" + i).val();
|
||||
|
||||
eva_evaluation_behavior_processObject.active_mode = obj.find("#isActive_" + i + "_eva_evaluation_behavior_process").val();
|
||||
return eva_evaluation_behavior_processObject;
|
||||
@@ -76,11 +76,11 @@ function eva_evaluation_behavior_process_Get(a, blankItem) {
|
||||
|
||||
tag += '<td><p id="eva_evaluation_behavior_process_behavior_' + (i + 1)+'" /></td>';
|
||||
tag += '<td><p id="eva_evaluation_behavior_process_weight_' + (i + 1)+'" /></td>';
|
||||
tag += '<td><input class="form-control" type="text" id="eva_evaluation_behavior_process_target_score1_' + (i + 1)+'"></p></td>';
|
||||
tag += '<td><input class="form-control" type="text" id="eva_evaluation_behavior_process_target_score2_' + (i + 1)+'"></p></td>';
|
||||
tag += '<td><input class="form-control" type="text" id="eva_evaluation_behavior_process_target_score3_' + (i + 1)+'"></p></td>';
|
||||
tag += '<td><input class="form-control" type="text" id="eva_evaluation_behavior_process_target_score4_' + (i + 1)+'"></p></td>';
|
||||
tag += '<td><input class="form-control" type="text" id="eva_evaluation_behavior_process_target_score5_' + (i + 1)+'"></p></td>';
|
||||
//tag += '<td><input class="form-control" type="text" id="eva_evaluation_behavior_process_target_score1_' + (i + 1)+'"></p></td>';
|
||||
//tag += '<td><input class="form-control" type="text" id="eva_evaluation_behavior_process_target_score2_' + (i + 1)+'"></p></td>';
|
||||
// tag += '<td><input class="form-control" type="text" id="eva_evaluation_behavior_process_target_score3_' + (i + 1)+'"></p></td>';
|
||||
//tag += '<td><input class="form-control" type="text" id="eva_evaluation_behavior_process_target_score4_' + (i + 1)+'"></p></td>';
|
||||
// tag += '<td><input class="form-control" type="text" id="eva_evaluation_behavior_process_target_score5_' + (i + 1)+'"></p></td>';
|
||||
tag += '<td><input min="0" max="5" step=".01" onchange="Oneva_evaluation_behavior_process_scoreChange()" class="form-control" type="number" id="eva_evaluation_behavior_process_score_' + (i + 1)+'" /></td>';
|
||||
tag += '<td><p id="eva_evaluation_behavior_process_sumary_' + (i + 1)+'" /></td>';
|
||||
|
||||
|
||||
@@ -7,11 +7,11 @@ $("#eva_evaluation_behavior_process2_weight_" + i).val("");
|
||||
$("#eva_evaluation_behavior_process2_score_" + i).text("");
|
||||
$("#eva_evaluation_behavior_process2_score2_" + i).val("");
|
||||
$("#eva_evaluation_behavior_process2_sumary2_" + i).text("");
|
||||
$("#eva_evaluation_behavior_process2_target_score1_" + i).val("");
|
||||
$("#eva_evaluation_behavior_process2_target_score2_" + i).val("");
|
||||
$("#eva_evaluation_behavior_process2_target_score3_" + i).val("");
|
||||
$("#eva_evaluation_behavior_process2_target_score4_" + i).val("");
|
||||
$("#eva_evaluation_behavior_process2_target_score5_" + i).val("");
|
||||
//$("#eva_evaluation_behavior_process2_target_score1_" + i).val("");
|
||||
//$("#eva_evaluation_behavior_process2_target_score2_" + i).val("");
|
||||
//$("#eva_evaluation_behavior_process2_target_score3_" + i).val("");
|
||||
//$("#eva_evaluation_behavior_process2_target_score4_" + i).val("");
|
||||
//$("#eva_evaluation_behavior_process2_target_score5_" + i).val("");
|
||||
|
||||
}
|
||||
|
||||
@@ -24,11 +24,11 @@ $("#eva_evaluation_behavior_process2_score_" + i).text(data.score);
|
||||
$("#eva_evaluation_behavior_process2_sumary_" + i).text(data.sumary);
|
||||
$("#eva_evaluation_behavior_process2_score2_" + i).val(data.score2);
|
||||
$("#eva_evaluation_behavior_process2_sumary2_" + i).text(data.sumary2);
|
||||
$("#eva_evaluation_behavior_process2_target_score1_" + i).val(data.target_score1);
|
||||
$("#eva_evaluation_behavior_process2_target_score2_" + i).val(data.target_score2);
|
||||
$("#eva_evaluation_behavior_process2_target_score3_" + i).val(data.target_score3);
|
||||
$("#eva_evaluation_behavior_process2_target_score4_" + i).val(data.target_score4);
|
||||
$("#eva_evaluation_behavior_process2_target_score5_" + i).val(data.target_score5);
|
||||
//$("#eva_evaluation_behavior_process2_target_score1_" + i).val(data.target_score1);
|
||||
//$("#eva_evaluation_behavior_process2_target_score2_" + i).val(data.target_score2);
|
||||
//$("#eva_evaluation_behavior_process2_target_score3_" + i).val(data.target_score3);
|
||||
//$("#eva_evaluation_behavior_process2_target_score4_" + i).val(data.target_score4);
|
||||
//$("#eva_evaluation_behavior_process2_target_score5_" + i).val(data.target_score5);
|
||||
|
||||
}
|
||||
|
||||
@@ -42,11 +42,11 @@ eva_evaluation_behavior_process2Object.score = obj.find("#eva_evaluation_behavio
|
||||
eva_evaluation_behavior_process2Object.sumary = obj.find("#eva_evaluation_behavior_process2_sumary_" + i).text();
|
||||
eva_evaluation_behavior_process2Object.score2 = obj.find("#eva_evaluation_behavior_process2_score2_" + i).val();
|
||||
eva_evaluation_behavior_process2Object.sumary2 = obj.find("#eva_evaluation_behavior_process2_sumary2_" + i).text();
|
||||
eva_evaluation_behavior_process2Object.target_score1 = obj.find("#eva_evaluation_behavior_process2_target_score1_" + i).val();
|
||||
eva_evaluation_behavior_process2Object.target_score2 = obj.find("#eva_evaluation_behavior_process2_target_score2_" + i).val();
|
||||
eva_evaluation_behavior_process2Object.target_score3 = obj.find("#eva_evaluation_behavior_process2_target_score3_" + i).val();
|
||||
eva_evaluation_behavior_process2Object.target_score4 = obj.find("#eva_evaluation_behavior_process2_target_score4_" + i).val();
|
||||
eva_evaluation_behavior_process2Object.target_score5 = obj.find("#eva_evaluation_behavior_process2_target_score5_" + i).val();
|
||||
//eva_evaluation_behavior_process2Object.target_score1 = obj.find("#eva_evaluation_behavior_process2_target_score1_" + i).val();
|
||||
//eva_evaluation_behavior_process2Object.target_score2 = obj.find("#eva_evaluation_behavior_process2_target_score2_" + i).val();
|
||||
//eva_evaluation_behavior_process2Object.target_score3 = obj.find("#eva_evaluation_behavior_process2_target_score3_" + i).val();
|
||||
//eva_evaluation_behavior_process2Object.target_score4 = obj.find("#eva_evaluation_behavior_process2_target_score4_" + i).val();
|
||||
//eva_evaluation_behavior_process2Object.target_score5 = obj.find("#eva_evaluation_behavior_process2_target_score5_" + i).val();
|
||||
|
||||
eva_evaluation_behavior_process2Object.active_mode = obj.find("#isActive_" + i + "_eva_evaluation_behavior_process2").val();
|
||||
|
||||
@@ -90,11 +90,11 @@ function eva_evaluation_behavior_process2_Get(a, blankItem) {
|
||||
|
||||
tag += '<td><p id="eva_evaluation_behavior_process2_behavior_' + (i + 1)+'" /></td>';
|
||||
tag += '<td><input class="form-control" type="number" onchange="Oneva_evaluation_behavior_process2_scoreChange()" id="eva_evaluation_behavior_process2_weight_' + (i + 1)+'" /></td>';
|
||||
tag += '<td><input type="text" class="form-control" id="eva_evaluation_behavior_process2_target_score1_' + (i + 1)+'" /></td>';
|
||||
tag += '<td><input type="text" class="form-control" id="eva_evaluation_behavior_process2_target_score2_' + (i + 1)+'" /></td>';
|
||||
tag += '<td><input type="text" class="form-control" id="eva_evaluation_behavior_process2_target_score3_' + (i + 1)+'" /></td>';
|
||||
tag += '<td><input type="text" class="form-control" id="eva_evaluation_behavior_process2_target_score4_' + (i + 1)+'" /></td>';
|
||||
tag += '<td><input type="text" class="form-control" id="eva_evaluation_behavior_process2_target_score5_' + (i + 1)+'" /></td>';
|
||||
//tag += '<td><input type="text" class="form-control" id="eva_evaluation_behavior_process2_target_score1_' + (i + 1)+'" /></td>';
|
||||
//tag += '<td><input type="text" class="form-control" id="eva_evaluation_behavior_process2_target_score2_' + (i + 1)+'" /></td>';
|
||||
// tag += '<td><input type="text" class="form-control" id="eva_evaluation_behavior_process2_target_score3_' + (i + 1)+'" /></td>';
|
||||
// tag += '<td><input type="text" class="form-control" id="eva_evaluation_behavior_process2_target_score4_' + (i + 1)+'" /></td>';
|
||||
//tag += '<td><input type="text" class="form-control" id="eva_evaluation_behavior_process2_target_score5_' + (i + 1)+'" /></td>';
|
||||
tag += '<td><p id="eva_evaluation_behavior_process2_score_' + (i + 1)+'" /></td>';
|
||||
tag += '<td><p id="eva_evaluation_behavior_process2_sumary_' + (i + 1)+'" /></td>';
|
||||
tag += '<td><input min="0" max="5" step=".01" onchange="Oneva_evaluation_behavior_process2_scoreChange()" class="form-control" type="number" id="eva_evaluation_behavior_process2_score2_' + (i + 1)+'" /></td>';
|
||||
|
||||
208
wwwroot/lib/jquery.calendars/css/flora.calendars.picker.css
Normal file
208
wwwroot/lib/jquery.calendars/css/flora.calendars.picker.css
Normal file
@@ -0,0 +1,208 @@
|
||||
/* Flora styling for jQuery Calendars Picker v2.0.0. */
|
||||
.calendars {
|
||||
background-color: #e0f4d7;
|
||||
color: #000;
|
||||
border: 1px solid #f90;
|
||||
-moz-border-radius: 0.25em;
|
||||
-webkit-border-radius: 0.25em;
|
||||
border-radius: 0.25em;
|
||||
font-family: THSarabunNew;
|
||||
font-size: 19px;
|
||||
}
|
||||
.calendars-rtl {
|
||||
direction: rtl;
|
||||
}
|
||||
.calendars-popup {
|
||||
z-index: 1000;
|
||||
}
|
||||
.calendars-disable {
|
||||
position: absolute;
|
||||
z-index: 100;
|
||||
background-color: white;
|
||||
opacity: 0.5;
|
||||
filter: alpha(opacity=50);
|
||||
}
|
||||
.calendars a {
|
||||
color: #000;
|
||||
text-decoration: none;
|
||||
}
|
||||
.calendars a.calendars-disabled {
|
||||
color: #888;
|
||||
cursor: auto;
|
||||
}
|
||||
.calendars button {
|
||||
margin: 0.25em;
|
||||
padding: 0.125em 0em;
|
||||
background-color: #fc8;
|
||||
border: none;
|
||||
-moz-border-radius: 0.25em;
|
||||
-webkit-border-radius: 0.25em;
|
||||
border-radius: 0.25em;
|
||||
font-weight: bold;
|
||||
}
|
||||
.calendars-nav, .calendars-ctrl {
|
||||
float: left;
|
||||
width: 100%;
|
||||
background-color: #e0f4d7;
|
||||
color: #fff;
|
||||
font-size: 90%;
|
||||
font-weight: bold;
|
||||
}
|
||||
.datepick-ctrl {
|
||||
background-color: #f90;
|
||||
}
|
||||
.calendars-cmd {
|
||||
width: 30%;
|
||||
}
|
||||
.calendars-cmd:hover {
|
||||
background-color: #b1db87;
|
||||
}
|
||||
.calendars-ctrl .calendars-cmd:hover {
|
||||
background-color: #fa4;
|
||||
}
|
||||
.calendars-cmd-prevJump, .calendars-cmd-nextJump {
|
||||
width: 8%;
|
||||
}
|
||||
a.calendars-cmd {
|
||||
height: 1.5em;
|
||||
}
|
||||
button.calendars-cmd {
|
||||
text-align: center;
|
||||
}
|
||||
.calendars-cmd-prev, .calendars-cmd-prevJump, .calendars-cmd-clear {
|
||||
float: left;
|
||||
padding-left: 2%;
|
||||
}
|
||||
.calendars-cmd-current, .calendars-cmd-today {
|
||||
float: left;
|
||||
width: 35%;
|
||||
text-align: center;
|
||||
}
|
||||
.calendars-cmd-next, .calendars-cmd-nextJump, .calendars-cmd-close {
|
||||
float: right;
|
||||
padding-right: 2%;
|
||||
text-align: right;
|
||||
}
|
||||
.calendars-rtl .calendars-cmd-prev, .calendars-rtl .calendars-cmd-prevJump,
|
||||
.calendars-rtl .calendars-cmd-clear {
|
||||
float: right;
|
||||
padding-left: 0%;
|
||||
padding-right: 2%;
|
||||
text-align: right;
|
||||
}
|
||||
.calendars-rtl .calendars-cmd-current, .calendars-rtl .calendars-cmd-today {
|
||||
float: right;
|
||||
}
|
||||
.calendars-rtl .calendars-cmd-next, .calendars-rtl .calendars-cmd-nextJump,
|
||||
.calendars-rtl .calendars-cmd-close {
|
||||
float: left;
|
||||
padding-left: 2%;
|
||||
padding-right: 0%;
|
||||
text-align: left;
|
||||
}
|
||||
.calendars-month-nav {
|
||||
float: left;
|
||||
background-color: #b1db87;
|
||||
text-align: center;
|
||||
}
|
||||
.calendars-month-nav div {
|
||||
float: left;
|
||||
width: 12.5%;
|
||||
margin: 1%;
|
||||
padding: 1%;
|
||||
}
|
||||
.calendars-month-nav span {
|
||||
color: #888;
|
||||
}
|
||||
.calendars-month-row {
|
||||
clear: left;
|
||||
}
|
||||
.calendars-month {
|
||||
float: left;
|
||||
width: 15em;
|
||||
border: 1px solid #83c948;
|
||||
text-align: center;
|
||||
}
|
||||
.calendars-month-header, .calendars-month-header select, .calendars-month-header input {
|
||||
height: 1.5em;
|
||||
background-color: #83c948;
|
||||
color: #fff;
|
||||
font-weight: bold;
|
||||
}
|
||||
.calendars-month-header select, .calendars-month-header input {
|
||||
height: 1.4em;
|
||||
border: none;
|
||||
}
|
||||
.calendars-month-header input {
|
||||
position: absolute;
|
||||
display: none;
|
||||
}
|
||||
.calendars-month table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
.calendars-month thead {
|
||||
border-bottom: 1px solid #aaa;
|
||||
}
|
||||
.calendars-month th, .calendars-month td {
|
||||
margin: 0em;
|
||||
padding: 0em;
|
||||
font-weight: normal;
|
||||
text-align: center;
|
||||
}
|
||||
.calendars-month th {
|
||||
border: 1px solid #b1db87;
|
||||
}
|
||||
.calendars-month th, .calendars-month th a {
|
||||
background-color: #b1db87;
|
||||
color: #000;
|
||||
border: 1px solid #b1db87;
|
||||
}
|
||||
.calendars-month td {
|
||||
background-color: #fff;
|
||||
color: #666;
|
||||
border: 1px solid #b1db87;
|
||||
}
|
||||
.calendars-month td.calendars-week * {
|
||||
background-color: #b1db87;
|
||||
color: #666;
|
||||
border: none;
|
||||
}
|
||||
.calendars-month a {
|
||||
display: block;
|
||||
width: 100%;
|
||||
padding: 0.125em 0em;
|
||||
text-decoration: none;
|
||||
}
|
||||
.calendars-month span {
|
||||
display: block;
|
||||
width: 100%;
|
||||
padding: 0.125em 0em;
|
||||
}
|
||||
.calendars-month td span {
|
||||
color: #888;
|
||||
}
|
||||
.calendars-month td .calendars-other-month {
|
||||
background-color: #e0f4d7;
|
||||
}
|
||||
.calendars-month td .calendars-weekend {
|
||||
background-color: #e0f4d7;
|
||||
}
|
||||
.calendars-month td .calendars-today {
|
||||
background-color: #b1db87;
|
||||
}
|
||||
.calendars-month td .calendars-highlight {
|
||||
background-color: #fc8;
|
||||
}
|
||||
.calendars-month td .calendars-selected {
|
||||
background-color: #f90;
|
||||
color: #fff;
|
||||
}
|
||||
.calendars-status {
|
||||
clear: both;
|
||||
background-color: #b1db87;
|
||||
text-align: center;
|
||||
}
|
||||
.calendars-clear-fix {
|
||||
clear: both;
|
||||
}
|
||||
197
wwwroot/lib/jquery.calendars/css/humanity.calendars.picker.css
Normal file
197
wwwroot/lib/jquery.calendars/css/humanity.calendars.picker.css
Normal file
@@ -0,0 +1,197 @@
|
||||
/* Humanity styling for jQuery Calendars Picker v2.0.0. */
|
||||
.calendars {
|
||||
background-color: #f4f0ec;
|
||||
color: #1e1b1c;
|
||||
border: 1px solid #cb842e;
|
||||
-moz-border-radius: 0.25em;
|
||||
-webkit-border-radius: 0.25em;
|
||||
border-radius: 0.25em;
|
||||
font-family: Arial,Helvetica,Sans-serif;
|
||||
font-size: 90%;
|
||||
}
|
||||
.calendars-rtl {
|
||||
direction: rtl;
|
||||
}
|
||||
.calendars-popup {
|
||||
z-index: 1000;
|
||||
}
|
||||
.calendars-disable {
|
||||
position: absolute;
|
||||
z-index: 100;
|
||||
background-color: white;
|
||||
opacity: 0.5;
|
||||
filter: alpha(opacity=50);
|
||||
}
|
||||
.calendars a {
|
||||
color: #1e1b1c;
|
||||
text-decoration: none;
|
||||
}
|
||||
.calendars a.calendars-disabled {
|
||||
color: #888;
|
||||
cursor: auto;
|
||||
}
|
||||
.calendars button {
|
||||
margin: 0.25em;
|
||||
padding: 0.125em 0em;
|
||||
background-color: #ede4d4;
|
||||
border: none;
|
||||
-moz-border-radius: 0.25em;
|
||||
-webkit-border-radius: 0.25em;
|
||||
border-radius: 0.25em;
|
||||
font-weight: bold;
|
||||
}
|
||||
.calendars-nav, .calendars-ctrl {
|
||||
float: left;
|
||||
width: 100%;
|
||||
background-color: #ede4d4;
|
||||
font-size: 90%;
|
||||
font-weight: bold;
|
||||
}
|
||||
.calendars-ctrl {
|
||||
background-color: #cb842e;
|
||||
}
|
||||
.calendars-cmd {
|
||||
width: 30%;
|
||||
}
|
||||
.calendars-cmd:hover {
|
||||
background-color: #f4f0ec;
|
||||
}
|
||||
.calendars-cmd-prevJump, .calendars-cmd-nextJump {
|
||||
width: 8%;
|
||||
}
|
||||
a.calendars-cmd {
|
||||
height: 1.5em;
|
||||
}
|
||||
button.calendars-cmd {
|
||||
text-align: center;
|
||||
}
|
||||
.calendars-cmd-prev, .calendars-cmd-prevJump, .calendars-cmd-clear {
|
||||
float: left;
|
||||
padding-left: 2%;
|
||||
}
|
||||
.calendars-cmd-current, .calendars-cmd-today {
|
||||
float: left;
|
||||
width: 35%;
|
||||
text-align: center;
|
||||
}
|
||||
.calendars-cmd-next, .calendars-cmd-nextJump, .calendars-cmd-close {
|
||||
float: right;
|
||||
padding-right: 2%;
|
||||
text-align: right;
|
||||
}
|
||||
.calendars-rtl .calendars-cmd-prev, .calendars-rtl .calendars-cmd-prevJump,
|
||||
.calendars-rtl .calendars-cmd-clear {
|
||||
float: right;
|
||||
padding-left: 0%;
|
||||
padding-right: 2%;
|
||||
text-align: right;
|
||||
}
|
||||
.calendars-rtl .calendars-cmd-current, .calendars-rtl .calendars-cmd-today {
|
||||
float: right;
|
||||
}
|
||||
.calendars-rtl .calendars-cmd-next, .calendars-rtl .calendars-cmd-nextJump,
|
||||
.calendars-rtl .calendars-cmd-close {
|
||||
float: left;
|
||||
padding-left: 2%;
|
||||
padding-right: 0%;
|
||||
text-align: left;
|
||||
}
|
||||
.calendars-month-nav {
|
||||
float: left;
|
||||
text-align: center;
|
||||
}
|
||||
.calendars-month-nav div {
|
||||
float: left;
|
||||
width: 12.5%;
|
||||
margin: 1%;
|
||||
padding: 1%;
|
||||
}
|
||||
.calendars-month-nav span {
|
||||
color: #888;
|
||||
}
|
||||
.calendars-month-row {
|
||||
clear: left;
|
||||
}
|
||||
.calendars-month {
|
||||
float: left;
|
||||
width: 17em;
|
||||
border: 1px solid #e0cfc2;
|
||||
text-align: center;
|
||||
}
|
||||
.calendars-month-header, .calendars-month-header select, .calendars-month-header input {
|
||||
height: 1.5em;
|
||||
background-color: #cb842e;
|
||||
color: #fff;
|
||||
font-weight: bold;
|
||||
}
|
||||
.calendars-month-header select, .calendars-month-header input {
|
||||
height: 1.4em;
|
||||
border: none;
|
||||
}
|
||||
.calendars-month-header input {
|
||||
position: absolute;
|
||||
display: none;
|
||||
}
|
||||
.calendars-month table {
|
||||
width: 100%;
|
||||
border: 2px solid transparent;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
.calendars-month th, .calendars-month td {
|
||||
margin: 0em;
|
||||
padding: 0.125em;
|
||||
font-weight: normal;
|
||||
text-align: center;
|
||||
}
|
||||
.calendars-month td.calendars-week,
|
||||
.calendars-month td.calendars-week * {
|
||||
background-color: #cb842e;
|
||||
color: #fff;
|
||||
border: 1px solid #cb842e;
|
||||
}
|
||||
.calendars-month a {
|
||||
display: block;
|
||||
width: 100%;
|
||||
padding: 0.125em 0em;
|
||||
background-color: #ede4d4;
|
||||
color: #000;
|
||||
border: 1px solid #cdc3b7;
|
||||
text-decoration: none;
|
||||
}
|
||||
.calendars-month span {
|
||||
display: block;
|
||||
margin-top: 0.25em;
|
||||
}
|
||||
.calendars-month a {
|
||||
background-color: #ede4d4;
|
||||
color: #444;
|
||||
border: 1px solid #cdc3b7;
|
||||
text-decoration: none;
|
||||
}
|
||||
.calendars-month td span {
|
||||
color: #888;
|
||||
}
|
||||
.calendars-month td .calendars-other-month {
|
||||
background-color: #f4f0ec;
|
||||
}
|
||||
.calendars-month td .calendars-today {
|
||||
background-color: #f5f5b5;
|
||||
border: 1px solid #d9bb73;
|
||||
}
|
||||
.calendars-month td .calendars-highlight {
|
||||
background-color: #f5f0e5;
|
||||
color: #1e1b1c;
|
||||
border: 1px solid #f5ad66;
|
||||
}
|
||||
.calendars-month td .calendars-selected {
|
||||
background-color: #cb842e;
|
||||
color: #fff;
|
||||
border: 1px solid #cb842e;
|
||||
}
|
||||
.calendars-status {
|
||||
clear: both;
|
||||
text-align: center;
|
||||
}
|
||||
.calendars-clear-fix {
|
||||
clear: both;
|
||||
}
|
||||
215
wwwroot/lib/jquery.calendars/css/jquery.calendars.picker.css
Normal file
215
wwwroot/lib/jquery.calendars/css/jquery.calendars.picker.css
Normal file
@@ -0,0 +1,215 @@
|
||||
/* Default styling for jQuery Calendars Picker v2.0.0. */
|
||||
.calendars {
|
||||
background-color: #fff;
|
||||
color: #000;
|
||||
border: 1px solid #444;
|
||||
-moz-border-radius: 0.25em;
|
||||
-webkit-border-radius: 0.25em;
|
||||
border-radius: 0.25em;
|
||||
font-family: THSarabunNew;
|
||||
font-size: 19px;
|
||||
}
|
||||
.calendars-rtl {
|
||||
direction: rtl;
|
||||
}
|
||||
.calendars-popup {
|
||||
z-index: 10000;
|
||||
}
|
||||
.calendars-disable {
|
||||
position: absolute;
|
||||
z-index: 100;
|
||||
background-color: white;
|
||||
opacity: 0.5;
|
||||
filter: alpha(opacity=50);
|
||||
}
|
||||
.calendars a {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
}
|
||||
.calendars a.calendars-disabled {
|
||||
color: #888;
|
||||
cursor: auto;
|
||||
}
|
||||
.calendars button {
|
||||
margin: 0.25em;
|
||||
padding: 0.125em 0em;
|
||||
background-color: #fcc;
|
||||
border: none;
|
||||
-moz-border-radius: 0.25em;
|
||||
-webkit-border-radius: 0.25em;
|
||||
border-radius: 0.25em;
|
||||
font-weight: bold;
|
||||
}
|
||||
.calendars-nav, .calendars-ctrl {
|
||||
float: left;
|
||||
width: 100%;
|
||||
background-color: #000;
|
||||
color: #fff;
|
||||
font-size: 90%;
|
||||
font-weight: bold;
|
||||
}
|
||||
.calendars-ctrl {
|
||||
background-color: #600;
|
||||
}
|
||||
.calendars-cmd {
|
||||
width: 30%;
|
||||
}
|
||||
.calendars-cmd:hover {
|
||||
background-color: #777;
|
||||
}
|
||||
.calendars-ctrl .calendars-cmd:hover {
|
||||
background-color: #f08080;
|
||||
}
|
||||
.calendars-cmd-prevJump, .calendars-cmd-nextJump {
|
||||
width: 8%;
|
||||
}
|
||||
a.calendars-cmd {
|
||||
height: 1.5em;
|
||||
}
|
||||
button.calendars-cmd {
|
||||
text-align: center;
|
||||
}
|
||||
.calendars-cmd-prev, .calendars-cmd-prevJump, .calendars-cmd-clear {
|
||||
float: left;
|
||||
padding-left: 2%;
|
||||
}
|
||||
.calendars-cmd-current, .calendars-cmd-today {
|
||||
float: left;
|
||||
width: 35%;
|
||||
text-align: center;
|
||||
}
|
||||
.calendars-cmd-next, .calendars-cmd-nextJump, .calendars-cmd-close {
|
||||
float: right;
|
||||
padding-right: 2%;
|
||||
text-align: right;
|
||||
}
|
||||
.calendars-rtl .calendars-cmd-prev, .calendars-rtl .calendars-cmd-prevJump,
|
||||
.calendars-rtl .calendars-cmd-clear {
|
||||
float: right;
|
||||
padding-left: 0%;
|
||||
padding-right: 2%;
|
||||
text-align: right;
|
||||
}
|
||||
.calendars-rtl .calendars-cmd-current, .calendars-rtl .calendars-cmd-today {
|
||||
float: right;
|
||||
}
|
||||
.calendars-rtl .calendars-cmd-next, .calendars-rtl .calendars-cmd-nextJump,
|
||||
.calendars-rtl .calendars-cmd-close {
|
||||
float: left;
|
||||
padding-left: 2%;
|
||||
padding-right: 0%;
|
||||
text-align: left;
|
||||
}
|
||||
.calendars-month-nav {
|
||||
float: left;
|
||||
background-color: #777;
|
||||
text-align: center;
|
||||
}
|
||||
.calendars-month-nav div {
|
||||
float: left;
|
||||
width: 12.5%;
|
||||
margin: 1%;
|
||||
padding: 1%;
|
||||
}
|
||||
.calendars-month-nav span {
|
||||
color: #888;
|
||||
}
|
||||
.calendars-month-row {
|
||||
clear: left;
|
||||
}
|
||||
.calendars-month {
|
||||
float: left;
|
||||
width: 15em;
|
||||
border: 1px solid #444;
|
||||
text-align: center;
|
||||
}
|
||||
.calendars-month-header, .calendars-month-header select, .calendars-month-header input {
|
||||
height: 1.5em;
|
||||
background-color: #444;
|
||||
color: #fff;
|
||||
font-weight: bold;
|
||||
}
|
||||
.calendars-month-header select, .calendars-month-header input {
|
||||
height: 1.4em;
|
||||
border: none;
|
||||
}
|
||||
.calendars-month-header input {
|
||||
position: absolute;
|
||||
display: none;
|
||||
}
|
||||
.calendars-month table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
.calendars-month thead {
|
||||
border-bottom: 1px solid #aaa;
|
||||
}
|
||||
.calendars-month th, .calendars-month td {
|
||||
margin: 0em;
|
||||
padding: 0em;
|
||||
font-weight: normal;
|
||||
text-align: center;
|
||||
}
|
||||
.calendars-month th {
|
||||
border: 1px solid #777;
|
||||
}
|
||||
.calendars-month th, .calendars-month th a {
|
||||
background-color: #777;
|
||||
color: #fff;
|
||||
}
|
||||
.calendars-month td {
|
||||
background-color: #eee;
|
||||
border: 1px solid #aaa;
|
||||
}
|
||||
.calendars-month td.calendars-week {
|
||||
border: 1px solid #777;
|
||||
}
|
||||
.calendars-month td.calendars-week * {
|
||||
background-color: #777;
|
||||
color: #fff;
|
||||
border: none;
|
||||
}
|
||||
.calendars-month a {
|
||||
display: block;
|
||||
width: 100%;
|
||||
padding: 0.125em 0em;
|
||||
background-color: #eee;
|
||||
color: #000;
|
||||
text-decoration: none;
|
||||
}
|
||||
.calendars-month span {
|
||||
display: block;
|
||||
width: 100%;
|
||||
padding: 0.125em 0em;
|
||||
}
|
||||
.calendars-month td span {
|
||||
color: #888;
|
||||
}
|
||||
.calendars-month td .calendars-other-month {
|
||||
background-color: #fff;
|
||||
}
|
||||
.calendars-month td .calendars-weekend {
|
||||
background-color: #ddd;
|
||||
}
|
||||
.calendars-month td .calendars-today {
|
||||
background-color: #f0c0c0;
|
||||
}
|
||||
.calendars-month td .calendars-highlight {
|
||||
background-color: #f08080;
|
||||
}
|
||||
.calendars-month td .calendars-selected {
|
||||
background-color: #777;
|
||||
color: #fff;
|
||||
}
|
||||
.calendars-month th.calendars-week {
|
||||
background-color: #777;
|
||||
color: #fff;
|
||||
}
|
||||
.calendars-status {
|
||||
clear: both;
|
||||
background-color: #ddd;
|
||||
text-align: center;
|
||||
}
|
||||
.calendars-clear-fix {
|
||||
clear: both;
|
||||
}
|
||||
199
wwwroot/lib/jquery.calendars/css/redmond.calendars.picker.css
Normal file
199
wwwroot/lib/jquery.calendars/css/redmond.calendars.picker.css
Normal file
@@ -0,0 +1,199 @@
|
||||
/* Redmond styling for jQuery Calendars Picker v2.0.0. */
|
||||
.calendars {
|
||||
background-color: #fff;
|
||||
color: #222;
|
||||
border: 1px solid #4297d7;
|
||||
-moz-border-radius: 0.25em;
|
||||
-webkit-border-radius: 0.25em;
|
||||
border-radius: 0.25em;
|
||||
font-family: Arial,Helvetica,Sans-serif;
|
||||
font-size: 90%;
|
||||
}
|
||||
.calendars-rtl {
|
||||
direction: rtl;
|
||||
}
|
||||
.calendars-popup {
|
||||
z-index: 1000;
|
||||
}
|
||||
.calendars-disable {
|
||||
position: absolute;
|
||||
z-index: 100;
|
||||
background-color: white;
|
||||
opacity: 0.5;
|
||||
filter: alpha(opacity=50);
|
||||
}
|
||||
.calendars a {
|
||||
color: #222;
|
||||
text-decoration: none;
|
||||
}
|
||||
.calendars a.calendars-disabled {
|
||||
color: #888;
|
||||
cursor: auto;
|
||||
}
|
||||
.calendars button {
|
||||
margin: 0.25em;
|
||||
padding: 0.125em 0em;
|
||||
background-color: #5c9ccc;
|
||||
color: #fff;
|
||||
border: none;
|
||||
-moz-border-radius: 0.25em;
|
||||
-webkit-border-radius: 0.25em;
|
||||
border-radius: 0.25em;
|
||||
font-weight: bold;
|
||||
}
|
||||
.calendars-nav, .calendars-ctrl {
|
||||
float: left;
|
||||
width: 100%;
|
||||
background-color: #fff;
|
||||
font-size: 90%;
|
||||
font-weight: bold;
|
||||
}
|
||||
.calendars-ctrl {
|
||||
background-color: #d0e5f5;
|
||||
}
|
||||
.calendars-cmd {
|
||||
width: 30%;
|
||||
}
|
||||
.calendars-cmd:hover {
|
||||
background-color: #dfeffc;
|
||||
}
|
||||
button.calendars-cmd:hover {
|
||||
background-color: #79b7e7;
|
||||
}
|
||||
.calendars-cmd-prevJump, .calendars-cmd-nextJump {
|
||||
width: 8%;
|
||||
}
|
||||
a.calendars-cmd {
|
||||
height: 1.5em;
|
||||
}
|
||||
button.calendars-cmd {
|
||||
text-align: center;
|
||||
}
|
||||
.calendars-cmd-prev, .calendars-cmd-prevJump, .calendars-cmd-clear {
|
||||
float: left;
|
||||
padding-left: 2%;
|
||||
}
|
||||
.calendars-cmd-current, .calendars-cmd-today {
|
||||
float: left;
|
||||
width: 35%;
|
||||
text-align: center;
|
||||
}
|
||||
.calendars-cmd-next, .calendars-cmd-nextJump, .calendars-cmd-close {
|
||||
float: right;
|
||||
padding-right: 2%;
|
||||
text-align: right;
|
||||
}
|
||||
.calendars-rtl .calendars-cmd-prev, .calendars-rtl .calendars-cmd-prevJump,
|
||||
.calendars-rtl .calendars-cmd-clear {
|
||||
float: right;
|
||||
padding-left: 0%;
|
||||
padding-right: 2%;
|
||||
text-align: right;
|
||||
}
|
||||
.calendars-rtl .calendars-cmd-current, .calendars-rtl .calendars-cmd-today {
|
||||
float: right;
|
||||
}
|
||||
.calendars-rtl .calendars-cmd-next, .calendars-rtl .calendars-cmd-nextJump,
|
||||
.calendars-rtl .calendars-cmd-close {
|
||||
float: left;
|
||||
padding-left: 2%;
|
||||
padding-right: 0%;
|
||||
text-align: left;
|
||||
}
|
||||
.calendars-month-nav {
|
||||
float: left;
|
||||
text-align: center;
|
||||
}
|
||||
.calendars-month-nav div {
|
||||
float: left;
|
||||
width: 12.5%;
|
||||
margin: 1%;
|
||||
padding: 1%;
|
||||
}
|
||||
.calendars-month-nav span {
|
||||
color: #888;
|
||||
}
|
||||
.calendars-month-row {
|
||||
clear: left;
|
||||
}
|
||||
.calendars-month {
|
||||
float: left;
|
||||
width: 15em;
|
||||
border: 1px solid #5c9ccc;
|
||||
text-align: center;
|
||||
}
|
||||
.calendars-month-header, .calendars-month-header select, .calendars-month-header input {
|
||||
height: 1.5em;
|
||||
background-color: #5c9ccc;
|
||||
color: #fff;
|
||||
font-weight: bold;
|
||||
}
|
||||
.calendars-month-header select, .calendars-month-header input {
|
||||
height: 1.4em;
|
||||
border: none;
|
||||
}
|
||||
.calendars-month-header input {
|
||||
position: absolute;
|
||||
display: none;
|
||||
}
|
||||
.calendars-month table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
.calendars-month thead {
|
||||
border-bottom: 1px solid #aaa;
|
||||
}
|
||||
.calendars-month th, .calendars-month td {
|
||||
margin: 0em;
|
||||
padding: 0em;
|
||||
font-weight: normal;
|
||||
text-align: center;
|
||||
}
|
||||
.calendars-month th {
|
||||
border: 1px solid #fff;
|
||||
border-bottom: 1px solid #c5dbec;
|
||||
}
|
||||
.calendars-month td {
|
||||
border: 1px solid #c5dbec;
|
||||
}
|
||||
.calendars-month td.calendars-week * {
|
||||
background-color: #d0e5f5;
|
||||
color: #222;
|
||||
border: none;
|
||||
}
|
||||
.calendars-month a {
|
||||
display: block;
|
||||
width: 100%;
|
||||
padding: 0.125em 0em;
|
||||
background-color: #dfeffc;
|
||||
color: #000;
|
||||
text-decoration: none;
|
||||
}
|
||||
.calendars-month span {
|
||||
display: block;
|
||||
width: 100%;
|
||||
padding: 0.125em 0em;
|
||||
}
|
||||
.calendars-month td span {
|
||||
color: #888;
|
||||
}
|
||||
.calendars-month td .calendars-other-month {
|
||||
background-color: #fff;
|
||||
}
|
||||
.calendars-month td .calendars-today {
|
||||
background-color: #fad42e;
|
||||
}
|
||||
.calendars-month td .calendars-highlight {
|
||||
background-color: #79b7e7;
|
||||
}
|
||||
.calendars-month td .calendars-selected {
|
||||
background-color: #4297d7;
|
||||
color: #fff;
|
||||
}
|
||||
.calendars-status {
|
||||
clear: both;
|
||||
text-align: center;
|
||||
}
|
||||
.calendars-clear-fix {
|
||||
clear: both;
|
||||
}
|
||||
200
wwwroot/lib/jquery.calendars/css/smoothness.calendars.picker.css
Normal file
200
wwwroot/lib/jquery.calendars/css/smoothness.calendars.picker.css
Normal file
@@ -0,0 +1,200 @@
|
||||
/* Smoothness styling for jQuery Calendars Picker v2.0.0. */
|
||||
.calendars {
|
||||
background-color: #fff;
|
||||
color: #222;
|
||||
border: 1px solid #aaa;
|
||||
-moz-border-radius: 0.25em;
|
||||
-webkit-border-radius: 0.25em;
|
||||
border-radius: 0.25em;
|
||||
font-family: Arial,Helvetica,Sans-serif;
|
||||
font-size: 90%;
|
||||
}
|
||||
.calendars-rtl {
|
||||
direction: rtl;
|
||||
}
|
||||
.calendars-popup {
|
||||
z-index: 1000;
|
||||
}
|
||||
.calendars-disable {
|
||||
position: absolute;
|
||||
z-index: 100;
|
||||
background-color: white;
|
||||
opacity: 0.5;
|
||||
filter: alpha(opacity=50);
|
||||
}
|
||||
.calendars a {
|
||||
color: #222;
|
||||
text-decoration: none;
|
||||
}
|
||||
.calendars a.calendars-disabled {
|
||||
color: #888;
|
||||
cursor: auto;
|
||||
}
|
||||
.calendars button {
|
||||
margin: 0.25em;
|
||||
padding: 0.125em 0em;
|
||||
background-color: #fcc;
|
||||
border: none;
|
||||
-moz-border-radius: 0.25em;
|
||||
-webkit-border-radius: 0.25em;
|
||||
border-radius: 0.25em;
|
||||
font-weight: bold;
|
||||
}
|
||||
.calendars-nav, .calendars-ctrl {
|
||||
float: left;
|
||||
width: 100%;
|
||||
background-color: #fff;
|
||||
font-size: 90%;
|
||||
font-weight: bold;
|
||||
}
|
||||
.calendars-ctrl {
|
||||
background-color: #fee6e3;
|
||||
}
|
||||
.calendars-cmd {
|
||||
width: 30%;
|
||||
}
|
||||
.calendars-cmd:hover {
|
||||
background-color: #e0e0e0;
|
||||
}
|
||||
.calendars-ctrl .calendars-cmd:hover {
|
||||
background-color: #f08080;
|
||||
}
|
||||
.calendars-cmd-prevJump, .calendars-cmd-nextJump {
|
||||
width: 8%;
|
||||
}
|
||||
a.calendars-cmd {
|
||||
height: 1.5em;
|
||||
}
|
||||
button.calendars-cmd {
|
||||
text-align: center;
|
||||
}
|
||||
.calendars-cmd-prev, .calendars-cmd-prevJump, .calendars-cmd-clear {
|
||||
float: left;
|
||||
padding-left: 2%;
|
||||
}
|
||||
.calendars-cmd-current, .calendars-cmd-today {
|
||||
float: left;
|
||||
width: 35%;
|
||||
text-align: center;
|
||||
}
|
||||
.calendars-cmd-next, .calendars-cmd-nextJump, .calendars-cmd-close {
|
||||
float: right;
|
||||
padding-right: 2%;
|
||||
text-align: right;
|
||||
}
|
||||
.calendars-rtl .calendars-cmd-prev, .calendars-rtl .calendars-cmd-prevJump,
|
||||
.calendars-rtl .calendars-cmd-clear {
|
||||
float: right;
|
||||
padding-left: 0%;
|
||||
padding-right: 2%;
|
||||
text-align: right;
|
||||
}
|
||||
.calendars-rtl .calendars-cmd-current, .calendars-rtl .calendars-cmd-today {
|
||||
float: right;
|
||||
}
|
||||
.calendars-rtl .calendars-cmd-next, .calendars-rtl .calendars-cmd-nextJump,
|
||||
.calendars-rtl .calendars-cmd-close {
|
||||
float: left;
|
||||
padding-left: 2%;
|
||||
padding-right: 0%;
|
||||
text-align: left;
|
||||
}
|
||||
.calendars-month-nav {
|
||||
float: left;
|
||||
text-align: center;
|
||||
}
|
||||
.calendars-month-nav div {
|
||||
float: left;
|
||||
width: 12.5%;
|
||||
margin: 1%;
|
||||
padding: 1%;
|
||||
}
|
||||
.calendars-month-nav span {
|
||||
color: #888;
|
||||
}
|
||||
.calendars-month-row {
|
||||
clear: left;
|
||||
}
|
||||
.calendars-month {
|
||||
float: left;
|
||||
width: 15em;
|
||||
border: 1px solid #aaa;
|
||||
text-align: center;
|
||||
}
|
||||
.calendars-month-header, .calendars-month-header select, .calendars-month-header input {
|
||||
height: 1.5em;
|
||||
background-color: #e0e0e0;
|
||||
color: #222;
|
||||
font-weight: bold;
|
||||
}
|
||||
.calendars-month-header select, .calendars-month-header input {
|
||||
height: 1.4em;
|
||||
border: none;
|
||||
}
|
||||
.calendars-month-header input {
|
||||
position: absolute;
|
||||
display: none;
|
||||
}
|
||||
.calendars-month table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
.calendars-month thead {
|
||||
border-bottom: 1px solid #aaa;
|
||||
}
|
||||
.calendars-month th, .calendars-month td {
|
||||
margin: 0em;
|
||||
padding: 0em;
|
||||
font-weight: normal;
|
||||
text-align: center;
|
||||
}
|
||||
.calendars-month thead tr {
|
||||
border: 1px solid #aaa;
|
||||
}
|
||||
.calendars-month td {
|
||||
background-color: #eee;
|
||||
border: 1px solid #aaa;
|
||||
}
|
||||
.calendars-month td.calendars-week * {
|
||||
background-color: #e0e0e0;
|
||||
color: #222;
|
||||
border: none;
|
||||
}
|
||||
.calendars-month a {
|
||||
display: block;
|
||||
width: 100%;
|
||||
padding: 0.125em 0em;
|
||||
background-color: #eee;
|
||||
color: #000;
|
||||
text-decoration: none;
|
||||
}
|
||||
.calendars-month span {
|
||||
display: block;
|
||||
width: 100%;
|
||||
padding: 0.125em 0em;
|
||||
}
|
||||
.calendars-month td span {
|
||||
color: #888;
|
||||
}
|
||||
.calendars-month td .calendars-other-month {
|
||||
background-color: #fff;
|
||||
}
|
||||
.calendars-month td .calendars-weekend {
|
||||
background-color: #ddd;
|
||||
}
|
||||
.calendars-month td .calendars-today {
|
||||
background-color: #fbf9ee;
|
||||
}
|
||||
.calendars-month td .calendars-highlight {
|
||||
background-color: #dadada;
|
||||
}
|
||||
.calendars-month td .calendars-selected {
|
||||
background-color: #fcc;
|
||||
}
|
||||
.calendars-status {
|
||||
clear: both;
|
||||
text-align: center;
|
||||
}
|
||||
.calendars-clear-fix {
|
||||
clear: both;
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
/* ThemeRoller Blacktie override style sheet for jQuery Calendars Picker v2.0.0. */
|
||||
@import "ui.calendars.picker.css";
|
||||
|
||||
.ui-widget-header a,
|
||||
.ui-widget-header select {
|
||||
color: #eeeeee; /* Set (.ui-widget-header a) colour from theme here */
|
||||
}
|
||||
.ui-widget-header a:hover {
|
||||
background-color: #1c1c1c; /* Set (.ui-state-hover) colours from theme here */
|
||||
color: #ffffff;
|
||||
}
|
||||
.ui-widget-header select,
|
||||
.ui-widget-header option {
|
||||
background-color: #333333; /* Set (.ui-widget-header) background colour from theme here */
|
||||
}
|
||||
.ui-state-highlight a {
|
||||
color: #363636; /* Set (.ui-state-highlight) colour from theme here */
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
/* ThemeRoller Blitzer override style sheet for jQuery Calendars Picker v2.0.0. */
|
||||
@import "ui.calendars.picker.css";
|
||||
|
||||
.ui-widget-header a,
|
||||
.ui-widget-header select {
|
||||
color: #ffffff; /* Set (.ui-widget-header a) colour from theme here */
|
||||
}
|
||||
.ui-widget-header a:hover {
|
||||
background-color: #f6f6f6; /* Set (.ui-state-hover) colours from theme here */
|
||||
color: #111111;
|
||||
}
|
||||
.ui-widget-header select,
|
||||
.ui-widget-header option {
|
||||
background-color: #cc0000; /* Set (.ui-widget-header) background colour from theme here */
|
||||
}
|
||||
.ui-state-highlight a {
|
||||
color: #555555; /* Set (.ui-state-highlight) colour from theme here */
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
/* ThemeRoller Cupertino override style sheet for jQuery Calendars Picker v2.0.0. */
|
||||
@import "ui.calendars.picker.css";
|
||||
|
||||
.ui-widget-header a,
|
||||
.ui-widget-header select {
|
||||
color: #222222; /* Set (.ui-widget-header a) colour from theme here */
|
||||
}
|
||||
.ui-widget-header a:hover {
|
||||
background-color: #f0f0f0; /* Set (.ui-state-hover) colours from theme here */
|
||||
color: #0b5b98;
|
||||
}
|
||||
.ui-widget-header select,
|
||||
.ui-widget-header option {
|
||||
background-color: #e7eef3; /* Set (.ui-widget-header) background colour from theme here */
|
||||
}
|
||||
.ui-state-highlight a {
|
||||
color: #363636; /* Set (.ui-state-highlight) colour from theme here */
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
/* ThemeRoller Dark Hive override style sheet for jQuery Calendars Picker v2.0.0. */
|
||||
@import "ui.calendars.picker.css";
|
||||
|
||||
.ui-widget-header a,
|
||||
.ui-widget-header select {
|
||||
color: #ffffff; /* Set (.ui-widget-header a) colour from theme here */
|
||||
}
|
||||
.ui-widget-header a:hover {
|
||||
background-color: #003147; /* Set (.ui-state-hover) colours from theme here */
|
||||
color: #ffffff;;
|
||||
}
|
||||
.ui-widget-header select,
|
||||
.ui-widget-header option {
|
||||
background-color: #444444; /* Set (.ui-widget-header) background colour from theme here */
|
||||
}
|
||||
.ui-state-highlight a {
|
||||
color: #eeeeee; /* Set (.ui-state-highlight) colour from theme here */
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
/* ThemeRoller DotLuv override style sheet for jQuery Calendars Picker v2.0.0. */
|
||||
@import "ui.calendars.picker.css";
|
||||
|
||||
.ui-widget-header a,
|
||||
.ui-widget-header select {
|
||||
color: #f6f6f6; /* Set (.ui-widget-header a) colour from theme here */
|
||||
}
|
||||
.ui-widget-header a:hover {
|
||||
background-color: #00498f; /* Set (.ui-state-hover) colours from theme here */
|
||||
color: #ffffff;
|
||||
}
|
||||
.ui-widget-header select,
|
||||
.ui-widget-header option {
|
||||
background-color: #0b3e6f; /* Set (.ui-widget-header) background colour from theme here */
|
||||
}
|
||||
.ui-state-highlight a {
|
||||
color: #ffffff; /* Set (.ui-state-highlight) colour from theme here */
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
/* ThemeRoller Eggplant override style sheet for jQuery Calendars Picker v2.0.0. */
|
||||
@import "ui.calendars.picker.css";
|
||||
|
||||
.ui-widget-header a,
|
||||
.ui-widget-header select {
|
||||
color: #ffffff; /* Set (.ui-widget-header a) colour from theme here */
|
||||
}
|
||||
.ui-widget-header a:hover {
|
||||
background-color: #eae6ea; /* Set (.ui-state-hover) colours from theme here */
|
||||
color: #734d99;
|
||||
}
|
||||
.ui-widget-header select,
|
||||
.ui-widget-header option {
|
||||
background-color: #30273a; /* Set (.ui-widget-header) background colour from theme here */
|
||||
}
|
||||
.ui-state-highlight a {
|
||||
color: #fafafa; /* Set (.ui-state-highlight) colour from theme here */
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
/* ThemeRoller ExciteBike override style sheet for jQuery dCalendars Picker v2.0.0. */
|
||||
@import "ui.calendars.picker.css";
|
||||
|
||||
.ui-widget-header a,
|
||||
.ui-widget-header select {
|
||||
color: #e69700; /* Set (.ui-widget-header a) colour from theme here */
|
||||
}
|
||||
.ui-widget-header a:hover {
|
||||
background-color: #2293f7; /* Set (.ui-state-hover) colours from theme here */
|
||||
color: #ffffff;
|
||||
}
|
||||
.ui-widget-header select,
|
||||
.ui-widget-header option {
|
||||
background-color: #f9f9f9; /* Set (.ui-widget-header) background colour from theme here */
|
||||
}
|
||||
.ui-state-highlight a {
|
||||
color: #333333; /* Set (.ui-state-highlight) colour from theme here */
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
/* ThemeRoller Flick override style sheet for jQuery Calendars Picker v2.0.0. */
|
||||
@import "ui.calendars.picker.css";
|
||||
|
||||
.ui-widget-header a,
|
||||
.ui-widget-header select {
|
||||
color: #444444; /* Set (.ui-widget-header a) colour from theme here */
|
||||
}
|
||||
.ui-widget-header a:hover {
|
||||
background-color: #0073ea; /* Set (.ui-state-hover) colours from theme here */
|
||||
color: #ffffff;
|
||||
}
|
||||
.ui-widget-header select,
|
||||
.ui-widget-header option {
|
||||
background-color: #dddddd; /* Set (.ui-widget-header) background colour from theme here */
|
||||
}
|
||||
.ui-state-highlight a {
|
||||
color: #444444; /* Set (.ui-state-highlight) colour from theme here */
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
/* ThemeRoller HotSneaks override style sheet for jQuery Calendars Picker v2.0.0. */
|
||||
@import "ui.calendars.picker.css";
|
||||
|
||||
.ui-widget-header a,
|
||||
.ui-widget-header select {
|
||||
color: #e1e463; /* Set (.ui-widget-header a) colour from theme here */
|
||||
}
|
||||
.ui-widget-header a:hover {
|
||||
background-color: #ccd232; /* Set (.ui-state-hover) colours from theme here */
|
||||
color: #212121;
|
||||
}
|
||||
.ui-widget-header select,
|
||||
.ui-widget-header option {
|
||||
background-color: #35414f; /* Set (.ui-widget-header) background colour from theme here */
|
||||
}
|
||||
.ui-state-highlight a {
|
||||
color: #363636; /* Set (.ui-state-highlight) colour from theme here */
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
/* ThemeRoller Humanity override style sheet for jQuery Calendars Picker v2.0.0. */
|
||||
@import "ui.calendars.picker.css";
|
||||
|
||||
.ui-widget-header a,
|
||||
.ui-widget-header select {
|
||||
color: #ffffff; /* Set (.ui-widget-header a) colour from theme here */
|
||||
}
|
||||
.ui-widget-header a:hover {
|
||||
background-color: #f5f0e5; /* Set (.ui-state-hover) colours from theme here */
|
||||
color: #a46313;
|
||||
}
|
||||
.ui-widget-header select,
|
||||
.ui-widget-header option {
|
||||
background-color: #cb842e; /* Set (.ui-widget-header) background colour from theme here */
|
||||
}
|
||||
.ui-state-highlight a {
|
||||
color: #060200; /* Set (.ui-state-highlight) colour from theme here */
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
/* ThemeRoller Le Frog override style sheet for jQuery Calendars Picker v2.0.0. */
|
||||
@import "ui.calendars.picker.css";
|
||||
|
||||
.ui-widget-header a,
|
||||
.ui-widget-header select {
|
||||
color: #ffffff; /* Set (.ui-widget-header a) colour from theme here */
|
||||
}
|
||||
.ui-widget-header a:hover {
|
||||
background-color: #4eb305; /* Set (.ui-state-hover) colours from theme here */
|
||||
color: #ffffff;
|
||||
}
|
||||
.ui-widget-header select,
|
||||
.ui-widget-header option {
|
||||
background-color: #3a8104; /* Set (.ui-widget-header) background colour from theme here */
|
||||
}
|
||||
.ui-state-highlight a {
|
||||
color: #363636; /* Set (.ui-state-highlight) colour from theme here */
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
/* ThemeRoller MintChoc override style sheet for jQuery Calendars Picker v2.0.0. */
|
||||
@import "ui.calendars.picker.css";
|
||||
|
||||
.ui-widget-header a,
|
||||
.ui-widget-header select {
|
||||
color: #222222; /* Set (.ui-widget-header a) colour from theme here */
|
||||
}
|
||||
.ui-widget-header a:hover {
|
||||
background-color: #44372c; /* Set (.ui-state-hover) colours from theme here */
|
||||
color: #add978;
|
||||
}
|
||||
.ui-widget-header select,
|
||||
.ui-widget-header option {
|
||||
background-color: #cdc2a1; /* Set (.ui-widget-header) background colour from theme here */
|
||||
}
|
||||
.ui-state-highlight a {
|
||||
color: #ffffff; /* Set (.ui-state-highlight) colour from theme here */
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
/* ThemeRoller Overcast override style sheet for jQuery Calendars Picker v2.0.0. */
|
||||
@import "ui.calendars.picker.css";
|
||||
|
||||
.ui-widget-header a,
|
||||
.ui-widget-header select {
|
||||
color: #444444; /* Set (.ui-widget-header a) colour from theme here */
|
||||
}
|
||||
.ui-widget-header a:hover {
|
||||
background-color: #f8f8f8; /* Set (.ui-state-hover) colours from theme here */
|
||||
color: #599fcf;
|
||||
}
|
||||
.ui-widget-header select,
|
||||
.ui-widget-header option {
|
||||
background-color: #dddddd; /* Set (.ui-widget-header) background colour from theme here */
|
||||
}
|
||||
.ui-state-highlight a {
|
||||
color: #444444; /* Set (.ui-state-highlight) colour from theme here */
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
/* ThemeRoller Pepper Grinder override style sheet for jQuery Calendars Picker v2.0.0. */
|
||||
@import "ui.calendars.picker.css";
|
||||
|
||||
.ui-widget-header a,
|
||||
.ui-widget-header select {
|
||||
color: #453821; /* Set (.ui-widget-header a) colour from theme here */
|
||||
}
|
||||
.ui-widget-header a:hover {
|
||||
background-color: #654b24; /* Set (.ui-state-hover) colours from theme here */
|
||||
color: #ffffff;
|
||||
}
|
||||
.ui-widget-header select,
|
||||
.ui-widget-header option {
|
||||
background-color: #ffffff; /* Set (.ui-widget-header) background colour from theme here */
|
||||
}
|
||||
.ui-state-highlight a {
|
||||
color: #3a3427; /* Set (.ui-state-highlight) colour from theme here */
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
/* ThemeRoller Redmond override style sheet for jQuery Calendars Picker v2.0.0. */
|
||||
@import "ui.calendars.picker.css";
|
||||
|
||||
.ui-widget-header a,
|
||||
.ui-widget-header select {
|
||||
color: #ffffff; /* Set (.ui-widget-header a) colour from theme here */
|
||||
}
|
||||
.ui-widget-header a:hover {
|
||||
background-color: #d0e5f5; /* Set (.ui-state-hover) colours from theme here */
|
||||
color: #1d5987;
|
||||
}
|
||||
.ui-widget-header select,
|
||||
.ui-widget-header option {
|
||||
background-color: #5c9ccc; /* Set (.ui-widget-header) background colour from theme here */
|
||||
}
|
||||
.ui-state-highlight a {
|
||||
color: #363636; /* Set (.ui-state-highlight) colour from theme here */
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
/* ThemeRoller Smoothness override style sheet for jQuery Calendars Picker v2.0.0. */
|
||||
@import "ui.calendars.picker.css";
|
||||
|
||||
.ui-widget-header a,
|
||||
.ui-widget-header select {
|
||||
color: #222222; /* Set (.ui-widget-header a) colour from theme here */
|
||||
}
|
||||
.ui-widget-header a:hover {
|
||||
background-color: #dadada; /* Set (.ui-state-hover) colours from theme here */
|
||||
color: #212121;
|
||||
}
|
||||
.ui-widget-header select,
|
||||
.ui-widget-header option {
|
||||
background-color: #cccccc; /* Set (.ui-widget-header) background colour from theme here */
|
||||
}
|
||||
.ui-state-highlight a {
|
||||
color: #363636; /* Set (.ui-state-highlight) colour from theme here */
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
/* ThemeRoller SouthStreet override style sheet for jQuery Calendars Picker v2.0.0. */
|
||||
@import "ui.calendars.picker.css";
|
||||
|
||||
.ui-widget-header a,
|
||||
.ui-widget-header select {
|
||||
color: #222222; /* Set (.ui-widget-header a) colour from theme here */
|
||||
}
|
||||
.ui-widget-header a:hover {
|
||||
background-color: #5a9d1a; /* Set (.ui-state-hover) colours from theme here */
|
||||
color: #ffffff;
|
||||
}
|
||||
.ui-widget-header select,
|
||||
.ui-widget-header option {
|
||||
background-color: #d3e9a0; /* Set (.ui-widget-header) background colour from theme here */
|
||||
}
|
||||
.ui-state-highlight a {
|
||||
color: #363636; /* Set (.ui-state-highlight) colour from theme here */
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
/* ThemeRoller Start override style sheet for jQuery Calendars Picker v2.0.0. */
|
||||
@import "ui.calendars.picker.css";
|
||||
|
||||
.ui-widget-header a,
|
||||
.ui-widget-header select {
|
||||
color: #eaf5f7; /* Set (.ui-widget-header a) colour from theme here */
|
||||
}
|
||||
.ui-widget-header a:hover {
|
||||
background-color: #79c9ec; /* Set (.ui-state-hover) colours from theme here */
|
||||
color: #026890;
|
||||
}
|
||||
.ui-widget-header select,
|
||||
.ui-widget-header option {
|
||||
background-color: #2191c0; /* Set (.ui-widget-header) background colour from theme here */
|
||||
}
|
||||
.ui-state-highlight a {
|
||||
color: #915608; /* Set (.ui-state-highlight) colour from theme here */
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
/* ThemeRoller Sunny override style sheet for jQuery Calendars Picker v2.0.0. */
|
||||
@import "ui.calendars.picker.css";
|
||||
|
||||
.ui-widget-header a,
|
||||
.ui-widget-header select {
|
||||
color: #ffffff; /* Set (.ui-widget-header a) colour from theme here */
|
||||
}
|
||||
.ui-widget-header a:hover {
|
||||
background-color: #ffdd57; /* Set (.ui-state-hover) colours from theme here */
|
||||
color: #381f00;
|
||||
}
|
||||
.ui-widget-header select,
|
||||
.ui-widget-header option {
|
||||
background-color: #817865; /* Set (.ui-widget-header) background colour from theme here */
|
||||
}
|
||||
.ui-state-highlight a {
|
||||
color: #1f1f1f; /* Set (.ui-state-highlight) colour from theme here */
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
/* ThemeRoller SwankyPurse override style sheet for jQuery Calendars Picker v2.0.0. */
|
||||
@import "ui.calendars.picker.css";
|
||||
|
||||
.ui-widget-header a,
|
||||
.ui-widget-header select {
|
||||
color: #eacd86; /* Set (.ui-widget-header a) colour from theme here */
|
||||
}
|
||||
.ui-widget-header a:hover {
|
||||
background-color: #675423; /* Set (.ui-state-hover) colours from theme here */
|
||||
color: #f8eec9;
|
||||
}
|
||||
.ui-widget-header select,
|
||||
.ui-widget-header option {
|
||||
background-color: #261803; /* Set (.ui-widget-header) background colour from theme here */
|
||||
}
|
||||
.ui-state-highlight a {
|
||||
color: #060200; /* Set (.ui-state-highlight) colour from theme here */
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
/* ThemeRoller TronTastic override style sheet for jQuery Calendars Picker v2.0.0. */
|
||||
@import "ui.calendars.picker.css";
|
||||
|
||||
.ui-widget-header a,
|
||||
.ui-widget-header select {
|
||||
color: #222222; /* Set (.ui-widget-header a) colour from theme here */
|
||||
}
|
||||
.ui-widget-header a:hover {
|
||||
background-color: #000000; /* Set (.ui-state-hover) colours from theme here */
|
||||
color: #96f226;
|
||||
}
|
||||
.ui-widget-header select,
|
||||
.ui-widget-header option {
|
||||
background-color: #9fda58; /* Set (.ui-widget-header) background colour from theme here */
|
||||
}
|
||||
.ui-state-highlight a {
|
||||
color: #030303; /* Set (.ui-state-highlight) colour from theme here */
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
/* ThemeRoller UI Darkness override style sheet for jQuery Calendars Picker v2.0.0. */
|
||||
@import "ui.calendars.picker.css";
|
||||
|
||||
.ui-widget-header a,
|
||||
.ui-widget-header select {
|
||||
color: #ffffff; /* Set (.ui-widget-header a) colour from theme here */
|
||||
}
|
||||
.ui-widget-header a:hover {
|
||||
background-color: #0078a3; /* Set (.ui-state-hover) colours from theme here */
|
||||
color: #ffffff;
|
||||
}
|
||||
.ui-widget-header select,
|
||||
.ui-widget-header option {
|
||||
background-color: #333333; /* Set (.ui-widget-header) background colour from theme here */
|
||||
}
|
||||
.ui-state-highlight a {
|
||||
color: #2e7db2; /* Set (.ui-state-highlight) colour from theme here */
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
/* ThemeRoller UI Lightness override style sheet for jQuery Calendars Picker v2.0.0. */
|
||||
@import "ui.calendars.picker.css";
|
||||
|
||||
.ui-widget-header a,
|
||||
.ui-widget-header select {
|
||||
color: #ffffff; /* Set (.ui-widget-header a) colour from theme here */
|
||||
}
|
||||
.ui-widget-header a:hover {
|
||||
background-color: #fdf5ce; /* Set (.ui-state-hover) colours from theme here */
|
||||
color: #c77405;
|
||||
}
|
||||
.ui-widget-header select,
|
||||
.ui-widget-header option {
|
||||
background-color: #f6a828; /* Set (.ui-widget-header) background colour from theme here */
|
||||
}
|
||||
.ui-state-highlight a {
|
||||
color: #363636; /* Set (.ui-state-highlight) colour from theme here */
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
/* ThemeRoller Vader override style sheet for jQuery Calendars Picker v2.0.0. */
|
||||
@import "ui.calendars.picker.css";
|
||||
|
||||
.ui-widget-header a,
|
||||
.ui-widget-header select {
|
||||
color: #ffffff; /* Set (.ui-widget-header a) colour from theme here */
|
||||
}
|
||||
.ui-widget-header a:hover {
|
||||
background-color: #dddddd; /* Set (.ui-state-hover) colours from theme here */
|
||||
color: #000000;
|
||||
}
|
||||
.ui-widget-header select,
|
||||
.ui-widget-header option {
|
||||
background-color: #888888; /* Set (.ui-widget-header) background colour from theme here */
|
||||
}
|
||||
.ui-state-highlight a {
|
||||
color: #cccccc; /* Set (.ui-state-highlight) colour from theme here */
|
||||
}
|
||||
107
wwwroot/lib/jquery.calendars/css/ui.calendars.picker.css
Normal file
107
wwwroot/lib/jquery.calendars/css/ui.calendars.picker.css
Normal file
@@ -0,0 +1,107 @@
|
||||
/* ThemeRoller override style sheet for jQuery Calendars Picker v2.0.0. */
|
||||
.ui-datepicker {
|
||||
display: block;
|
||||
}
|
||||
#ui-datepicker-div,
|
||||
.ui-datepicker-inline {
|
||||
width: 17em;
|
||||
font-size: 75%;
|
||||
}
|
||||
#ui-datepicker-div {
|
||||
z-index: 100;
|
||||
}
|
||||
.ui-datepicker-inline {
|
||||
float: left;
|
||||
}
|
||||
.ui-datepicker-rtl {
|
||||
direction: rtl;
|
||||
}
|
||||
#ui-datepicker-div a,
|
||||
.ui-datepicker-inline a {
|
||||
text-decoration: none;
|
||||
}
|
||||
.ui-datepicker-prompt {
|
||||
height: 1.5em;
|
||||
padding-top: 0.25em;
|
||||
text-align: center;
|
||||
}
|
||||
button.ui-datepicker-cmd {
|
||||
height: 2em;
|
||||
}
|
||||
.ui-datepicker-cmd-clear {
|
||||
float: left;
|
||||
margin-left: 0.25em;
|
||||
}
|
||||
.ui-datepicker-cmd-close {
|
||||
float: right;
|
||||
margin-right: 0.25em;
|
||||
}
|
||||
.ui-datepicker-cmd-prev {
|
||||
position: static;
|
||||
float: left;
|
||||
width: 30%;
|
||||
height: auto;
|
||||
margin-left: 1%;
|
||||
}
|
||||
.ui-datepicker-cmd-next {
|
||||
position: static;
|
||||
float: right;
|
||||
width: 30%;
|
||||
height: auto;
|
||||
margin-right: 1%;
|
||||
text-align: right;
|
||||
}
|
||||
.ui-datepicker-cmd-current,
|
||||
.ui-datepicker-cmd-today {
|
||||
float: left;
|
||||
width: 37%;
|
||||
text-align: center;
|
||||
}
|
||||
.ui-datepicker-month-nav {
|
||||
float: left;
|
||||
text-align: center;
|
||||
}
|
||||
.ui-datepicker-month-nav div {
|
||||
float: left;
|
||||
width: 12.5%;
|
||||
margin: 1%;
|
||||
padding: 1%;
|
||||
}
|
||||
.ui-datepicker-month-nav span {
|
||||
color: #888;
|
||||
}
|
||||
.ui-datepicker-row-break {
|
||||
width: 100%;
|
||||
font-size: 100%;
|
||||
}
|
||||
.ui-datepicker-group {
|
||||
float: left;
|
||||
width: 17em;
|
||||
}
|
||||
.ui-datepicker-group .ui-datepicker-header {
|
||||
height: 1.5em;
|
||||
text-align: center;
|
||||
}
|
||||
.ui-datepicker select,
|
||||
.ui-datepicker-inline select {
|
||||
width: auto;
|
||||
height: 1.66em;
|
||||
border: none;
|
||||
font-weight: bold;
|
||||
}
|
||||
.ui-datepicker th {
|
||||
padding: 0.5em 0.3em;
|
||||
}
|
||||
.ui-datepicker td,
|
||||
.ui-datepicker td a,
|
||||
.ui-datepicker td span {
|
||||
border: 1px solid transparent;
|
||||
text-align: center;
|
||||
}
|
||||
.ui-datepicker-status {
|
||||
padding: 0.25em 0em;
|
||||
text-align: center;
|
||||
}
|
||||
.ui-datepicker .ui-helper-clearfix {
|
||||
clear: both;
|
||||
}
|
||||
BIN
wwwroot/lib/jquery.calendars/img/calendar-blue.gif
Normal file
BIN
wwwroot/lib/jquery.calendars/img/calendar-blue.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 969 B |
BIN
wwwroot/lib/jquery.calendars/img/calendar-green.gif
Normal file
BIN
wwwroot/lib/jquery.calendars/img/calendar-green.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 934 B |
BIN
wwwroot/lib/jquery.calendars/img/calendar.gif
Normal file
BIN
wwwroot/lib/jquery.calendars/img/calendar.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 269 B |
74
wwwroot/lib/jquery.calendars/index.html
Normal file
74
wwwroot/lib/jquery.calendars/index.html
Normal file
@@ -0,0 +1,74 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
|
||||
<title>jQuery Calendars</title>
|
||||
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
|
||||
<script src="js/jquery.plugin.min.js"></script>
|
||||
<script src="js/jquery.calendars.js"></script>
|
||||
<script src="js/jquery.calendars.plus.js"></script>
|
||||
<script src="js/jquery.calendars.coptic.js"></script>
|
||||
<script src="js/jquery.calendars.discworld.js"></script>
|
||||
<script src="js/jquery.calendars.ethiopian.js"></script>
|
||||
<script src="js/jquery.calendars.hebrew.js"></script>
|
||||
<script src="js/jquery.calendars.islamic.js"></script>
|
||||
<script src="js/jquery.calendars.julian.js"></script>
|
||||
<script src="js/jquery.calendars.mayan.js"></script>
|
||||
<script src="js/jquery.calendars.nanakshahi.js"></script>
|
||||
<script src="js/jquery.calendars.nepali.js"></script>
|
||||
<script src="js/jquery.calendars.persian.js"></script>
|
||||
<script src="js/jquery.calendars.taiwan.js"></script>
|
||||
<script src="js/jquery.calendars.thai.js"></script>
|
||||
<script src="js/jquery.calendars.ummalqura.js"></script>
|
||||
<script>
|
||||
$(function() {
|
||||
var calendar;
|
||||
$('#calendar').change(function() {
|
||||
calendar = $.calendars.instance($(this).val());
|
||||
$('#default').text(calendar.local.dateFormat);
|
||||
}).change();
|
||||
$('#check').click(function() {
|
||||
try {
|
||||
var date = calendar.parseDate('', $('#input').val());
|
||||
$('#output').val(calendar.formatDate($('#format').val(), date));
|
||||
}
|
||||
catch (e) {
|
||||
alert(e);
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>jQuery Calendars</h1>
|
||||
<p>This page demonstrates the very basics of the
|
||||
<a href="http://keith-wood.name/calendars.html">jQuery Calendars plugin</a>.
|
||||
It contains the minimum requirements for using the plugin and
|
||||
can be used as the basis for your own experimentation.</p>
|
||||
<p>For more detail see the <a href="http://keith-wood.name/calendarsRef.html">documentation reference</a> page.</p>
|
||||
<p>Select a calendar: <select id="calendar">
|
||||
<option value="coptic">Coptic</option>
|
||||
<option value="discworld">Discworld</option>
|
||||
<option value="ethiopian">Ethiopian</option>
|
||||
<option value="gregorian" selected>Gregorian</option>
|
||||
<option value="hebrew">Hebrew</option>
|
||||
<option value="islamic">Islamic</option>
|
||||
<option value="julian">Julian</option>
|
||||
<option value="mayan">Mayan</option>
|
||||
<option value="nanakshahi">Nanakshahi</option>
|
||||
<option value="nepali">Nepali</option>
|
||||
<option value="persian">Persian</option>
|
||||
<option value="taiwan">Taiwan</option>
|
||||
<option value="thai">Thai</option>
|
||||
<option value="ummalqura">Umm al-Qura</option>
|
||||
</select></p>
|
||||
<p>Enter a date: <input type="text" id="input" value="01/26/2014"> (<span id="default"></span>)</p>
|
||||
<p>Check and format: <input type="text" id="format" value="DD, MM d, yyyy">
|
||||
<button type="button" id="check">Format</button></p>
|
||||
<p>Result: <input type="text" id="output" size="40" readonly></p>
|
||||
<dl>
|
||||
<dt>Github</dt><dd><a href="https://github.com/kbwood/calendars">https://github.com/kbwood/calendars</a></dd>
|
||||
<dt>Bower</dt><dd>kbw-calendars</dd>
|
||||
</dl>
|
||||
</body>
|
||||
</html>
|
||||
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-af.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-af.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Afrikaans localisation for Gregorian/Julian calendars for jQuery.
|
||||
Written by Renier Pretorius and Ruediger Thiede. */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.af = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['Januarie','Februarie','Maart','April','Mei','Junie',
|
||||
'Julie','Augustus','September','Oktober','November','Desember'],
|
||||
monthNamesShort: ['Jan', 'Feb', 'Mrt', 'Apr', 'Mei', 'Jun',
|
||||
'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Des'],
|
||||
dayNames: ['Sondag', 'Maandag', 'Dinsdag', 'Woensdag', 'Donderdag', 'Vrydag', 'Saterdag'],
|
||||
dayNamesShort: ['Son', 'Maan', 'Dins', 'Woens', 'Don', 'Vry', 'Sat'],
|
||||
dayNamesMin: ['So','Ma','Di','Wo','Do','Vr','Sa'],
|
||||
digits: null,
|
||||
dateFormat: 'dd/mm/yyyy',
|
||||
firstDay: 1,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions.af =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.af;
|
||||
}
|
||||
})(jQuery);
|
||||
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-am.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-am.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Amharic (አማርኛ) localisation for Gregorian/Julian calendars for jQuery.
|
||||
Leyu Sisay. */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.am = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['ጃንዋሪ','ፈብርዋሪ','ማርች','አፕሪል','ሜይ','ጁን',
|
||||
'ጁላይ','ኦገስት','ሴፕቴምበር','ኦክቶበር','ኖቬምበር','ዲሴምበር'],
|
||||
monthNamesShort: ['ጃንዋ', 'ፈብር', 'ማርች', 'አፕሪ', 'ሜይ', 'ጁን',
|
||||
'ጁላይ', 'ኦገስ', 'ሴፕቴ', 'ኦክቶ', 'ኖቬም', 'ዲሴም'],
|
||||
dayNames: ['ሰንዴይ', 'መንዴይ', 'ትዩስዴይ', 'ዌንስዴይ', 'ተርሰዴይ', 'ፍራይዴይ', 'ሳተርዴይ'],
|
||||
dayNamesShort: ['ሰንዴ', 'መንዴ', 'ትዩስ', 'ዌንስ', 'ተርሰ', 'ፍራይ', 'ሳተር'],
|
||||
dayNamesMin: ['ሰን', 'መን', 'ትዩ', 'ዌን', 'ተር', 'ፍራ', 'ሳተ'],
|
||||
digits: null,
|
||||
dateFormat: 'dd/mm/yyyy',
|
||||
firstDay: 1,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions.am =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.am;
|
||||
}
|
||||
})(jQuery);
|
||||
24
wwwroot/lib/jquery.calendars/js/jquery.calendars-ar-DZ.js
Normal file
24
wwwroot/lib/jquery.calendars/js/jquery.calendars-ar-DZ.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Algerian (and Tunisian) Arabic localisation for Gregorian/Julian calendars for jQuery.
|
||||
Mohamed Cherif BOUCHELAGHEM -- cherifbouchelaghem@yahoo.fr */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions['ar-DZ'] = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['جانفي', 'فيفري', 'مارس', 'أفريل', 'ماي', 'جوان',
|
||||
'جويلية', 'أوت', 'سبتمبر','أكتوبر', 'نوفمبر', 'ديسمبر'],
|
||||
monthNamesShort: ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12'],
|
||||
dayNames: ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'],
|
||||
dayNamesShort: ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'],
|
||||
dayNamesMin: ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'],
|
||||
digits: null,
|
||||
dateFormat: 'dd/mm/yyyy',
|
||||
firstDay: 6,
|
||||
isRTL: true
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions['ar-DZ'] =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions['ar-DZ'];
|
||||
}
|
||||
})(jQuery);
|
||||
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-ar-EG.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-ar-EG.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Arabic localisation for Gregorian/Julian calendars for jQuery.
|
||||
Mahmoud Khaled -- mahmoud.khaled@badrit.com
|
||||
NOTE: monthNames are the new months names */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions['ar-EG'] = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['يناير', 'فبراير', 'مارس', 'إبريل', 'مايو', 'يونية',
|
||||
'يوليو', 'أغسطس', 'سبتمبر', 'أكتوبر', 'نوفمبر', 'ديسمبر'],
|
||||
monthNamesShort: ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12'],
|
||||
dayNames: ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'],
|
||||
dayNamesShort: ['أحد', 'اثنين', 'ثلاثاء', 'أربعاء', 'خميس', 'جمعة', 'سبت'],
|
||||
dayNamesMin: ['أحد', 'اثنين', 'ثلاثاء', 'أربعاء', 'خميس', 'جمعة', 'سبت'],
|
||||
digits: null,
|
||||
dateFormat: 'dd/mm/yyyy',
|
||||
firstDay: 6,
|
||||
isRTL: true
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions['ar-EG'] =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions['ar-EG'];
|
||||
}
|
||||
})(jQuery);
|
||||
27
wwwroot/lib/jquery.calendars/js/jquery.calendars-ar.js
Normal file
27
wwwroot/lib/jquery.calendars/js/jquery.calendars-ar.js
Normal file
@@ -0,0 +1,27 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Arabic localisation for Gregorian/Julian calendars for jQuery.
|
||||
Khaled Al Horani -- خالد الحوراني -- koko.dw@gmail.com.
|
||||
Updated by Fahad Alqahtani April 2016. */
|
||||
/* NOTE: monthNames are the original months names and they are the Arabic names,
|
||||
not the new months name فبراير - يناير and there isn't any Arabic roots for these months */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.ar = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['كانون الثاني', 'شباط', 'آذار', 'نيسان', 'أيار', 'حزيران',
|
||||
'تموز', 'آب', 'أيلول', 'تشرين الأول', 'تشرين الثاني', 'كانون الأول'],
|
||||
monthNamesShort: 'كانون2_شباط_آذار_نيسان_آذار_حزيران_تموز_آب_أيلول_تشرين1_تشرين2_كانون1'.split('_'),
|
||||
dayNames: ['الأحد', 'الإثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'],
|
||||
dayNamesShort: 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'),
|
||||
dayNamesMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'),
|
||||
digits: $.calendars.substituteDigits(['٠', '١', '٢', '٣', '٤', '٥', '٦', '٧', '٨', '٩']),
|
||||
dateFormat: 'dd/mm/yyyy',
|
||||
firstDay: 1,
|
||||
isRTL: true
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions.ar =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.ar;
|
||||
}
|
||||
})(jQuery);
|
||||
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-az.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-az.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Azerbaijani localisation for Gregorian/Julian calendars for jQuery.
|
||||
Written by Jamil Najafov (necefov33@gmail.com). */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.az = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['Yanvar','Fevral','Mart','Aprel','May','İyun',
|
||||
'İyul','Avqust','Sentyabr','Oktyabr','Noyabr','Dekabr'],
|
||||
monthNamesShort: ['Yan','Fev','Mar','Apr','May','İyun',
|
||||
'İyul','Avq','Sen','Okt','Noy','Dek'],
|
||||
dayNames: ['Bazar','Bazar ertəsi','Çərşənbə axşamı','Çərşənbə','Cümə axşamı','Cümə','Şənbə'],
|
||||
dayNamesShort: ['B','Be','Ça','Ç','Ca','C','Ş'],
|
||||
dayNamesMin: ['B','B','Ç','С','Ç','C','Ş'],
|
||||
digits: null,
|
||||
dateFormat: 'dd.mm.yyyy',
|
||||
firstDay: 1,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions.az =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.az;
|
||||
}
|
||||
})(jQuery);
|
||||
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-bg.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-bg.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Bulgarian localisation for Gregorian/Julian calendars for jQuery.
|
||||
Written by Stoyan Kyosev (http://svest.org). */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.bg = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['Януари','Февруари','Март','Април','Май','Юни',
|
||||
'Юли','Август','Септември','Октомври','Ноември','Декември'],
|
||||
monthNamesShort: ['Яну','Фев','Мар','Апр','Май','Юни',
|
||||
'Юли','Авг','Сеп','Окт','Нов','Дек'],
|
||||
dayNames: ['Неделя','Понеделник','Вторник','Сряда','Четвъртък','Петък','Събота'],
|
||||
dayNamesShort: ['Нед','Пон','Вто','Сря','Чет','Пет','Съб'],
|
||||
dayNamesMin: ['Не','По','Вт','Ср','Че','Пе','Съ'],
|
||||
digits: null,
|
||||
dateFormat: 'dd.mm.yyyy',
|
||||
firstDay: 1,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions.bg =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.bg;
|
||||
}
|
||||
})(jQuery);
|
||||
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-bs.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-bs.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Bosnian localisation for Gregorian/Julian calendars for jQuery.
|
||||
Kenan Konjo. */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.bs = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['Januar','Februar','Mart','April','Maj','Juni',
|
||||
'Juli','August','Septembar','Oktobar','Novembar','Decembar'],
|
||||
monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun',
|
||||
'Jul','Aug','Sep','Okt','Nov','Dec'],
|
||||
dayNames: ['Nedelja','Ponedeljak','Utorak','Srijeda','Četvrtak','Petak','Subota'],
|
||||
dayNamesShort: ['Ned','Pon','Uto','Sri','Čet','Pet','Sub'],
|
||||
dayNamesMin: ['Ne','Po','Ut','Sr','Če','Pe','Su'],
|
||||
digits: null,
|
||||
dateFormat: 'dd.mm.yy',
|
||||
firstDay: 1,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions.bs =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.bs;
|
||||
}
|
||||
})(jQuery);
|
||||
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-ca.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-ca.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Catalan localisation for Gregorian/Julian calendars for jQuery.
|
||||
Writers: (joan.leon@gmail.com). */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.ca = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['Gener','Febrer','Març','Abril','Maig','Juny',
|
||||
'Juliol','Agost','Setembre','Octubre','Novembre','Desembre'],
|
||||
monthNamesShort: ['Gen','Feb','Mar','Abr','Mai','Jun',
|
||||
'Jul','Ago','Set','Oct','Nov','Des'],
|
||||
dayNames: ['Diumenge','Dilluns','Dimarts','Dimecres','Dijous','Divendres','Dissabte'],
|
||||
dayNamesShort: ['Dug','Dln','Dmt','Dmc','Djs','Dvn','Dsb'],
|
||||
dayNamesMin: ['Dg','Dl','Dt','Dc','Dj','Dv','Ds'],
|
||||
digits: null,
|
||||
dateFormat: 'dd/mm/yyyy',
|
||||
firstDay: 1,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions.ca =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.ca;
|
||||
}
|
||||
})(jQuery);
|
||||
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-cs.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-cs.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Czech localisation for Gregorian/Julian calendars for jQuery.
|
||||
Written by Tomas Muller (tomas@tomas-muller.net). */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.cs = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['leden','únor','březen','duben','květen','červen',
|
||||
'červenec','srpen','září','říjen','listopad','prosinec'],
|
||||
monthNamesShort: ['led','úno','bře','dub','kvě','čer',
|
||||
'čvc','srp','zář','říj','lis','pro'],
|
||||
dayNames: ['neděle', 'pondělí', 'úterý', 'středa', 'čtvrtek', 'pátek', 'sobota'],
|
||||
dayNamesShort: ['ne', 'po', 'út', 'st', 'čt', 'pá', 'so'],
|
||||
dayNamesMin: ['ne','po','út','st','čt','pá','so'],
|
||||
digits: null,
|
||||
dateFormat: 'dd.mm.yyyy',
|
||||
firstDay: 1,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions.cs =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.cs;
|
||||
}
|
||||
})(jQuery);
|
||||
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-da.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-da.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Danish localisation for Gregorian/Julian calendars for jQuery.
|
||||
Written by Jan Christensen ( deletestuff@gmail.com). */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.da = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['Januar','Februar','Marts','April','Maj','Juni',
|
||||
'Juli','August','September','Oktober','November','December'],
|
||||
monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun',
|
||||
'Jul','Aug','Sep','Okt','Nov','Dec'],
|
||||
dayNames: ['Søndag','Mandag','Tirsdag','Onsdag','Torsdag','Fredag','Lørdag'],
|
||||
dayNamesShort: ['Søn','Man','Tir','Ons','Tor','Fre','Lør'],
|
||||
dayNamesMin: ['Sø','Ma','Ti','On','To','Fr','Lø'],
|
||||
digits: null,
|
||||
dateFormat: 'dd-mm-yyyy',
|
||||
firstDay: 0,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions.da =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.da;
|
||||
}
|
||||
})(jQuery);
|
||||
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-de-CH.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-de-CH.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Swiss-German localisation for Gregorian/Julian calendars for jQuery.
|
||||
Written by Douglas Jose & Juerg Meier. */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions['de-CH'] = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['Januar','Februar','März','April','Mai','Juni',
|
||||
'Juli','August','September','Oktober','November','Dezember'],
|
||||
monthNamesShort: ['Jan','Feb','Mär','Apr','Mai','Jun',
|
||||
'Jul','Aug','Sep','Okt','Nov','Dez'],
|
||||
dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
|
||||
dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
|
||||
dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
|
||||
digits: null,
|
||||
dateFormat: 'dd.mm.yyyy',
|
||||
firstDay: 1,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions['de-CH'] =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions['de-CH'];
|
||||
}
|
||||
})(jQuery);
|
||||
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-de.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-de.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
German localisation for Gregorian/Julian calendars for jQuery.
|
||||
Written by Milian Wolff (mail@milianw.de). */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.de = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['Januar','Februar','März','April','Mai','Juni',
|
||||
'Juli','August','September','Oktober','November','Dezember'],
|
||||
monthNamesShort: ['Jan','Feb','Mär','Apr','Mai','Jun',
|
||||
'Jul','Aug','Sep','Okt','Nov','Dez'],
|
||||
dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
|
||||
dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
|
||||
dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
|
||||
digits: null,
|
||||
dateFormat: 'dd.mm.yyyy',
|
||||
firstDay: 1,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions.de =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.de;
|
||||
}
|
||||
})(jQuery);
|
||||
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-el.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-el.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Greek localisation for Gregorian/Julian calendars for jQuery.
|
||||
Written by Alex Cicovic (http://www.alexcicovic.com). */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.el = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['Ιανουάριος','Φεβρουάριος','Μάρτιος','Απρίλιος','Μάιος','Ιούνιος',
|
||||
'Ιούλιος','Αύγουστος','Σεπτέμβριος','Οκτώβριος','Νοέμβριος','Δεκέμβριος'],
|
||||
monthNamesShort: ['Ιαν','Φεβ','Μαρ','Απρ','Μαι','Ιουν',
|
||||
'Ιουλ','Αυγ','Σεπ','Οκτ','Νοε','Δεκ'],
|
||||
dayNames: ['Κυριακή','Δευτέρα','Τρίτη','Τετάρτη','Πέμπτη','Παρασκευή','Σάββατο'],
|
||||
dayNamesShort: ['Κυρ','Δευ','Τρι','Τετ','Πεμ','Παρ','Σαβ'],
|
||||
dayNamesMin: ['Κυ','Δε','Τρ','Τε','Πε','Πα','Σα'],
|
||||
digits: null,
|
||||
dateFormat: 'dd/mm/yyyy',
|
||||
firstDay: 1,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions.el =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.el;
|
||||
}
|
||||
})(jQuery);
|
||||
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-en-AU.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-en-AU.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
English/Australia localisation for Gregorian/Julian calendars for jQuery.
|
||||
Based on en-GB. */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions['en-AU'] = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['January','February','March','April','May','June',
|
||||
'July','August','September','October','November','December'],
|
||||
monthNamesShort: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
|
||||
'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
|
||||
dayNames: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'],
|
||||
dayNamesShort: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'],
|
||||
dayNamesMin: ['Su','Mo','Tu','We','Th','Fr','Sa'],
|
||||
digits: null,
|
||||
dateFormat: 'dd/mm/yyyy',
|
||||
firstDay: 1,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions['en-AU'] =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions['en-AU'];
|
||||
}
|
||||
})(jQuery);
|
||||
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-en-GB.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-en-GB.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
English/UK localisation for Gregorian/Julian calendars for jQuery.
|
||||
Stuart. */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions['en-GB'] = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['January','February','March','April','May','June',
|
||||
'July','August','September','October','November','December'],
|
||||
monthNamesShort: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
|
||||
'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
|
||||
dayNames: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'],
|
||||
dayNamesShort: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'],
|
||||
dayNamesMin: ['Su','Mo','Tu','We','Th','Fr','Sa'],
|
||||
digits: null,
|
||||
dateFormat: 'dd/mm/yyyy',
|
||||
firstDay: 1,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions['en-GB'] =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions['en-GB'];
|
||||
}
|
||||
})(jQuery);
|
||||
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-en-NZ.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-en-NZ.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
English/New Zealand localisation for Gregorian/Julian calendars for jQuery.
|
||||
Based on en-GB. */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions['en-NZ'] = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['January','February','March','April','May','June',
|
||||
'July','August','September','October','November','December'],
|
||||
monthNamesShort: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
|
||||
'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
|
||||
dayNames: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'],
|
||||
dayNamesShort: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'],
|
||||
dayNamesMin: ['Su','Mo','Tu','We','Th','Fr','Sa'],
|
||||
digits: null,
|
||||
dateFormat: 'dd/mm/yyyy',
|
||||
firstDay: 1,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions['en-NZ'] =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions['en-NZ'];
|
||||
}
|
||||
})(jQuery);
|
||||
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-eo.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-eo.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Esperanto localisation for Gregorian/Julian calendars for jQuery.
|
||||
Written by Olivier M. (olivierweb@ifrance.com). */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.eo = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['Januaro','Februaro','Marto','Aprilo','Majo','Junio',
|
||||
'Julio','Aŭgusto','Septembro','Oktobro','Novembro','Decembro'],
|
||||
monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun',
|
||||
'Jul','Aŭg','Sep','Okt','Nov','Dec'],
|
||||
dayNames: ['Dimanĉo','Lundo','Mardo','Merkredo','Ĵaŭdo','Vendredo','Sabato'],
|
||||
dayNamesShort: ['Dim','Lun','Mar','Mer','Ĵaŭ','Ven','Sab'],
|
||||
dayNamesMin: ['Di','Lu','Ma','Me','Ĵa','Ve','Sa'],
|
||||
digits: null,
|
||||
dateFormat: 'dd/mm/yyyy',
|
||||
firstDay: 0,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions.eo =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.eo;
|
||||
}
|
||||
})(jQuery);
|
||||
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-es-AR.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-es-AR.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Spanish/Argentina localisation for Gregorian/Julian calendars for jQuery.
|
||||
Written by Esteban Acosta Villafane (esteban.acosta@globant.com) of Globant (http://www.globant.com). */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions['es-AR'] = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['Enero','Febrero','Marzo','Abril','Mayo','Junio',
|
||||
'Julio','Agosto','Septiembre','Octubre','Noviembre','Diciembre'],
|
||||
monthNamesShort: ['Ene','Feb','Mar','Abr','May','Jun',
|
||||
'Jul','Ago','Sep','Oct','Nov','Dic'],
|
||||
dayNames: ['Domingo','Lunes','Martes','Miércoles','Jueves','Viernes','Sábado'],
|
||||
dayNamesShort: ['Dom','Lun','Mar','Mié','Juv','Vie','Sáb'],
|
||||
dayNamesMin: ['Do','Lu','Ma','Mi','Ju','Vi','Sá'],
|
||||
digits: null,
|
||||
dateFormat: 'dd/mm/yyyy',
|
||||
firstDay: 0,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions['es-AR'] =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions['es-AR'];
|
||||
}
|
||||
})(jQuery);
|
||||
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-es-PE.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-es-PE.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Spanish/Perú localisation for Gregorian/Julian calendars for jQuery.
|
||||
Written by Fischer Tirado (fishdev@globant.com) of ASIX (http://www.asixonline.com). */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions['es-PE'] = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['Enero','Febrero','Marzo','Abril','Mayo','Junio',
|
||||
'Julio','Agosto','Septiembre','Octubre','Noviembre','Diciembre'],
|
||||
monthNamesShort: ['Ene','Feb','Mar','Abr','May','Jun',
|
||||
'Jul','Ago','Sep','Oct','Nov','Dic'],
|
||||
dayNames: ['Domingo','Lunes','Martes','Miércoles','Jueves','Viernes','Sábado'],
|
||||
dayNamesShort: ['Dom','Lun','Mar','Mié','Jue','Vie','Sab'],
|
||||
dayNamesMin: ['Do','Lu','Ma','Mi','Ju','Vi','Sa'],
|
||||
digits: null,
|
||||
dateFormat: 'dd/mm/yyyy',
|
||||
firstDay: 0,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions['es-PE'] =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions['es-PE'];
|
||||
}
|
||||
})(jQuery);
|
||||
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-es.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-es.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Spanish localisation for Gregorian/Julian calendars for jQuery.
|
||||
Traducido por Vester (xvester@gmail.com). */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.es = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['Enero','Febrero','Marzo','Abril','Mayo','Junio',
|
||||
'Julio','Agosto','Septiembre','Octubre','Noviembre','Diciembre'],
|
||||
monthNamesShort: ['Ene','Feb','Mar','Abr','May','Jun',
|
||||
'Jul','Ago','Sep','Oct','Nov','Dic'],
|
||||
dayNames: ['Domingo','Lunes','Martes','Miércoles','Jueves','Viernes','Sábado'],
|
||||
dayNamesShort: ['Dom','Lun','Mar','Mié','Juv','Vie','Sáb'],
|
||||
dayNamesMin: ['Do','Lu','Ma','Mi','Ju','Vi','Sá'],
|
||||
digits: null,
|
||||
dateFormat: 'dd/mm/yyyy',
|
||||
firstDay: 1,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions.es =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.es;
|
||||
}
|
||||
})(jQuery);
|
||||
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-et.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-et.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Estonian localisation for Gregorian/Julian calendars for jQuery.
|
||||
Written by Mart Sõmermaa (mrts.pydev at gmail com). */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.et = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['Jaanuar','Veebruar','Märts','Aprill','Mai','Juuni',
|
||||
'Juuli','August','September','Oktoober','November','Detsember'],
|
||||
monthNamesShort: ['Jaan', 'Veebr', 'Märts', 'Apr', 'Mai', 'Juuni',
|
||||
'Juuli', 'Aug', 'Sept', 'Okt', 'Nov', 'Dets'],
|
||||
dayNames: ['Pühapäev', 'Esmaspäev', 'Teisipäev', 'Kolmapäev', 'Neljapäev', 'Reede', 'Laupäev'],
|
||||
dayNamesShort: ['Pühap', 'Esmasp', 'Teisip', 'Kolmap', 'Neljap', 'Reede', 'Laup'],
|
||||
dayNamesMin: ['P','E','T','K','N','R','L'],
|
||||
digits: null,
|
||||
dateFormat: 'dd.mm.yyyy',
|
||||
firstDay: 1,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions.et =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.et;
|
||||
}
|
||||
})(jQuery);
|
||||
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-eu.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-eu.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Basque localisation for Gregorian/Julian calendars for jQuery.
|
||||
Karrikas-ek itzulia (karrikas@karrikas.com). */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.eu = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['Urtarrila','Otsaila','Martxoa','Apirila','Maiatza','Ekaina',
|
||||
'Uztaila','Abuztua','Iraila','Urria','Azaroa','Abendua'],
|
||||
monthNamesShort: ['Urt','Ots','Mar','Api','Mai','Eka',
|
||||
'Uzt','Abu','Ira','Urr','Aza','Abe'],
|
||||
dayNames: ['Igandea','Astelehena','Asteartea','Asteazkena','Osteguna','Ostirala','Larunbata'],
|
||||
dayNamesShort: ['Iga','Ast','Ast','Ast','Ost','Ost','Lar'],
|
||||
dayNamesMin: ['Ig','As','As','As','Os','Os','La'],
|
||||
digits: null,
|
||||
dateFormat: 'yyyy/mm/dd',
|
||||
firstDay: 1,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions.eu =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.eu;
|
||||
}
|
||||
})(jQuery);
|
||||
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-fa.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-fa.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Farsi/Persian localisation for Gregorian/Julian calendars for jQuery.
|
||||
Javad Mowlanezhad -- jmowla@gmail.com */
|
||||
(function($) {
|
||||
'use strict';
|
||||
/* jshint -W100 */
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.fa = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['فروردین','اردیبهشت','خرداد','تیر','مرداد','شهریور',
|
||||
'مهر','آبان','آذر','دی','بهمن','اسفند'],
|
||||
monthNamesShort: ['1','2','3','4','5','6','7','8','9','10','11','12'],
|
||||
dayNames: ['یکشنبه','دوشنبه','سهشنبه','چهارشنبه','پنجشنبه','جمعه','شنبه'],
|
||||
dayNamesShort: ['ی','د','س','چ','پ','ج', 'ش'],
|
||||
dayNamesMin: ['ی','د','س','چ','پ','ج', 'ش'],
|
||||
digits: $.calendars.substituteDigits(['۰', '۱', '۲', '۳', '۴', '۵', '۶', '۷', '۸', '۹']),
|
||||
dateFormat: 'yyyy/mm/dd',
|
||||
firstDay: 6,
|
||||
isRTL: true
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions.fa =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.fa;
|
||||
}
|
||||
})(jQuery);
|
||||
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-fi.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-fi.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Finnish localisation for Gregorian/Julian calendars for jQuery.
|
||||
Written by Harri Kilpiö (harrikilpio@gmail.com). */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.fi = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['Tammikuu','Helmikuu','Maaliskuu','Huhtikuu','Toukokuu','Kesäkuu',
|
||||
'Heinäkuu','Elokuu','Syyskuu','Lokakuu','Marraskuu','Joulukuu'],
|
||||
monthNamesShort: ['Tammi','Helmi','Maalis','Huhti','Touko','Kesä',
|
||||
'Heinä','Elo','Syys','Loka','Marras','Joulu'],
|
||||
dayNamesShort: ['Su','Ma','Ti','Ke','To','Pe','Su'],
|
||||
dayNames: ['Sunnuntai','Maanantai','Tiistai','Keskiviikko','Torstai','Perjantai','Lauantai'],
|
||||
dayNamesMin: ['Su','Ma','Ti','Ke','To','Pe','La'],
|
||||
digits: null,
|
||||
dateFormat: 'dd.mm.yyyy',
|
||||
firstDay: 1,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions.fi =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.fi;
|
||||
}
|
||||
})(jQuery);
|
||||
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-fo.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-fo.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Faroese localisation for Gregorian/Julian calendars for jQuery.
|
||||
Written by Sverri Mohr Olsen, sverrimo@gmail.com */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.fo = {
|
||||
name: 'Gregorianskur',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['Januar','Februar','Mars','Apríl','Mei','Juni',
|
||||
'Juli','August','September','Oktober','November','Desember'],
|
||||
monthNamesShort: ['Jan','Feb','Mar','Apr','Mei','Jun',
|
||||
'Jul','Aug','Sep','Okt','Nov','Des'],
|
||||
dayNames: ['Sunnudagur','Mánadagur','Týsdagur','Mikudagur','Hósdagur','Fríggjadagur','Leyardagur'],
|
||||
dayNamesShort: ['Sun','Mán','Týs','Mik','Hós','Frí','Ley'],
|
||||
dayNamesMin: ['Su','Má','Tý','Mi','Hó','Fr','Le'],
|
||||
digits: null,
|
||||
dateFormat: 'dd-mm-yyyy',
|
||||
firstDay: 0,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions.fo =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.fo;
|
||||
}
|
||||
})(jQuery);
|
||||
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-fr-CH.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-fr-CH.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Swiss French localisation for Gregorian/Julian calendars for jQuery.
|
||||
Written by Martin Voelkle (martin.voelkle@e-tc.ch). */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions['fr-CH'] = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['Janvier','Février','Mars','Avril','Mai','Juin',
|
||||
'Juillet','Août','Septembre','Octobre','Novembre','Décembre'],
|
||||
monthNamesShort: ['Jan','Fév','Mar','Avr','Mai','Jun',
|
||||
'Jul','Aoû','Sep','Oct','Nov','Déc'],
|
||||
dayNames: ['Dimanche','Lundi','Mardi','Mercredi','Jeudi','Vendredi','Samedi'],
|
||||
dayNamesShort: ['Dim','Lun','Mar','Mer','Jeu','Ven','Sam'],
|
||||
dayNamesMin: ['Di','Lu','Ma','Me','Je','Ve','Sa'],
|
||||
digits: null,
|
||||
dateFormat: 'dd.mm.yyyy',
|
||||
firstDay: 1,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions['fr-CH'] =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions['fr-CH'];
|
||||
}
|
||||
})(jQuery);
|
||||
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-fr.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-fr.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
French localisation for Gregorian/Julian calendars for jQuery.
|
||||
Stéphane Nahmani (sholby@sholby.net). */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.fr = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['Janvier','Février','Mars','Avril','Mai','Juin',
|
||||
'Juillet','Août','Septembre','Octobre','Novembre','Décembre'],
|
||||
monthNamesShort: ['Jan','Fév','Mar','Avr','Mai','Jun',
|
||||
'Jul','Aoû','Sep','Oct','Nov','Déc'],
|
||||
dayNames: ['Dimanche','Lundi','Mardi','Mercredi','Jeudi','Vendredi','Samedi'],
|
||||
dayNamesShort: ['Dim','Lun','Mar','Mer','Jeu','Ven','Sam'],
|
||||
dayNamesMin: ['Di','Lu','Ma','Me','Je','Ve','Sa'],
|
||||
digits: null,
|
||||
dateFormat: 'dd/mm/yyyy',
|
||||
firstDay: 1,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions.fr =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.fr;
|
||||
}
|
||||
})(jQuery);
|
||||
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-gl.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-gl.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Iniciacion en galego para a extensión 'UI date picker' para jQuery.
|
||||
Traducido por Manuel (McNuel@gmx.net). */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.gl = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['Xaneiro','Febreiro','Marzo','Abril','Maio','Xuño',
|
||||
'Xullo','Agosto','Setembro','Outubro','Novembro','Decembro'],
|
||||
monthNamesShort: ['Xan','Feb','Mar','Abr','Mai','Xuñ',
|
||||
'Xul','Ago','Set','Out','Nov','Dec'],
|
||||
dayNames: ['Domingo','Luns','Martes','Mércores','Xoves','Venres','Sábado'],
|
||||
dayNamesShort: ['Dom','Lun','Mar','Mér','Xov','Ven','Sáb'],
|
||||
dayNamesMin: ['Do','Lu','Ma','Me','Xo','Ve','Sá'],
|
||||
digits: null,
|
||||
dateFormat: 'dd/mm/yyyy',
|
||||
firstDay: 1,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions.gl =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.gl;
|
||||
}
|
||||
})(jQuery);
|
||||
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-gu.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-gu.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Gujarati (ગુજરાતી) localisation for Gregorian/Julian calendars for jQuery.
|
||||
Naymesh Mistry (naymesh@yahoo.com). */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.gu = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['જાન્યુઆરી','ફેબ્રુઆરી','માર્ચ','એપ્રિલ','મે','જૂન',
|
||||
'જુલાઈ','ઑગસ્ટ','સપ્ટેમ્બર','ઑક્ટોબર','નવેમ્બર','ડિસેમ્બર'],
|
||||
monthNamesShort: ['જાન્યુ','ફેબ્રુ','માર્ચ','એપ્રિલ','મે','જૂન',
|
||||
'જુલાઈ','ઑગસ્ટ','સપ્ટે','ઑક્ટો','નવે','ડિસે'],
|
||||
dayNames: ['રવિવાર','સોમવાર','મંગળવાર','બુધવાર','ગુરુવાર','શુક્રવાર','શનિવાર'],
|
||||
dayNamesShort: ['રવિ','સોમ','મંગળ','બુધ','ગુરુ','શુક્ર','શનિ'],
|
||||
dayNamesMin: ['ર','સો','મં','બુ','ગુ','શુ','શ'],
|
||||
digits: $.calendars.substituteDigits(['૦', '૧', '૨', '૩', '૪', '૫', '૬', '૭', '૮', '૯']),
|
||||
dateFormat: 'dd-M-yyyy',
|
||||
firstDay: 1,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions.gu =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.gu;
|
||||
}
|
||||
})(jQuery);
|
||||
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-he.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-he.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Hebrew localisation for Gregorian/Julian calendars for jQuery.
|
||||
Written by Amir Hardon (ahardon at gmail dot com). */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.he = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['ינואר','פברואר','מרץ','אפריל','מאי','יוני',
|
||||
'יולי','אוגוסט','ספטמבר','אוקטובר','נובמבר','דצמבר'],
|
||||
monthNamesShort: ['1','2','3','4','5','6',
|
||||
'7','8','9','10','11','12'],
|
||||
dayNames: ['ראשון','שני','שלישי','רביעי','חמישי','שישי','שבת'],
|
||||
dayNamesShort: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'],
|
||||
dayNamesMin: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'],
|
||||
digits: null,
|
||||
dateFormat: 'dd/mm/yyyy',
|
||||
firstDay: 0,
|
||||
isRTL: true
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions.he =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.he;
|
||||
}
|
||||
})(jQuery);
|
||||
23
wwwroot/lib/jquery.calendars/js/jquery.calendars-hi-IN.js
Normal file
23
wwwroot/lib/jquery.calendars/js/jquery.calendars-hi-IN.js
Normal file
@@ -0,0 +1,23 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Hindi INDIA localisation for Gregorian/Julian calendars for jQuery.
|
||||
Written by Pawan Kumar Singh. */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions['hi-IN'] = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['जनवरी',' फरवरी', 'मार्च', 'अप्रैल', 'मई', 'जून','जुलाई', 'अगस्त', 'सितम्बर', 'अक्टूबर', 'नवम्बर', 'दिसम्बर'],
|
||||
monthNamesShort: ['जन', 'फर', 'मार्च','अप्रै', 'मई', 'जून','जुलाई', 'अग', 'सित', 'अक्टू', 'नव', 'दिस'],
|
||||
dayNames: ['रविवार', 'सोमवार', 'मंगलवार', 'बुधवार', 'गुरुवार', 'शुक्रवार', 'शनिवार'],
|
||||
dayNamesShort: ['रवि', 'सोम', 'मंगल', 'बुध', 'गुरु', 'शुक्र', 'शनि'],
|
||||
dayNamesMin: ['र','सो','मं','बु','गु','शु','श'],
|
||||
digits: null,
|
||||
dateFormat: 'dd/mm/yyyy',
|
||||
firstDay: 1,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions['hi-IN'] =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions['hi-IN'];
|
||||
}
|
||||
})(jQuery);
|
||||
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-hr.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-hr.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Croatian localisation for Gregorian/Julian calendars for jQuery.
|
||||
Written by Vjekoslav Nesek. */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.hr = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['Siječanj','Veljača','Ožujak','Travanj','Svibanj','Lipanj',
|
||||
'Srpanj','Kolovoz','Rujan','Listopad','Studeni','Prosinac'],
|
||||
monthNamesShort: ['Sij','Velj','Ožu','Tra','Svi','Lip',
|
||||
'Srp','Kol','Ruj','Lis','Stu','Pro'],
|
||||
dayNames: ['Nedjelja','Ponedjeljak','Utorak','Srijeda','Četvrtak','Petak','Subota'],
|
||||
dayNamesShort: ['Ned','Pon','Uto','Sri','Čet','Pet','Sub'],
|
||||
dayNamesMin: ['Ne','Po','Ut','Sr','Če','Pe','Su'],
|
||||
digits: null,
|
||||
dateFormat: 'dd.mm.yyyy.',
|
||||
firstDay: 1,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions.hr =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.hr;
|
||||
}
|
||||
})(jQuery);
|
||||
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-hu.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-hu.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Hungarian localisation for Gregorian/Julian calendars for jQuery.
|
||||
Written by Istvan Karaszi (jquerycalendar@spam.raszi.hu). */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.hu = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['Január', 'Február', 'Március', 'Április', 'Május', 'Június',
|
||||
'Július', 'Augusztus', 'Szeptember', 'Október', 'November', 'December'],
|
||||
monthNamesShort: ['Jan', 'Feb', 'Már', 'Ápr', 'Máj', 'Jún',
|
||||
'Júl', 'Aug', 'Szep', 'Okt', 'Nov', 'Dec'],
|
||||
dayNames: ['Vasárnap', 'Hétfö', 'Kedd', 'Szerda', 'Csütörtök', 'Péntek', 'Szombat'],
|
||||
dayNamesShort: ['Vas', 'Hét', 'Ked', 'Sze', 'Csü', 'Pén', 'Szo'],
|
||||
dayNamesMin: ['V', 'H', 'K', 'Sze', 'Cs', 'P', 'Szo'],
|
||||
digits: null,
|
||||
dateFormat: 'yyyy-mm-dd',
|
||||
firstDay: 1,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions.hu =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.hu;
|
||||
}
|
||||
})(jQuery);
|
||||
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-hy.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-hy.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Armenian localisation for Gregorian/Julian calendars for jQuery.
|
||||
Written by Levon Zakaryan (levon.zakaryan@gmail.com). */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.hy = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['Հունվար','Փետրվար','Մարտ','Ապրիլ','Մայիս','Հունիս',
|
||||
'Հուլիս','Օգոստոս','Սեպտեմբեր','Հոկտեմբեր','Նոյեմբեր','Դեկտեմբեր'],
|
||||
monthNamesShort: ['Հունվ','Փետր','Մարտ','Ապր','Մայիս','Հունիս',
|
||||
'Հուլ','Օգս','Սեպ','Հոկ','Նոյ','Դեկ'],
|
||||
dayNames: ['կիրակի','եկուշաբթի','երեքշաբթի','չորեքշաբթի','հինգշաբթի','ուրբաթ','շաբաթ'],
|
||||
dayNamesShort: ['կիր','երկ','երք','չրք','հնգ','ուրբ','շբթ'],
|
||||
dayNamesMin: ['կիր','երկ','երք','չրք','հնգ','ուրբ','շբթ'],
|
||||
digits: null,
|
||||
dateFormat: 'dd.mm.yyyy',
|
||||
firstDay: 1,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions.hy =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.hy;
|
||||
}
|
||||
})(jQuery);
|
||||
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-id.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-id.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Indonesian localisation for Gregorian/Julian calendars for jQuery.
|
||||
Written by Deden Fathurahman (dedenf@gmail.com). */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.id = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['Januari','Februari','Maret','April','Mei','Juni',
|
||||
'Juli','Agustus','September','Oktober','Nopember','Desember'],
|
||||
monthNamesShort: ['Jan','Feb','Mar','Apr','Mei','Jun',
|
||||
'Jul','Agus','Sep','Okt','Nop','Des'],
|
||||
dayNames: ['Minggu','Senin','Selasa','Rabu','Kamis','Jumat','Sabtu'],
|
||||
dayNamesShort: ['Min','Sen','Sel','Rab','kam','Jum','Sab'],
|
||||
dayNamesMin: ['Mg','Sn','Sl','Rb','Km','jm','Sb'],
|
||||
digits: null,
|
||||
dateFormat: 'dd/mm/yyyy',
|
||||
firstDay: 0,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions.id =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.id;
|
||||
}
|
||||
})(jQuery);
|
||||
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-is.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-is.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Icelandic localisation for Gregorian/Julian calendars for jQuery.
|
||||
Written by Haukur H. Thorsson (haukur@eskill.is). */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.is = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['Janúar','Febrúar','Mars','Apríl','Maí','Júní',
|
||||
'Júlí','Ágúst','September','Október','Nóvember','Desember'],
|
||||
monthNamesShort: ['Jan','Feb','Mar','Apr','Maí','Jún',
|
||||
'Júl','Ágú','Sep','Okt','Nóv','Des'],
|
||||
dayNames: ['Sunnudagur','Mánudagur','Þriðjudagur','Miðvikudagur','Fimmtudagur','Föstudagur','Laugardagur'],
|
||||
dayNamesShort: ['Sun','Mán','Þri','Mið','Fim','Fös','Lau'],
|
||||
dayNamesMin: ['Su','Má','Þr','Mi','Fi','Fö','La'],
|
||||
digits: null,
|
||||
dateFormat: 'dd/mm/yyyy',
|
||||
firstDay: 0,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions.is =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.is;
|
||||
}
|
||||
})(jQuery);
|
||||
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-it.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-it.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Italian localisation for Gregorian/Julian calendars for jQuery.
|
||||
Written by Apaella (apaella@gmail.com). */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.it = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['Gennaio','Febbraio','Marzo','Aprile','Maggio','Giugno',
|
||||
'Luglio','Agosto','Settembre','Ottobre','Novembre','Dicembre'],
|
||||
monthNamesShort: ['Gen','Feb','Mar','Apr','Mag','Giu',
|
||||
'Lug','Ago','Set','Ott','Nov','Dic'],
|
||||
dayNames: ['Domenica','Lunedì','Martedì','Mercoledì','Giovedì','Venerdì','Sabato'],
|
||||
dayNamesShort: ['Dom','Lun','Mar','Mer','Gio','Ven','Sab'],
|
||||
dayNamesMin: ['Do','Lu','Ma','Me','Gio','Ve','Sa'],
|
||||
digits: null,
|
||||
dateFormat: 'dd/mm/yyyy',
|
||||
firstDay: 1,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions.it =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.it;
|
||||
}
|
||||
})(jQuery);
|
||||
26
wwwroot/lib/jquery.calendars/js/jquery.calendars-ja.js
Normal file
26
wwwroot/lib/jquery.calendars/js/jquery.calendars-ja.js
Normal file
@@ -0,0 +1,26 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Japanese localisation for Gregorian/Julian calendars for jQuery.
|
||||
Written by Kentaro SATO (kentaro@ranvis.com). */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.ja = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['1月','2月','3月','4月','5月','6月',
|
||||
'7月','8月','9月','10月','11月','12月'],
|
||||
monthNamesShort: ['1月','2月','3月','4月','5月','6月',
|
||||
'7月','8月','9月','10月','11月','12月'],
|
||||
dayNames: ['日曜日','月曜日','火曜日','水曜日','木曜日','金曜日','土曜日'],
|
||||
dayNamesShort: ['日','月','火','水','木','金','土'],
|
||||
dayNamesMin: ['日','月','火','水','木','金','土'],
|
||||
digits: $.calendars.substituteChineseDigits(
|
||||
['〇', '一', '二', '三', '四', '五', '六', '七', '八', '九'], ['', '十', '百', '千']),
|
||||
dateFormat: 'yyyy/mm/dd',
|
||||
firstDay: 0,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions.ja =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.ja;
|
||||
}
|
||||
})(jQuery);
|
||||
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-ka.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-ka.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Georgian localisation for Gregorian/Julian calendars for jQuery.
|
||||
Andrei Gorbushkin. */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.ka = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['იანვარი','თებერვალი','მარტი','აპრილი','მაისი','ივნისი',
|
||||
'ივლისი','აგვისტო','სექტემბერი','ოქტომბერი','ნოემბერი','დეკემბერი'],
|
||||
monthNamesShort: ['იან', 'თებ', 'მარ', 'აპრ', 'მაისი', 'ივნ',
|
||||
'ივლ', 'აგვ', 'სექ', 'ოქტ', 'ნოე', 'დეკ'],
|
||||
dayNames: ['კვირა', 'ორშაბათი', 'სამშაბათი', 'ოთხშაბათი', 'ხუთშაბათი', 'პარასკევი', 'შაბათი'],
|
||||
dayNamesShort: ['კვ', 'ორშ', 'სამ', 'ოთხ', 'ხუთ', 'პარ', 'შაბ'],
|
||||
dayNamesMin: ['კვ','ორ','სმ','ოთ', 'ხშ', 'პრ','შბ'],
|
||||
digits: null,
|
||||
dateFormat: 'dd/mm/yyyy',
|
||||
firstDay: 1,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions.ka =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.ka;
|
||||
}
|
||||
})(jQuery);
|
||||
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-km.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-km.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Khmer initialisation for Gregorian/Julian calendars for jQuery.
|
||||
Written by Sovichet Tep (sovichet.tep@gmail.com). */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.km = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['ខែមករា','ខែកុម្ភៈ','ខែមិនា','ខែមេសា','ខែឧសភា','ខែមិថុនា',
|
||||
'ខែកក្កដា','ខែសីហា','ខែកញ្ញា','ខែតុលា','ខែវិច្ឆិកា','ខែធ្នូ'],
|
||||
monthNamesShort: ['មក', 'កុ', 'មិនា', 'មេ', 'ឧស', 'មិថុ',
|
||||
'កក្ក', 'សី', 'កញ្ញា', 'តុលា', 'វិច្ឆិ', 'ធ្នូ'],
|
||||
dayNames: ['ថ្ងៃអាទិត្យ', 'ថ្ងៃចន្ទ', 'ថ្ងៃអង្គារ', 'ថ្ងៃពុធ', 'ថ្ងៃព្រហស្បត្តិ៍', 'ថ្ងៃសុក្រ', 'ថ្ងៃសៅរ៍'],
|
||||
dayNamesShort: ['អា', 'ចន្ទ', 'អង្គ', 'ពុធ', 'ព្រហ', 'សុ', 'សៅរ៍'],
|
||||
dayNamesMin: ['អា','ច','អ','ពុ','ព្រ','សុ','ស'],
|
||||
digits: null,
|
||||
dateFormat: 'dd/mm/yyyy',
|
||||
firstDay: 1,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions.km =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.km;
|
||||
}
|
||||
})(jQuery);
|
||||
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-ko.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-ko.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Korean localisation for Gregorian/Julian calendars for jQuery.
|
||||
Written by DaeKwon Kang (ncrash.dk@gmail.com), Edited by Genie. */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.ko = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['1월','2월','3월','4월','5월','6월',
|
||||
'7월','8월','9월','10월','11월','12월'],
|
||||
monthNamesShort: ['1월','2월','3월','4월','5월','6월',
|
||||
'7월','8월','9월','10월','11월','12월'],
|
||||
dayNames: ['일요일','월요일','화요일','수요일','목요일','금요일','토요일'],
|
||||
dayNamesShort: ['일','월','화','수','목','금','토'],
|
||||
dayNamesMin: ['일','월','화','수','목','금','토'],
|
||||
digits: null,
|
||||
dateFormat: 'yyyy-mm-dd',
|
||||
firstDay: 0,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions.ko =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.ko;
|
||||
}
|
||||
})(jQuery);
|
||||
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-lt.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-lt.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Lithuanian localisation for Gregorian/Julian calendars for jQuery.
|
||||
Arturas Paleicikas <arturas@avalon.lt>. */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.lt = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['Sausis','Vasaris','Kovas','Balandis','Gegužė','Birželis',
|
||||
'Liepa','Rugpjūtis','Rugsėjis','Spalis','Lapkritis','Gruodis'],
|
||||
monthNamesShort: ['Sau','Vas','Kov','Bal','Geg','Bir',
|
||||
'Lie','Rugp','Rugs','Spa','Lap','Gru'],
|
||||
dayNames: ['sekmadienis','pirmadienis','antradienis','trečiadienis','ketvirtadienis','penktadienis','šeštadienis'],
|
||||
dayNamesShort: ['sek','pir','ant','tre','ket','pen','šeš'],
|
||||
dayNamesMin: ['Se','Pr','An','Tr','Ke','Pe','Še'],
|
||||
digits: null,
|
||||
dateFormat: 'yyyy-mm-dd',
|
||||
firstDay: 1,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions.lt =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.lt;
|
||||
}
|
||||
})(jQuery);
|
||||
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-lv.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-lv.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Latvian localisation for Gregorian/Julian calendars for jQuery.
|
||||
Arturas Paleicikas <arturas.paleicikas@metasite.net>. */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.lv = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['Janvāris','Februāris','Marts','Aprīlis','Maijs','Jūnijs',
|
||||
'Jūlijs','Augusts','Septembris','Oktobris','Novembris','Decembris'],
|
||||
monthNamesShort: ['Jan','Feb','Mar','Apr','Mai','Jūn',
|
||||
'Jūl','Aug','Sep','Okt','Nov','Dec'],
|
||||
dayNames: ['svētdiena','pirmdiena','otrdiena','trešdiena','ceturtdiena','piektdiena','sestdiena'],
|
||||
dayNamesShort: ['svt','prm','otr','tre','ctr','pkt','sst'],
|
||||
dayNamesMin: ['Sv','Pr','Ot','Tr','Ct','Pk','Ss'],
|
||||
digits: null,
|
||||
dateFormat: 'dd-mm-yyyy',
|
||||
firstDay: 1,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions.lv =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.lv;
|
||||
}
|
||||
})(jQuery);
|
||||
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-me-ME.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-me-ME.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Montenegrin localisation for Gregorian/Julian calendars for jQuery.
|
||||
By Miloš Milošević - fleka d.o.o. */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions['me-ME'] = {
|
||||
name: 'Gregorijanski',
|
||||
epochs: ['pne', 'ne'],
|
||||
monthNames: ['Januar','Februar','Mart','April','Maj','Jun',
|
||||
'Jul','Avgust','Septembar','Oktobar','Novembar','Decembar'],
|
||||
monthNamesShort: ['Jan', 'Feb', 'Mar', 'Apr', 'Maj', 'Jun',
|
||||
'Jul', 'Avg', 'Sep', 'Okt', 'Nov', 'Dec'],
|
||||
dayNames: ['Neđelja', 'Poneđeljak', 'Utorak', 'Srijeda', 'Četvrtak', 'Petak', 'Subota'],
|
||||
dayNamesShort: ['Neđ', 'Pon', 'Uto', 'Sri', 'Čet', 'Pet', 'Sub'],
|
||||
dayNamesMin: ['Ne','Po','Ut','Sr','Če','Pe','Su'],
|
||||
digits: null,
|
||||
dateFormat: 'dd/mm/yyyy',
|
||||
firstDay: 1,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions['me-ME'] =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions['me-ME'];
|
||||
}
|
||||
})(jQuery);
|
||||
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-me.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-me.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Montenegrin localisation for Gregorian/Julian calendars for jQuery.
|
||||
By Miloš Milošević - fleka d.o.o. */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.me = {
|
||||
name: 'Грегоријански',
|
||||
epochs: ['пне', 'не'],
|
||||
monthNames: ['Јануар','Фебруар','Март','Април','Мај','Јун',
|
||||
'Јул','Август','Септембар','Октобар','Новембар','Децембар'],
|
||||
monthNamesShort: ['Јан', 'Феб', 'Мар', 'Апр', 'Мај', 'Јун',
|
||||
'Јул', 'Авг', 'Сеп', 'Окт', 'Нов', 'Дец'],
|
||||
dayNames: ['Неђеља', 'Понеђељак', 'Уторак', 'Сриједа', 'Четвртак', 'Петак', 'Субота'],
|
||||
dayNamesShort: ['Неђ', 'Пон', 'Уто', 'Сри', 'Чет', 'Пет', 'Суб'],
|
||||
dayNamesMin: ['Не','По','Ут','Ср','Че','Пе','Су'],
|
||||
digits: null,
|
||||
dateFormat: 'dd/mm/yyyy',
|
||||
firstDay: 1,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions.me =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.me;
|
||||
}
|
||||
})(jQuery);
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user