[jquery-ui] Re: help, multiple tab sets per page?
W3C rule, not specific to jQuery, all ID's must be unique. Tony S wrote: All, I'm trying to use 2 different jquery ui tab sets on a page: tab set 1 tab set 2 Only the first styles properly. How can I use multiple tab sets on a page? Thanks, Tony S. --~--~
[jquery-ui] Re: Style tabs independently from the accordion
on themeroller download, use the scope option, will append your chosen "scope" as class to the css file. Then you can use that class on a component to keep themes separate biotech wrote: Hello there, I am trying to style the tabs without affecting the other elements (eg. accordion) on the
[jquery-ui] Re: Accordion within an accordion
works here http://jsbin.com/axulo not sure if it is causing issues but your page doesn't validate I did find that putting the nested accordion in a collapsed panel created problems with content height but it did funcction on open / close fine unlike your example. I'm sure there's a simple wo
[jquery-ui] Re: how to add external content to jquery UI dialog?
load() would likely work for you http://docs.jquery.com/Ajax mino wrote: Hi, please help me. How to i add external content to dialog (from jquery UI) ? I need dynamicaly load file message.php?id=xxx to dialog. click her Thanks you Milan --~--~-~--~~--
[jquery-ui] Re: dialog bug in firefox on mac
body width=900px? I doubt that's helping either hcvitto wrote: Well, you're right..but now I got the same problem on webkit based browser! (safari and chrome on pc!).. Anyway i'll find the way to give the rule only to firefox.. On 20 Lug, 12:32, "Richard D. Worth" wrote: Your
[jquery-ui] Re: Create accordion content on the fly
that is what AJAX is all about, grabbing content on the fly Depends on your source as to method but implementation not very difficult with jQuery. If you plan to load all the accordion headers for menu up front you could use parameters within the header tag to query for the contents of tha
[jquery-ui] Re: UI 1.7.2 + tabs + delete button
example for add/remove tab http://jsbin.com/uqage Yves wrote: Hi guys, Sorry to come back ... Is somebody as already added a remove button in the tabs? Like here: http://pharos-ei.com/mike/jquery/examples/ui.tabs.closable-selected.html but with the version 1.7.2 Thanks --~--~--
[jquery-ui] Re: Problem with Tabs. Want to load the content into a second div
doesn't seem very clear what you are trying to do >>How can I change this so I can load the content in a second div instead of being in the same one as the links?<< better explanation of this would help, especially the links part. What links? If content is in separate div, what is in the tabs
[jquery-ui] Re: jQuery Script Not Working In Firefox
I see why. I had a typo, missing a dot in $('highlight').removeClass('highlight'); should have been $('*dot*highlight').removeClass('highlight'); Bob Gibilaro wrote: Charlie, Thanks for the help! I am new to jQuery and so I am not quite comforta
[jquery-ui] Re: Accordion Docs
site actually places your code at the end of the DOM. Just to be sure I updated the code. http://jsbin.com/efiya On Sun, Jul 12, 2009 at 7:28 AM, Charlie <charlie...@gmail.com> wrote: you aren't using $(document).ready it's not working because function can fir
[jquery-ui] Re: Accordion Docs
you aren't using $(document).ready it's not working because function can fire before the elements are availableend resultNothing Nathan Maves wrote: Base on the docs at http://jqueryui.com/demos/accordion/ why does the following not work? http://jsbin.com/ocava
[jquery-ui] Re: jQuery Script Not Working In Firefox
Function is working, although it is very unorthodox way to get to where you are going. Look in Firebug, class highlight is being added and removed. div's are just collapsed Add *float: left* to css for class form_row, highlight works fine in Firebug As for function. Could simplify the whole
[jquery-ui] Re: accordion navigation example
if current page is "contact.php" and link in accordion is in accordion content div, *not* accordion header and option navigation : 'true' in accordion , the accordion will open the panel where HTML Section 1 Section 1 content Section 2 section 2
[jquery-ui] Re: rotated tabs direction (anti-clockwise)
RTL example http://jsbin.com/erata shawqi almulaiki wrote: I really appreciate your help I tried, but the problem still exist; the rotation still starts clockwise - from left to right; I wish you could help me On Mon, Jul 6, 2009 at 7:26 PM, Charlie <charlie...@gmail.
[jquery-ui] Re: rotated tabs direction (anti-clockwise)
need to float the list right, the tabs will read RTL Try this based on markup of the demos in download: css:#tabs ul { float:right; width:99%}//tabs on right side#tabs ul li { float:right}// tabs read RTLjs: $('#tabs').tabs().tabs('rotate',2000, 'true'
[jquery-ui] Re: Simple Question RE: Tabs
does it look different than the demo tabs ? http://jqueryui.com/demos/tabs/default.html if so sounds like you may have other CSS or formatting script at play something like a p:first-child rule? Jake wrote: Hey Guys, I love your stuff - keep up the great work! Quick question, I'm using y
[jquery-ui] Re: [dialog] - button-label by language-object ?
take a look at source for modal confirmation demo http://jqueryui.com/demos/dialog/#modal-confirmation, then slight change to: buttons: { 'yes': function() { $(this).dialog('close'); }, 'no': function() {
[jquery-ui] Re: Translucent Border for Dialog
have you considered using the resizeable class divs that surround dialog? There are 8 of them, one each corner and one each side. Not sure what would happen if you mess with size/position but appears the main reason for them is to apply resizable cusrsor type Matthew wrote: Hey all, I'm
[jquery-ui] Re: Datepickers Side-by-Side
divs are block elements by default, look again at example, with float:left; width;400px applied in style curious, normal datepicker is set on an input tag, what is concept behind div'sjust asking becampbel wrote: Try this: http://jsbin.com/etina Thanks, -Brian Cesar Sanz wrote:
[jquery-ui] Re: Datepicker pops up on dialog open - help!
I don't know datepicker well but first thing comes to my mind would be adjust tabIndex for the fields so datepicker field isn't first ZedR wrote: I have the same problem. Is there any fix found?? On Jul 2, 10:21 pm, sarah wrote: I've got a datepicker field that is inside of a
[jquery-ui] Re: dialogue shows only first time
the UI dialog constructor will append the dialog widget to body. Looks like you are manually trying to do same thing. If you keep constructing from same ID you end up with multiple dialogs with same ID causing problems on open. See if you aren't building more than one looking at html in firebu
[jquery-ui] Re: ...select a tab from a text link instead of clicking a tab itself
you changed your code a bit from prior post #tabs-1 is a content div, not the tabs widget container so that won't work. Now another important error, the purpose of $(function() which is shorthand for $(document).ready(function(){ http://docs.jquery.com/How_jQuery_Works#Launching_Code_on_Docum
[jquery-ui] Re: ...select a tab from a text link instead of clicking a tab itself
if that's not working for you check that jquery.js is loading *before*jqueryUI.js and that paths to files are valid Xeonz wrote: how do I use this code exactly.. var $tabs = $('#example').tabs(); // first tab selected $('#my-text-link').click(function() { // bind click event to link
[jquery-ui] Re: Add custom buttons to titlebar
take a look at which is top corner "X" on a dialog you can easily add another span with : $('').before('.ui-icon-closethick'); x = go to jqueryUI.com theme page, hover over an icon you like and use that class to replace "xx" the "ui-icon" class just defines height & w
[jquery-ui] Re: Jquery UI Tabs --- document tree requirements?
the demos on UI website should be clue that you aren't restricted like you are asking, tabs can even be nested in tabs. Something else must be conflicting invalid code, css, script etc download package also has development bundle folder with working examples you can play with best bet is to p
[jquery-ui] Re: How to remove jQuery dialog rounded corners ?
create override rules for, comment out , or delete the "ui-corner" classes in applicable UI css file(s) look at those rules all they do is add radius and nothing else Benjamin wrote: Hi, All over the web i found posts about people which want to fix rounded borders on IE, but me
[jquery-ui] Re: Distance between Fisheye images
you should probably post this on the jquery board, not this one http://groups.google.com/group/jquery-en?pli=1 snippets of html and css won't help, really need to post a link to see the problem, either link to yours or source you got it from when folks can see the whole module and all the
[jquery-ui] Re: How to "properly" extend the jQuery UI Dialog widget????
just curious, when you extend like this do you append the extension to ui.tabs.js or place it with document.ready functions? jvitela wrote: I do something like this whenever I want to extend a widget, what do you think? (function($) { /** * Extend Tabs to add strip spacer
[jquery-ui] Re: rounded corners and jquery
never used this jquery drop shadow plugin, Might help you http://eyebulb.com/dropshadow/ Peter Marino wrote: Hi Cesar, yea.. i'm actually using this plugin for my forums and it's the best corner creator I've used. but to my other problem I needed shadows and thickness which the
[jquery-ui] Re: Accordion Menu state-saving
this had my curiosity up so i looked at tutorial/example a little closer. It's using older version of jquery 1.2.6, and jqueryUI 1.6. Neither is compatible with current versions of counterpart ( Ui 1.7 has to use jquery 1.3) this likely explains the difference in header option. Also, I don'
[jquery-ui] Re: Some issues (see "my example code")
was talking about. It's the worst of the 7 bugs, and it's a pain in the *** for my application. On 22 juin, 16:39, Charlie wrote: ok, here's why I asked about using markup provided with jqueryUI. I was tinkering with this as a jquery learning exercise. Here's an
[jquery-ui] Re: dialogs inplace
llows for removing of the contents/hide show fairly easily also Peter Marino wrote: Hi Charlie, yea.. but I need a more dynamic way of doing it. instead of dialogs is it possible to make a div look like a dialog using the theme supplied? i tried to use the ui-widget-header a
[jquery-ui] Re: dialogs inplace
dialogs are positioned absolute in viewport can use position option to relocate them within viewport $("#dialog").dialog({position: [100,100]});//displays 100px from left, 100px top Peter Marino wrote: Hi jQuery UI, is it possible to have a dialog inplace.. meaning I have a layout
[jquery-ui] Re: Accordion Menu state-saving
header option needs to be a tag header:'h3' after that I have no idea what you are trying to do moleculezz wrote: The Sub Items are not that important at the moment. Let me make it simpler. I have got it working but now it messes up the jquery ui theme. The only thing I added was the "
[jquery-ui] Re: Accordion Menu state-saving
{navigation: true} is used to search links in the contents panel of accordion and activate the panel with corresponding link to URL if your page is ThisPage.php and you have : Sub Item Sub Item 1 this panel should activate on page load
[jquery-ui] Re: multiple windows
what are you really trying to do? in example of accordion are you wanting to activate specific accordion panel on second window? can do that by passing activation info in URL Jan Van Lysebeth wrote: Hi all, I want to use jquery-ui for an application the uses multiple browser windows. I 'd
[jquery-ui] Re: [accordion] Question about menu.
http://jqueryui.com/demos/accordion/#method-activate $("YourTextLink").click(function() { $("#YourAccordion").accordion( 'activate' , index ) }); index- start at 0 for top accordion panel Example: Open panel #2: $("YourTextLink").click(function() {
[jquery-ui] Re: Some issues (see "my example code")
l things, and there are several bugs. I think that developers of this plugin should at least answer me that they will investigate this... But no answer for around 1 month ! I'm a bit disappointed, I must admit. I did not expect a bug fix in the next hours following my first message, but
[jquery-ui] Re: Always have Modal Dialog on screen
here's an animation script that floats a dialog using same window scroll method. Delay helps smooth out window scroll reposition http://jsbin.com/awaki http://jsbin.com/awaki Scott González wrote: The dialog div get absolutely positioned on init, so that's overriding your stylesheet. You
[jquery-ui] Re: Some issues (see "my example code")
dumb question...if it's not working why wouldn't you use same markup and classes as examples then get the modules working then tinker with markup? Lideln wrote: Up ! On Jun 18, 8:23 am, Lideln wrote: Up ! On Jun 13, 2:23 pm, Lideln wrote: Up !
[jquery-ui] Re: Tabs troubles
ge the way you bring markup into the page one way to avoid this is to reuse same dialog and instead of bringing new dialog markup with same ID into page each click, just load into the dialog and empty it on close Charlie wrote: look in Firebug at the html inspector each step the dialog you cr
[jquery-ui] Re: Tabs troubles
look in Firebug at the html inspector each step the dialog you create first time gets appended to the body by UI script. The load function will overwrite the contents of div being loaded but doesn't remove the dialog from body. The reload is appending dialog again to body with same ID as firs
[jquery-ui] Re: Accordion in Tabs
x27;t work Wai Thing wrote: Hi Charlie, Thank you for the reply. Your solution makes the accordion in the first tab works. However, it does not work in all other tabs. Problem is, my implementation will construct the tabs in the original document while accordion will be constructed in another co
[jquery-ui] Re: Accordion in Tabs
here's example accordion in 2 tabs, with tabs set collapsable too. only thing I had to do was set autoHeight: false or second accordion wasn't displaying correctly. Tabs are collapsible and accordions act fine even on collapse http://jsbin.com/icebe Wai Thing wrote: Hi all... I am hav
[jquery-ui] Re: Class-based (versus ID-based) Dialogs
side note: if you use jquery to hide help_dialog the clone will also be hidden here's fix if use jquery to hide on page load $(this).next(".help_dialog").clone().show().appendTo("#dialog"); don't seem to need to do this ( in FF anyway) if use css to hide with display:none you can
[jquery-ui] Re: Class-based (versus ID-based) Dialogs
you can easily recycle the same dialog for all your class links and only use one dialog for all of them $(".help_link").click(function () { $('#dialog').empty(); $(this).next(".help_dialog").clone().appendTo("#dialog"); $('#dialog').dial
[jquery-ui] Re: Accordion List | Selecting with item to display as active
navigation : true this will match link within accordion content to page url and open that section when page loads Skunkmilk wrote: Hi All, Very new to Jquery and was hoping i can get some help. I have an accordian list much like the example here : http://docs.jquery.com/UI/Accordion#op
[jquery-ui] Re: Accordion - manipulating from within code
http://jqueryui.com/demos/accordion/#method-activate Sultan Imanhodjaev wrote: Hi all :) , guys does anyone know how to manipulate accordion widget from within JQuery e.g. move to the next pane, move back, forward ? Something like this : ... ... ... $('move_next').click(fn_move_next); ...
[jquery-ui] Re: attribute with variable
this works var k = "Title" + "some text" $("div").dialog({ . title: k .. /// left off last brackets in case the missing ";" is causing you problems too also worst case span in dialog title has both an ID and class that can be selected to modify text coffee wrote: Sorry that i hit re
[jquery-ui] Re: dialog("open") brutally slow
maybe you have broken tags or something else causing validation problems? always find validation a good place to start when get something going on like you have GravyFace wrote: Thanks for your reply, Charlie. The problem is just when opening the modal -- I've added console.time
[jquery-ui] Re: dialog("open") brutally slow
I'm no expert at this one but have several ideas. Attach the empty function to close of dialog, will be clean next load (Don't know if this helps but does work) Insert internal div before the dialog open function( can you just leave it there? empty it instead of rebuilding each time) Might h
[jquery-ui] Re: ThemeSwitcher CSS Over rides
theme, keeping your changes present. Save and test. --- On Tue, 5/19/09, Charlie wrote: From: Charlie Subject: [jquery-ui] ThemeSwitcher CSS Over rides To: jquery-ui@googlegroups.com Date: Tuesday, May 19, 2009, 4:41 PM Working on app wi
[jquery-ui] Re: [accordion]
feature you are looking for is built into the jQuery UI Accordion http://jqueryui.com/demos/accordion/#option-navigation jimmy wrote: Please can someone help me? I have 2 accordion examples: This one http://www.cc-hs.com/testing/ is perfect cross-browser but I have a problem in that the
[jquery-ui] ThemeSwitcher CSS Over rides
Working on app with theme roller, did a few minor UI css over rides in separate file ( minor padding etc to suit my needs). Once i put it together I tried themeswitcher. Themeswitcher introduces ajax loaded UI css file however it seems to take "last in" control and the over rides I did are
[jquery-ui] Re: dialog problem
loading another page only returns the body code, include niceforms-default.css on the page you are loading into algol wrote: hi at all, i'm new of jquery, i try to load one page on a dialog the code by this code: function loadContent(id, ed, ad) { $("#dialog").load("det.php?conto="+i
[jquery-ui] Re: Accordion
This worked for me if accordion not initiated: $("TestSome Text").appendTo("#accordion"); if it is initiated: $("TestSome Text").appendTo("#accordion"); $("#accordion").accordion('destroy'); $("#accordion").accordion({ collap
[jquery-ui] Re: Is there an plugins of JQuery to fix the round corner for IE and Opera?
There's also "jQuery Corners" /* * jQuery Corners 0.3 * Copyright (c) 2008 David Turnbull, Steven Wittens * Dual licensed under the MIT (MIT-LICENSE.txt) * and GPL (GPL-LICENSE.txt) licenses. */ jQuery.fn.corners=function(C){var N="rounded_by_jQuery_corners";var V=B (C);var F=false;try{F=(documen
[jquery-ui] Re: How to remove the resizable() bottom right icon?
I think you can just do this: $(".resizable").resizable({ handles: 'n, s' }); where you replace the values following 'handles' with the ones you want (and being sure to leave out the 'se' one) In therms of increasing the size of the icon, I think you'd need to find the s
[jquery-ui] Re: Resizable / Draggable grid - using percents instead of pixels for snap-to dimensions
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
[jquery-ui] Resizable / Draggable grid - using percents instead of pixels for snap-to dimensions
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
[jquery-ui] Re: resizable not working - theme required?
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
[jquery-ui] Re: 1.6rc6/1.7 Tabs not displaying correctly in Firefox/Safari
Your tabs situation is not isolated. I went through same thing a few weeks ago. CSS as fine on tabs until inserted into a validated page ( I think mine was a YAML grid page) and worked fine in IE but problem showed up in FF3 There's an identical situation with screen shot in this thread: htt
[jquery-ui] Re: problems with UI tabs
generally not good practice loading script files before css, reversing the load sequence in head might help Jörn Zaefferer wrote: Its now more prominent on the upgrade guide. Jörn On Thu, Mar 5, 2009 at 6:49 PM, Rob wrote: Thanks for the tip. All the tutorials out there are u
[jquery-ui] Re: ui.tabs : does not fire up
extremely confusing site, have you considered the user experience on this? I see that you creat a vertical breadcrumb but all the shifting and blinking menu items is very confusing sometimes simple is better, understand the desire to use cutting edge scripts and effects but judging by number
[jquery-ui] Re: Suggestion -- More items in the discussion list
gmail has free POP3 service, load it into email client...save time reviewing, sorting threads etc Steven Black wrote: You misunderstand: you can only see 30-items per page, which is very small time span. I wish this was configurable. **--** Steve On Feb 18, 5:44 pm, James wrote:
[jquery-ui] Re: tabs ul too tall?
I may have been a bit hasty in my previous reply as I believe other CSS was causing my issues as noted here. I originally put together a sample page in a single container of tabs working inside tabs. My CSS on the outer tab container didn't fall apart ( and actually worked in IE but not FF) un
[jquery-ui] Re: tabs ul too tall?
I had this exact same problem. It seemed the tab container was getting same height as content. I fixed it by using floats yabado wrote: http://www.quicksnapper.com/yabdab/image/jqueryui-tabs trying to use themes, but I cannot figure out what is making the ul object so tall? Anyone else
[jquery-ui] Re: ...(jQuery) is not a function? But only with minified source
James - First off, thanks so much for clarifying that. Secondly, it is SO WEAK that the jQuery UI page doesn't explain that anywhere ... or at least anywhere clearly. I went with jQuery 1.3.1 because it was STABLE, and naturally assumed that I would want the STABLE version of jQuery UI. I've bee
[jquery-ui] script tag in tab
Is there way to include a tag using ui.tabs? when i pout this code into a tab --