This question is locked. New answers and comments are not allowed.
I have a page that uses JQuery dialog feature to pop up a form. It works fine usually, but after adding a telerik tab component to my page the dialog box stops working and causes a 'Object doesn't support this property or method' javascript error.
The dialog will work on its own (eg; no telerik tabs component on the page), the tab component works regardless. What I am seeing is that:
alert ( $("#actionDialog").dialog ) // this produces the string 'Object' which makes perfect sense as 'dialog' is the JQuery dialog funtion I have set up.
BUT, if i add the telerik tabs to the page...
alert ( $("#actionDialog").dialog ) // Now produces the string 'Undefined'. And the dialog no longer functions.
Seems somehow there is a conflict of interests or dialog is somehow being dereferenced?? I would greatly appreciate any assisatnce or ideas on this...
Cheers,
Andy
The dialog will work on its own (eg; no telerik tabs component on the page), the tab component works regardless. What I am seeing is that:
alert ( $("#actionDialog").dialog ) // this produces the string 'Object' which makes perfect sense as 'dialog' is the JQuery dialog funtion I have set up.
BUT, if i add the telerik tabs to the page...
alert ( $("#actionDialog").dialog ) // Now produces the string 'Undefined'. And the dialog no longer functions.
Seems somehow there is a conflict of interests or dialog is somehow being dereferenced?? I would greatly appreciate any assisatnce or ideas on this...
Cheers,
Andy