Сообщение от gus_ak
|
Вот этот кусок
|
если он действительно там всё должно работать
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>jQuery UI Datepicker - Default functionality</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/sunny/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css" />
<style type="text/css">
body{
font-size: 12px;
}
.active .ui-state-default{
background: rgba(102, 255, 102, 1)
}
.active:hover .ui-state-default{
background: rgba(255, 255, 0, 1)
}
</style>
<script>
$(function() {
$.datepicker.regional['ru'] = {
closeText: 'Закрыть',
prevText: '<Пред',
nextText: 'След>',
currentText: 'Сегодня',
monthNames: ['Январь','Февраль','Март','Апрель','Май','Июнь', 'Июль','Август','Сентябрь','Октябрь','Ноябрь','Декабрь'],
monthNamesShort: ['Янв','Фев','Мар','Апр','Май','Июн', 'Июл','Авг','Сен','Окт','Ноя','Дек'],
dayNames: ['воскресенье','понедельник','вторник','среда','четверг','пятница','суббота'],
dayNamesShort: ['вск','пнд','втр','срд','чтв','птн','сбт'],
dayNamesMin: ['Вс','Пн','Вт','Ср','Чт','Пт','Сб'],
dateFormat: 'dd.mm.yy',
firstDay: 1,
isRTL: false,
showOtherMonths:true,
selectOtherMonths:true,
changeMonth:true,
changeYear: false,
showAnim:'scale'
};
$.datepicker.setDefaults($.datepicker.regional['ru']);
var obj = {};
obj.ClientInfo = $("#ClientInfoDiv").html();
$("#ClientInfoDiv").empty();
alert($("body").html())
$("#ClientInfoDiv").append(obj.ClientInfo);
$("#DateEndWork").datepicker();
$("#PaymentDate").datepicker();
$("#TimeEndWork").timepicker({'timeFormat': 'H:i'});
});
</script>
</head>
<body>
<div id="ClientInfoDiv">
<div class="d-col colorblock" style="margin-left: 40px;">
<div class="f-col" style="width: 170px;">
<label> Оплатить: </label>
<input type="text" name="date_1" class="date_1" value="" id="PaymentDate"></input>
<div class="date_btn"></div>
</div>
<div class="f-col" style="width: 170px;">
<label> Выдача заказа: </label>
<input type="text" name="date_1" class="date_1" value="" id="DateEndWork"></input>
<div class="date_btn"></div>
</div>
<div class="f-col" style="width: 170px;">
<label> Время: </label>
<input type="text" name="date_1" class="date_1" value="" id="TimeEndWork"></input>
<div class="time_btn"></div>
</div>
</div>
</div>
</body>
</html>