A few questions regarding JS and JQuery.

A place for discussion about skinning and design. Before posting questions here you should review the documentation about creating skins.

This thread is closed to new posts. You must sign in to post in the forums.
8/7/2010 7:24:32 AM
Gravatar
Total Posts 2239

Re: A few questions regarding JS and JQuery.

Hi Isaac,

The default file manager uses the QTfile css and it is usally listed below the rest of the CSS files in your style.config. The way the CSSHandler works is if any css file has an error in it, the handler doesn't read anything after the error. I would check the jQuery stylesheet for problems. The most common problem is the use of parentheses without single quotes.

I think I ran across this one time with a jQueryUI stylesheet. I had all of the image references wrapped in single quotes but I didn't wrap things like:

filter:Alpha(Opacity=70)

Once I wrapped the Opacity like so, everything worked fine again:

filter:Alpha('Opacity=70')

HTH,
Joe D

8/7/2010 7:47:39 AM
Gravatar
Total Posts 18439

Re: A few questions regarding JS and JQuery.

One additional thought on this, if you are loading the css for jquery ui directly in the skin using style.config, then you should set IncludejQueryUI to false on the stylesheet combiner control in layout.master to avoid loading 2 different jquery ui css themes

<portal:StyleSheetCombiner id="StyleSheetCombiner" runat="server" UseIconsForAdminLinks="false" IncludejQueryUI="false" />

otherwise there might be conflicts caused by loading 2 sets of css.

Best,

Joe

8/8/2010 7:09:54 PM
Gravatar
Total Posts 12

Re: A few questions regarding JS and JQuery.

Joe Audette,

I did both of the things you suggested and that seems to have fixed it.

Once again, thanks for the help.

 

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