You're not meeting the HTML requirements for tabs to work. A tab's
markup needs to look like:
tab1
The href must be a fragment identifier pointing to the div that acts
as tab content pane.
--Klaus
On 3 Apr., 05:41, expresso wrote:
> For some reason, when my first div loads, I'm seeing all
use the demo page index.html at the jquery ui package download from
jquery.com. in this page, u can see in the left of the 'open dialog'
button, the little icon disappeared in ie6, but in ff, it works ok.
another question, the icon buttons in ie6 is rectangle, how can i get
the circle corn shaps,
when the size of content in dialog is large, and is overflow, but
there is no scrolling bar at the dialog in ie6. in ff, there is bar
appeared, and works ok.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"jQuery UI"
hi, steveeray
thanks a lot, your code can solved the problem.
On 4月1日, 上午2时59分, steveeray wrote:
> Found this solution in another post:
>
> if ($.browser.msie) {
> $('#accordion div').css('zoom', '1');
>
> }
>
> On Mar 29, 6:50 am, "joshuaxu...@gmail.com"
> wrote:
>
> > just use the de
We're looking into this issue. Zips are being corrupted in some
downloads. Stay tuned
On Mar 29, 10:34 pm, "l...@liamsmith.net" wrote:
> Hello,
>
> I've been trying to put together a custom theme, using the ThemeRoller
> application (http://jqueryui.com/themeroller/) but once I've
> download
For some reason, when my first div loads, I'm seeing all 3 text show up even
though they're in different containers:
$(document).ready(function() {
$('#Tabs').tabs({ fx: { opacity: 'toggle'} });
});
tab1
tab2
tab3
Try the fillSpace option if this helps:
http://jqueryui.com/demos/accordion/#option-autoHeight
fillSpace
If set, the accordion completely fills the height of the parent
element. Overrides autoheight.
Code examples
Initialize a accordion with the fillSpace option specified.
$('.selector').ac
Hi Nick -
I think the display:block property is needed for the icon div to
maintain dimension or it will collapse but it's probably wrapping
because you need to float this left or right so it will sit on the
same line as the text. The UI team is working on building a rich set
of buttons (with ico
Hi all -
Looks like the custom theme download is a bit broken at the moment.
I've elevated this to the team leads and we'll try to track down a
solution soon. Sorry for the inconvenience!
- Todd
On Apr 2, 2:42 pm, Petre KOSTOV wrote:
> OK,
> Is there some officials that might have some news ?
Hi Loren -
I just checked and the custom theme download is having some issues
right now. We're looking into it now. Sorry for the inconvenience.
- Todd
On Apr 2, 4:47 pm, Loren wrote:
> Hi, I'm trying to create a custom UI theme. Love the interface for
> creating the theme. Unfortunately I h
Hi Chad -
Welcome. I just checked and was able to reproduce this so it's broken
if you try to download a custom theme. I just elevated this up to the
core team to track down. Thanks for the tip!
- Todd
On Apr 2, 8:28 pm, builderchad wrote:
> This is my first post so hello to everyone. I am a
Richard -
Thanks for writing back on that. I do think that passing variables, or
allowing percent-based units would be useful. I'll try to submit a
request ticket.
Interestingly, I was able to get this to work:
grid: [$('ul#days li').width(), 1],
where it's set up in an onload function, and
This is my first post so hello to everyone. I am a private contractor
in the uk and starting to use jquery ui (which is excellent!) with
drupal.
Kind regards,
Chad.
p.s. I was wondering if the themeroller/custom save option on the site
is broken. I did look around to see if there was any menti
Hi, I'm trying to create a custom UI theme. Love the interface for
creating the theme. Unfortunately I have not been able to unzip the
archive it produced. I am able to unzip any of the pre-build themes,
but when creating a custom one I get this:
Archive: jquery-ui-1.7.1.custom.zip
End-of-c
Add this css
.ui-datepicker { z-index: 100; }
- Richard
On Wed, Apr 1, 2009 at 1:55 PM, Link wrote:
>
> Using both datepicker and slider in a form, when the datepicker shows,
> it displays underneath a slider which is right below it. Is there
> anyway to change this?
>
> >
>
--~--~-~
Yes, the default font-size on the default ThemeRoller theme is set in ems,
and with a value that when combined with body { font-size: 62.5%; } will
align pixels with ems, so 11px=1.1em, 14px=1.4em. If setting the body
font-size to 62.5% isn't an option, or not one you want, you can set the
font-siz
This isn't supported currently, but sounds like a really interesting idea.
My guess it it will actually take building in support for % resizing, which
has been discussed before, but not worked on as far as I know. You could
enter a feature request ticket here:
http://dev.jqueryui.com/newticket (no
Looks like you've found a bug. It seems it depends on how many handles, and
which handle(s). I just played around a bit with two handles and three
handles. I'm definitely getting unexpected results. I'll dig into this.
Thanks.
- Richard
On Thu, Apr 2, 2009 at 5:44 PM, jake wrote:
>
> > > 2) whe
Anyone?
On Apr 1, 2:55 pm, Link wrote:
> Using bothdatepickerandsliderin a form, when thedatepickershows,
> it displays underneath asliderwhich is right below it. Is there
> anyway to change this?
--~--~-~--~~~---~--~~
You received this message because you are su
> > 2) when dragging the left handle towards right, it can't pass the
> > right handle. Can we make it a customizable option so the user can
> > control if this behaviour is allowed? (most of the time i think it
> > should be allowed for a better user experience)
>
> This is the default behavior w
Thank you for your response Richard! Yeah, I had a feeling there is a
reason why it is done.
My colleague and I have talked about option #1 (copy values back to
actual/hidden form element within form). We know it is possible but we were
really hopeful of not resorting to this as it is no better
On Thu, Apr 2, 2009 at 4:14 PM, Andrew wrote:
>
> Hey Scott,
>
> Thanks for the reply! Since I posted this thread, I have found out
> that jQuery UI Dialog takes the indicated and removes it from
> its place within the HTML and moves it to the end of the
> element. This might seem okay for so
Good eye, Will. I swear I carefully went-over that code.
top:-100px or not, it's evident that the 's CSS top: is being
overwritten by subsequent code, so increasing that wouldn't change
anything.
I'll create a fungible repro case and post a ticket...
**--** Steve
On Apr 1, 10:38 am, Will De
I'm trying to set up a div to be draggable and resizable, on a grid.
Think of Google's Calendar, where events can be dragged from one day
to another, or spread across days, or resized within a specific day.
That sort of thing.
The problem is that all of the documentation dealing with the "grid"
p
I would think it makes sense to toggle the flag first--only because
the snippet I posted was a stripped-down test to see if I understood
it properly. What I was hoping to do was maintain a list of currently
opened dialogs, relying on the close function to trigger a dialog
inventory of sorts. As t
Try this, Kai,
function obj_xxx() {
$("#test").draggable();
// Other stuff as normal..
this.otherMethod= function() {...}
}
This way, the draggable code will fire when you instantiate the
function object.
The $( function(){}); wrapper in your example isn't firing because
it's not in the
Hey Scott,
Thanks for the reply! Since I posted this thread, I have found out
that jQuery UI Dialog takes the indicated and removes it from
its place within the HTML and moves it to the end of the
element. This might seem okay for some, however we have a
setup immediately within the element
Never mind.. I got it working ;)
Tnx though :)
On Apr 1, 6:39 pm, moleculezz wrote:
> Hello,
> Where exactly am I to put that piece of code you provided ?
>
> On Mar 31, 8:59 pm, steveeray wrote:
>
> > Found this solution in another post:
>
> > if ($.browser.msie) {
> > $('#accordiondiv
The close event does occur after the dialog has closed. The flag for
whether or not the dialog is open gets toggled just after the event.
I suppose we could toggle the flag immediately before the event, but
in terms of doing something after a dialog closes, you definitely
don't need to check this
Anyone know how to be able to load content when clicking the header?
thx,
Derek
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"jQuery UI" group.
To post to this group, send email to jquery-ui@googlegroups.com
To un
Untested, but this should work:
$('.boxButton').each(function() {
var dialog = $(this).next('.boxDialog').dialog({
autoOpen: false,
bgiframe: true,
modal: true
});
$(this).click(function() {
dialog.dialog('open');
});
});
On Apr 2, 2:58 pm, Andre
ENVIRONMENT: jQuery 1.3.2, jQuery UI 1.7.1 Core + Dialog
I have been trying to create some generic jQuery preparation functions
that would setup buttons to open different modal dialog boxes on a
page. Rather than hard coding the logic or dynamically generating the
necessary logic, I thought I ca
Hi, i found a bug in datepicker, if i have chosen a date and try to
change it using keyboard then i can only choose an earlier date, if i
choose a later one in same month then it wont get changed. It might be
an easy bug, but i couldn't find where the error happens. Hope anybody
could solve it. Th
As Gaurav noted, it's pretty lame that jQuery requires a theme for the
UI components to work, but that it doesn't mention that explicitly
anywhere. Like Gaurav, I'm trying to keep my filesizes as small as
possible. In fact, since I'm using the Google hosted APIs, it's all
external; where would som
OK,
Is there some officials that might have some news ?
Thank you !
2009/4/2 Karmoxie
>
> I also am having problems with the download.
>
> I just want the progress bar.
>
> I have tried with a custom theme, without a custom theme(which the zip
> had no index.html), and the quick downloads.
> No
I also am having problems with the download.
I just want the progress bar.
I have tried with a custom theme, without a custom theme(which the zip
had no index.html), and the quick downloads.
No matter which I choose I could not see the progress bar in the
index.html
Karmoxie
On Apr 2, 10:04 a
Hello everybody !
I have a problem downloading customized packages from the
ui.jquery.com site :
1. with a windows PC (XP & Vista) I receive corrupted zips;
2. when I get them using Mac, the package is OK (I could deflate it)
but the rendering is absolutely not the same with what I see whan I'm
c
Hi,
I am using objects in JS and I am trying to add draggable() into a DIV
that works when I move the function out of the object context.
Example:
function obj_xxx() {
this.init = function() {
$(function() { $("#test").draggable();
}
}
testobj = new obj_xxx();
testobj.init();
That does not
I have a jQuery UI accordion where the first pane has little content
but the third, non-default pane has lots of content. I create the
accordion with default parameters. When I switch to the third pane, it
gets a scrollbar, which I think is a bug. It should accommodate the
whole content, shouldn't
I would like to perform a function at the same time I close a UI
dialog. Accordingly as an experiment I am passing the following:
close: function (){console.log($(this).dialog('isOpen'))}
I had assumed that the passed function would happen after the dialog
closed, but alas I see that .dialog('is
After using theme roller to customize a theme, none of our
customizations appear in the resulting download. Instead the download
contains a default, uncustomized theme. Any suggestions?
--~--~-~--~~~---~--~~
You received this message because you are subscribed to t
I've isolated the problem here:
http://grahamhuber.com/test/accord_test_R2.html
This is the default install of jQuery UI 1.7 Accordion.
THE PROBLEM:
Any content placed inside a table or nested DIV disappears when the
accordion is used in IE6. It displays fine on load. Also, when the IE6
window
Using both datepicker and slider in a form, when the datepicker shows,
it displays underneath a slider which is right below it. Is there
anyway to change this?
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"jQuery
Hello,
Where exactly am I to put that piece of code you provided ?
On Mar 31, 8:59 pm, steveeray wrote:
> Found this solution in another post:
>
> if ($.browser.msie) {
> $('#accordiondiv').css('zoom', '1');
>
> }
>
> On Mar 29, 6:50 am, "joshuaxu...@gmail.com"
> wrote:
>
> > just use t
Thanks Steven, thats what I was after!
Thank you very much! :)
On Apr 1, 6:34 am, Steven Yang wrote:
> I think what you want is
> $.datepicker.setDefaults({dateFormat:'dd-mm-yy'});$.datepicker.formatDate
> simply formats the Date you gave it into a String
--~--~-~--~~~-
Hi,
I am using UI Tabs to display data entry elements. I have a couple of
dropdown lists in tabs. In the first tab I have one dropdown list, and
the second tab another dropdown list.
When the tabs gets initiated in FF it works perfectly, but (always a
when I guess) when the tabs get initiated in
I'm trying to have my tabs UI open a new page in the same window (for
SEO purposes so that I have multiple pages instead of all of my data
on one page) but have it look/function the same as it does in default.
I tried putting the external link with the #tabs-2 after it to go to
that page and go to
Apr 1, 3:21 pm, Steven Black wrote:
> Anybody?
>
> Why does Datepicker create an indeterminate control, and why is this
> control arbitrarily visible?
I can't give any authoritative answer here, but looking at the
datepicker source, that input field is normally supposed to lurk at
0,-100, and
Thanks, that's what was breaking it. Once I set them properties in the
style, it worked fine.
On Apr 1, 2:24 pm, Scott González wrote:
> Your code looks correct, can you post a page showing the problem?
>
> Also, the overlay option doesn't exist in 1.7, you have to style the
> overlay in your st
On Apr 1, 2:44 pm, JJ wrote:
>
> That looks like what I was seeing.
> Thanks for the link.
As an update, I fixed this bug last night.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"jQuery UI" group.
To post to thi
50 matches
Mail list logo