Skip to main content

Bug Tracker

Side navigation

#5171 closed bug (invalid)

Opened September 05, 2009 06:47PM UTC

Closed October 13, 2009 01:01AM UTC

Last modified March 15, 2012 11:13AM UTC

Jquery UI portlets on ie problems and dialog problems

Reported by: jcanaway Owned by:
Priority: major Milestone: 1.4
Component: unfiled Version: 1.3.2
Keywords: Portlet on IE Dialogs on IE Cc:
Blocked by: Blocking:
Description

alright i am running jquery ui on my website i am still in development phase so far and i am using portlets and dialogs ok my sort functions and addclass functions are not working they work in Fire Fox, Safari, Google chrome, opera but dose not work in IE7 or below and i need this problem fixed and i was wondering if you had any IE fixes for this problem also the dialog is not adding classes (addclass) or hidden the dialog on IE ether like how it works on firefox or any of the other browsers and i can seem to figure it out and this i need for my website i like jquery and everything this library can do for me but the problems with IE suck can you help if you need any more info please post a response alright and thank you

this is a snap let of my jquery UI sortable portlets

$(function() {

/* ------- Sortable Starts Here ------- */

$(".column").sortable({

accept: 'content',

revert: true,

scroll: true,

scrollSpeed: 40,

appendTo: 'body',

connectWith: '.column',

cancel: '.disabled',

revertDuration:50000,

handle: '.portlet-header',

opacity: 0.80,

});

$(".portlet").addClass("ui-widget-1 ui-widget-content-1 ui-helper-clearfix-1 ui-corner-all")

.find(".portlet-header")

.addClass("ui-widget-header-1 ui-corner-header")

.prepend('<div class="ui-icon2 ui-exit"> </div><div class="ui-icon-1 ui-mini-1"> </div>')

.end()

.find(".portlet-content")

.addClass("widget-content-1");

$(".portlet-header .ui-icon-1").click(function() {

$(this).toggleClass("ui-icon-minusthick");

$(this).parents(".portlet:first").find(".portlet-content").toggle();

$(this).parents(".portlet:first").find(".portlet-header").toggleClass("min-header");

});

});

this is a snap let of my jquery UI dialog

/* ----- Dialog Starts here ----- */

$(function() {

$("#dialog").dialog({

bgiframe: true,

autoOpen: false,

width: 400,

minWidth: 400,

minHeight: 150,

modal: false,

stack: true,

});

$('#dialog').dialog('option', 'title', '<span class="myTitle">Current Status</span>');

$('#updateS').click(function() {

$('#dialog').dialog('open');

});

});

Attachments (0)
Change History (1)

Changed October 13, 2009 01:01AM UTC by dmethvin comment:1

resolution: → invalid
status: newclosed

This is not a jQuery core bug. Please use the jQuery forums or contact the author via the method they request. For jQuery UI plugins, please file a bug on http://dev.jqueryui.com .