Я загружаю контент через AJAX-вызов в строку таблицы, добавленную в DOM на лету. Я вызываю функцию выбора даты в моей функции обратного вызова, и календарь показывает нормально. Однако, когда я нажимаю на дату, я получаю сообщение об ошибке: inst is null. Вот мой код:
$(document).ready(function() {
$(".edit").live("click", function() {
//Delete previously loaded edit row
$("#tempEditRow").remove();
//Get the record id of the row to be edited
var recordID = $(this).parent("td").parent("tr").attr("id");
//Add the new row to the document
$(this).parent("td").parent("tr").after("<tr id=\"tempEditRow\"><td id=\"tempEditCell\" colspan=\"100\"></td></tr>")
//Get a reference to the new row
var container = $("#tempEditCell");
//Populate the container
populateContainer("/wpm/includes/ajax_editApplication.cfm?id=" + recordID, container);
});
});
function populateContainer(ajaxUrl, container) {
//Populate the container
$.ajax({
url: ajaxUrl,
cache: false,
success: function(html){
$(container).html(html);
$('.datepicker').datepicker();
}
});
}
Я пытался удалить класс hasDatepicker, удалить все ссылки на указатель даты и т. Д., Но ничего не работает. Заранее спасибо за помощь!