I have try to copy to different location and attached it to my custom edit CMS page.
But It seems it conflicting between version. I want to use Autocomplete. And If I reference saperately using Jquery.UI,1.8.4 - I get zIndex Error, and It seems it use the old version. 1.7.2
But If I change it that jquery.ui, It solve my problem.
I got exactly this problem in a custom section; I got around it by just including jQuery 1.5 and jQuery UI 1.8 in my custom section master page; as the "head" content placeholder in the umbracoPage.master is after all the core scripts, the new versions will override them and work.
I get this one error in the console:
Uncaught TypeError: Object function (a,b){return new d.fn.init(a,b,g)} has no method 'cookie'
I tried to use jQuery.noConflict(true), but unfortunately jQueryUI just looks at the jQuery global object - you can't give it a custom one. However, you can do a horribly disgusting workaround:
This works for what I'm doing and has stopped the above error. It is pretty horrible though, and very untested for anything else. I'd like a better way of doing it.
Upgrade JQUERY.UI from 1.7.2 to 1.8.4
Hi,
I want to use Autocomplete control from JQuery.UI. inside my custom edit page.
But The problem is I need to replace /umbracoui/js/jquery.ui from 1.7.2 into 1.8.4
At this moment it worked fine. But Anyone experience any problem by replacing this JQUERY.UI. ?
Thanks for your information
Why replace it, why not just put it in a different location?
I have try to copy to different location and attached it to my custom edit CMS page.
But It seems it conflicting between version.
I want to use Autocomplete.
And If I reference saperately using Jquery.UI,1.8.4 - I get zIndex Error, and It seems it use the old version.
1.7.2
But If I change it that jquery.ui, It solve my problem.
What do you recommend ?
Thanks
I suggest that Umbraco team should update it to 1.8.6
other, tinymce should be updated to newest 3.3.9.2
these version are most bugs fix.
I notice when you upgrade that.. the popup will not work.
When you drag, it has weird effect. You can't even drag it .. only the white frame is move..
I guess I need to use other autocomplete plugin which can display an image.
I got exactly this problem in a custom section; I got around it by just including jQuery 1.5 and jQuery UI 1.8 in my custom section master page; as the "head" content placeholder in the umbracoPage.master is after all the core scripts, the new versions will override them and work.
I get this one error in the console:
Uncaught TypeError: Object function (a,b){return new d.fn.init(a,b,g)} has no method 'cookie'
...but everything seems to work :o/
I tried to use jQuery.noConflict(true), but unfortunately jQueryUI just looks at the jQuery global object - you can't give it a custom one. However, you can do a horribly disgusting workaround:
jQuery15(function($) { $('#blah').autocomplete(...); });
This works for what I'm doing and has stopped the above error. It is pretty horrible though, and very untested for anything else. I'd like a better way of doing it.
is working on a reply...