Artisteer 4 Skins Break Time Picker in Blog Edit Page

This is the place to report bugs and get support. When posting in this forum, please always provide as much detail as possible.

Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum, do not report it as a bug.

This is the place to report bugs and get support

When posting in this forum, please try to provide as many relevant details as possible. Particularly the following:

  • What operating system were you running when the bug appeared?
  • What database platform is your site using?
  • What version of mojoPortal are you running?
  • What version of .NET do you use?
  • What steps are necessary to reproduce the issue? Compare expected results vs actual results.
Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum.
This thread is closed to new posts. You must sign in to post in the forums.
10/22/2012 2:53:03 PM
Gravatar
Total Posts 18439

Artisteer 4 Skins Break Time Picker in Blog Edit Page

Hi All,

Wanted to bring this to your attention if you are using an Artisteer 4 skin you may notice that the time picker in the blog edit page is broken.

From my investigations it seems that a javascript error is happening in the script.js file generated by Artisteer 4. I'm not sure if the script files are the same in all Artisteer 4 skins or not but the problem can be solved by editing the script.js file.

If you look for this:

if ($.support.transition) {
nextItem.addClass(this.settings.direction);
tmp = nextItem.get(0).offsetHeight;

(in my script its at about line # 986)

wrap a try catch return around this line like this:

try{
tmp = nextItem.get(0).offsetHeight;
catch{ return;}

If it turns out the script file is always the same then I may be able to overwrite it in our skin exporter plugin, I need to investigate further to find out if that is the case.

Best,

Joe

10/22/2012 2:58:08 PM
Gravatar
Total Posts 18439

Re: Artisteer 4 Skins Break Time Picker in Blog Edit Page

It seems the script.js is not the same for all designs, there is a difference in file size from skin to skin so unfortunately this will have to be a manual fix for now.

10/23/2012 3:08:39 PM
Gravatar
Total Posts 18439

Re: Artisteer 4 Skins Break Time Picker in Blog Edit Page

Updated solution. My previous solution breaks the Artisteer slide show. The problem is caused because both the artisteer script and the jquery ui script define slider therefore the one in the Artisteer script breaks the jquery ui slider.

The solution is to edit the Artisteer script.js file and do a find and replace, find "slider" and replace with "artslider"

This solves the problem without breaking the Artiseer slide show.

I'm still trying to find a way to do this in our exporter but not having any luck so far.

Best,

Joe

10/24/2012 11:21:39 AM
Gravatar
Total Posts 18439

Re: Artisteer 4 Skins Break Time Picker in Blog Edit Page

I've just uploaded version 1.7 of our Artisteer skin exporter plugin which fixes this problem by renaming the slider in the Artisteer script.js  file so it doesn't clash with slider in jQueryUI. If you've previously obtained it you can get the latest version from your Order History under the "My Account" link. I've tested to make sure that with this fix header slide shows created in Artisteer still work in the exported skin.

Best,

Joe

You must sign in to post in the forums. This thread is closed to new posts.