Hi,
I have AyncUpload control on the page.
When I remove it, all my jQuery functions work properly.
When I add it I get the error message: '.something is not a function', e.g. '.tabs is not a function'.
function pageLoad() {
$(".popup-wizard #tabs").tabs();
}
When I remove this definition, I get next error of the next line of code in this js file.
$(".datepicker").datepicker is not a function
/**///dtpicker
$(".datepicker").datepicker({
showOn: "button",
buttonImage: "/assets/img/icon-calendar-small.gif",
buttonImageOnly: true,
buttonText: 'Pick a date',
showOtherMonths: true,
dateFormat: 'dd/mm/yy',
firstDay: 1
});
I try to copy my jQuery code to different places, and the result is the same.
Is it known issue?
I have AyncUpload control on the page.
<telerik:RadAsyncUpload MaxFileInputsCount="1" MaxFileSize="2097152" AllowedFileExtensions="bmp,jpg,jpeg,gif,png" ID="ImageAsyncUpload" OnFileUploaded="PhotoUploaded" TargetFolder="~/Test" OnClientFileUploadFailed="OnPhotoUploadFailed" OnClientFileSelected="OnPhotoSelected" OnClientValidationFailed="PhotoValidationFailed" OnClientFileUploaded="OnPhotoUploaded" runat="server"></telerik:RadAsyncUpload>When I add it I get the error message: '.something is not a function', e.g. '.tabs is not a function'.
function pageLoad() {
$(".popup-wizard #tabs").tabs();
}
When I remove this definition, I get next error of the next line of code in this js file.
$(".datepicker").datepicker is not a function
/**///dtpicker
$(".datepicker").datepicker({
showOn: "button",
buttonImage: "/assets/img/icon-calendar-small.gif",
buttonImageOnly: true,
buttonText: 'Pick a date',
showOtherMonths: true,
dateFormat: 'dd/mm/yy',
firstDay: 1
});
I try to copy my jQuery code to different places, and the result is the same.
Is it known issue?