I am experiencing a strange issue with the CAutoComplete widget (which is awesome, btw) when using it in conjunction with CJuiTabs.
I have a view file that uses CJuiTabs to display a ton of content from our DB. I also have a CAutoComplete widget that is embedded in the main.php layout file via a custom widget.
Each of them works fine independently, and the CJuiTabs widget continues to work just fine alongside the CAutoComplete widget. However, the CAutoComplete widget stops working when the CJuiTabs widget is present. When I commented out the PHP code that generates the CJuiTabs widget, voila! The CAutoComplete widget began working normally again.
There is no error at all in the Firebug console, and I can tell that the jQuery autocomplete is working, because FireQuery shows that the jQuery event handler is attached to the correct input element.
I verified that the element that CJuiTabs is attached to and the element the CAutoComplete widget is attached to both have unique values for their HTML id attributes, so the conflict is not caused by them having the same ID.
Does anyone have any idea what could be going on here? Thanks in advance for your help!