JQuery Dialog() Error
I get the error message shown below when I click the button: ($'#billing_button_addTime') billingController.dialogAddTime.dialog is not a function billingController is created
Solution 1:
BillingController.prototype.dialogAddTime = $('');
This does not look right to me.... You may have to do is to define the div in the html
<div id="billingDialog"></div>
And then in script use as follows:
BillingController.prototype.dialogAddTime = $('#billingDialog');
Hari Gangadharan
Solution 2:
I boneheadedly forgot to include the JQuery UI script. Thanks everyone.
Post a Comment for "JQuery Dialog() Error"