[jQuery] Re: Jquery UI tabs lockable ?

2010-01-10 Thread Ibatex
Or better yet use the tab enable/disable functionality. .tabs( 'enable' , index ) .tabs( 'disable' , index ) On Jan 8, 5:40 am, URBY wrote: > Hi i was wondering if it would be possible to lock out other tabs so > the user is stuck on one ..until a user hits a button. > > For example an Admin is

[jQuery] Re: jquery UI sortable, how can i get the text of the that i just moved ?

2010-01-04 Thread MorningZ
> i tried: $(ui.item).text() but i get an ui is not defined error that would potentially be a valid way to do it, but without any of your code to work with, it's hard to help with that

[jQuery] Re: jQuery UI: Tabs: No spinner

2009-11-20 Thread dinos
I already have that. It's not working. Have you seen any tabs with the spinner working? On Nov 19, 9:11 pm, MorningZ wrote: > add a tag around the 's text and it should work > > so > > http://somesite.com/tabcontent.php";>This Tab > > to > > http://somesite.com/tabcontent.php";>This Tab > > On

[jQuery] Re: jQuery UI: Tabs: No spinner

2009-11-19 Thread MorningZ
add a tag around the 's text and it should work so http://somesite.com/tabcontent.php";>This Tab to http://somesite.com/tabcontent.php";>This Tab On Nov 19, 3:39 pm, dinos wrote: > I use UI Tabs with Ajax loading. > The spinner is not working. > Any ideas?

[jQuery] Re: jquery UI draggable does not work in Firefox extension

2009-11-15 Thread jakkob
Hi, I solved the problem now without jQuery. It wasn't as hard as I had expected. If anybody else ever has the same problem, a (more or less) copy&paste solution is given here [German] http://aktuell.de.selfhtml.org/artikel/javascript/draganddrop/ @Karl Sorry, I did not specify directly, but the

[jQuery] Re: Jquery UI Accordion Navigation

2009-11-08 Thread mehstg1319
Cheers Richard. Have moved my post over to the Jquery-UI group. Have made a little progress, but still no cigar. Cheers for the help. P On Nov 7, 12:22 pm, "Richard D. Worth" wrote: > And sorry I didn't realize we're on the wrong list. If you need any more > help, please start a new thread on th

Re: [jQuery] Re: Jquery UI Accordion Navigation

2009-11-07 Thread Richard D. Worth
And sorry I didn't realize we're on the wrong list. If you need any more help, please start a new thread on the jQuery UI list: http://groups.google.com/group/jquery-ui Thanks. - Richard On Sat, Nov 7, 2009 at 7:21 AM, Richard D. Worth wrote: > It looks like you'll have to supply your own nav

Re: [jQuery] Re: Jquery UI Accordion Navigation

2009-11-07 Thread Richard D. Worth
It looks like you'll have to supply your own navigationFilter function: http://docs.jquery.com/UI/Accordion#option-navigationFilter The default is navigationFilter: function() { return this.href.toLowerCase() == location.href.toLowerCase(); } which is trying to match the whole url, not the en

[jQuery] Re: Jquery UI Accordion Navigation

2009-11-07 Thread mehstg1319
Right, All out of ideas now. :-( Have changed the 1,2,3 etc to valid tokens and changed the NAME to ID. But still no luck. I sense I must be very close, but cannot work out why it does not work. Paul On Nov 6, 5:15 pm, "Richard D. Worth" wrote: > Home > ... > About > ... > Portfolio > > - Rich

[jQuery] Re: Jquery UI Accordion Navigation

2009-11-06 Thread mehstg1319
Thanks very much That has fixed that bug, silly mistake to make!! The navigation still does not work however :-( i.e. if I go to http://www.paulbraham.com/test_site/index.html#2 it should open on the second panel and if I go to http://www.paulbraham.com/test_site/index.html#3 it should open on t

[jQuery] Re: Jquery UI Accordion Navigation

2009-11-05 Thread jquery.redsqu...@googlemail.com
Your click function fail is due to the fact you hook the event up outside of a doc ready block. You can either change it to use .live or move it after the accordion initialise call. On Nov 5, 2:48 pm, mehstg1319 wrote: > Hi guys > > I am working on the following sitehttp://www.paulbraham.com/test

[jQuery] Re: jQuery UI draggable

2009-10-27 Thread Michel Belleville
By reading the doc a lot of answers one can find, hmm... http://docs.jquery.com/UI/Draggable#option-handle To master jquery, master the api you must. Michel Belleville 2009/10/27 Thai Dang Vu > Suppose that I have this div > > > x > zzz > > > I use jQuery UI draggable to ma

[jQuery] Re: jQuery UI datepicker

2009-10-19 Thread Karl Swedberg
Hi there, Would you mind posting this question to the jquery-ui google group if you haven't done so already? That group is dedicated to questions such as yours that are specifically related to jQuery UI. http://groups.google.com/group/jquery-ui/ Thanks! --Karl Karl Swedberg

[jQuery] Re: jQuery UI Tabs - Select Tab?

2009-10-16 Thread Collectonian
Found it! It needs to be: $('#tabs').tabs().tabs('select', 1); // => 0 with the extra tabs(). :- D Got it working now! Thanks, Summer S. Wilson Collectonian on Yahoo! Messenger ~ Facebook (http://www.facebook.com/ Collectonian) An Eclectic World (http://eclectic-world.com) ~ LiveJournal (http:/

[jQuery] Re: jQuery UI Tabs - Select Tab?

2009-10-16 Thread Collectonian
We tried that as well, and still no go. On Oct 15, 1:01 pm, MorningZ wrote: > $("#tabs").tabs("select", idx); > > where "idx" is the numeric index of the tab to select > > On Oct 15, 11:53 am, Collectonian > wrote: > > > > > We are using the jQuery UI's tabs functions to do a tab on a web > > a

[jQuery] Re: jQuery UI Tabs - Select Tab?

2009-10-15 Thread MorningZ
$("#tabs").tabs("select", idx); where "idx" is the numeric index of the tab to select On Oct 15, 11:53 am, Collectonian wrote: > We are using the jQuery UI's tabs functions to do a tab on a web > application. The tabs are loading fine and work perfectly when > clicking them. In some instances

[jQuery] Re: jQuery UI widgets leaks memory for dynamic content manipulation

2009-10-15 Thread Ericos
Thanks Karl. I have already posted this on the jQuery UI discussion group. Hope someone will look at it. Btw, don't you also experience such issues with memory leaks? regards, Ericos On Oct 13, 9:33 pm, Karl Swedberg wrote: > Would you mind posting this question to the jquery-ui google group i

[jQuery] Re: jQuery UI widgets leaks memory for dynamic content manipulation

2009-10-13 Thread Karl Swedberg
Would you mind posting this question to the jquery-ui google group if you haven't done so already? That group is dedicated to questions such as yours that are specifically related to jQuery UI. http://groups.google.com/group/jquery-ui/ Thanks! --Karl Karl Swedberg www.englishru

[jQuery] Re: jQuery UI Portlets & Cookies

2009-10-02 Thread Richard D. Worth
On Fri, Oct 2, 2009 at 11:06 AM, craigeves wrote: > > Thanks for the tip (pastebin). Another really great site for sharing code is jsbin.com http://jsbin.com/ It's got a drop-down for including jQuery and jQuery UI, live preview of full page code samples, and an editor so someone can edit a

[jQuery] Re: jQuery UI Portlets & Cookies

2009-10-02 Thread craigeves
Thanks so much for this - i'll compare the script that you just submitted to the one i submitted to see where i went wrong. Thanks again Craig On Oct 2, 4:21 pm, Nalum wrote: > I've updated the javascript here.http://pastebin.com/m4caef476 > > If you need any help in understanding whats happen

[jQuery] Re: jQuery UI Portlets & Cookies

2009-10-02 Thread Nalum
I've updated the javascript here. http://pastebin.com/m4caef476 If you need any help in understanding whats happening here let me know and I'll try to explain it, I'm not the best at explaining things though. Nalum On Oct 2, 4:06 pm, craigeves wrote: > Hi Nalum > > I have tried and amended the

[jQuery] Re: jQuery UI Portlets & Cookies

2009-10-02 Thread craigeves
Hi Nalum I have tried and amended the code as you suggested - but still no luck? Thanks for the tip (pastebin). Here is my full code now. Please would you take a quick look and let me know where im going wrong? http://pastebin.com/m4dab8bb2 Thanks for your help in this - it's really appreciate

[jQuery] Re: jQuery UI Portlets & Cookies

2009-10-02 Thread Nalum
Hello Craig, When you need to show code you should try using a site like http://pastebin.com as it'll make it easier to read and your post wont be so long. You'll need to be able to work with cookies, I would suggest this jquery plugin http://plugins.jquery.com/project/cookie. I've explained how

[jQuery] Re: jQuery UI Portlets & Cookies

2009-10-02 Thread craigeves
Here it is - thanks for your help again jQuery UI Sortable - Portlets .column { width: 300px; float: left; background-color: #ee; margin-right: 25px; padding-top: 10px; padding-right: 10px;

[jQuery] Re: jQuery UI Portlets & Cookies

2009-10-02 Thread Nalum
Is the code in the original post all the code you have? On Oct 2, 3:03 pm, craigeves wrote: > Thanks for this - but I don't understand where it would fit into my > script? I'm only just starting in jQuery... > > Also, will this save the position of the portlet no matter which > column it's in? I

[jQuery] Re: jQuery UI Portlets & Cookies

2009-10-02 Thread craigeves
Thanks for this - but I don't understand where it would fit into my script? I'm only just starting in jQuery... Also, will this save the position of the portlet no matter which column it's in? It's just that it looks like it's related to a closed and expanded portlet state. Thanks for your time.

[jQuery] Re: jQuery UI Portlets & Cookies

2009-10-02 Thread Nalum
Hello Craig, I've done this before by building up a string e.g. box- id1,collapsed;box-id5,not-collapsed;box-id3,collapsed|box- id4,collapsed;box-id2,not-collapsed;box-id6,collapsed; In the javascript do something like this http://pastebin.com/m90a2af6 Hope this helps, Nalum On Oct 2, 2:35 pm,

[jQuery] Re: jQuery UI Portlets & Cookies

2009-10-02 Thread craigeves
anyone? On Oct 2, 12:08 am, craigeves wrote: > Please can someone help? > > I am using the jQuery UI (sortable) Portlets code - but I want to use > the jQuery cookies plugin to remember the order of the portlets. I > don't know where to start - and searching the net for an answer only > brings u

[jQuery] Re: jQuery UI Portlets & Cookies

2009-10-02 Thread craigeves
I have managed to find a script that will save the position of portlets, but to one column only - plus it wont allow me to connect to another column. I need to be able to drag over to other columns and save their order. Can anyone help? Here is my code...

[jQuery] Re: JQuery ui dialog issue

2009-09-24 Thread Richard D. Worth
On Wed, Sep 23, 2009 at 9:08 AM, g...@iec wrote: > > Hi all, > > I have an issue. > > I am showing modal loading dialog while making ajax call. > My dialog config is shown below : > > $('#loadingSearch').dialog({ >autoOpen: false, >modal: !$.browser

[jQuery] Re: JQuery ui dialog issue

2009-09-23 Thread g...@iec
Help me out of this issue... i got stuck On Sep 23, 6:08 pm, "g...@iec" wrote: > Hi all, > > I have an issue. > > I am showing modal loading dialog while making ajax call. > My dialog config is shown below : > > $('#loadingSearch').dialog({ >                         autoOpen: false, >  

[jQuery] Re: jQuery UI Resizable Plugin – Scaling a AND the contents within?

2009-09-09 Thread Mr Speaker
I thought that's what alsoResize was for... couldn't you do something like: $('#myDiv').resizable({alsoResize: '#myDiv img'}); or something like that? Otherwise, perhaps you could use the resizable event, and do the resizing yourself: $('#myDiv').resizable({ resize: function(event, ui) {

[jQuery] Re: [jquery-ui] Re: Determining if a block is visible

2009-08-06 Thread Richard D. Worth
On Thu, Aug 6, 2009 at 8:19 AM, Joshua Beall wrote: > > On Aug 5, 7:05 am, "Richard D. Worth" wrote: > > Your question is better suited to the main jQuery list: > http://groups.google.com/group/jquery-en > > > > since it's not about jQuery UI > > plugins

[jQuery] Re: JQuery UI Sortable based on DIVs

2009-08-04 Thread EugeneS
o ... thanks a lot :) its time to get some rest ... coz patience now = 0 :) once again thanks :) On Aug 4, 12:43 pm, "Richard D. Worth" wrote: > .sortable() needs to be called on the container element #trip_content, not > each child. Then you can use the handle option to make each child sor

[jQuery] Re: JQuery UI Sortable based on DIVs

2009-08-04 Thread Richard D. Worth
.sortable() needs to be called on the container element #trip_content, not each child. Then you can use the handle option to make each child sortable only by the .itemHeading: $("#trip_content").sortable({ handle: ".itemHeading" }); - Richard On Tue, Aug 4, 2009 at 5:32 AM, EugeneS wrote: > >

[jQuery] Re: JQuery UI Sortable based on DIVs

2009-08-04 Thread EugeneS
here i made a small sample so you can see the problem in action http://zaslugi.ru/temp/demo.html coz i already posted request here will try to receive help here to bot create multiple clones ... and then will try to post in UI group :\ Thanks. On Aug 4, 11:42 am, "Richard D. Worth" wrote: > C

[jQuery] Re: JQuery UI Sortable based on DIVs

2009-08-04 Thread Richard D. Worth
Could you put together a live sample on jsbin.com: http://jsbin.com/ Also, note there's a dedicated list for jQuery UI questions: http://groups.google.com/group/jquery-ui Thanks. - Richard On Tue, Aug 4, 2009 at 4:05 AM, EugeneS wro

[jQuery] Re: JQuery UI Sortable based on DIVs

2009-08-04 Thread EugeneS
sorry this URL http://www.screencast.com/t/LNfPgoOWUf7

[jQuery] Re: jquery ui dialog get element from button

2009-07-24 Thread Carlo Landmeter
Hi Mike, Yes its working now. Now that i understand that part and looked at the api again i saw: Get or set the buttons option, after init. Glad I get that fixed. Thanks for your help! I think if i play more with jquery things get easier for me to understand. Carlo On Fri, Jul 24, 2009 at 2:

[jQuery] Re: jquery ui dialog get element from button

2009-07-24 Thread Mean Mike
ok sorry for the delay, been kind of busy. Your problem is this ... the var somevar is defined in the click function and your are trying to use it in the constructor for the dialog therefore it is out of scope and not defined. This wouldn't work even if you made the var global because you must wr

[jQuery] Re: jquery ui dialog get element from button

2009-07-22 Thread Carlo Landmeter
Sorry i forgot to add it. The button is placed before the dialog div. Carlo On Tue, Jul 21, 2009 at 2:43 PM, Mean Mike wrote: > > Carlo buddy where is the button with the id that your looking for ? > > On Jul 21, 5:06 am, Carlo Landmeter wrote: >> I'm not able to send the whole html but i ca

[jQuery] Re: jquery ui dialog get element from button

2009-07-21 Thread Mean Mike
Carlo buddy where is the button with the id that your looking for ? On Jul 21, 5:06 am, Carlo Landmeter wrote: > I'm not able to send the whole html but i can show you the jquery stuff: > I am using this in a drupal CMS with jQuery 1.2.6 and jQuery UI 1.6. > > Drupal includes the following css/j

[jQuery] Re: jquery ui dialog get element from button

2009-07-21 Thread Carlo Landmeter
I'm not able to send the whole html but i can show you the jquery stuff: I am using this in a drupal CMS with jQuery 1.2.6 and jQuery UI 1.6. Drupal includes the following css/js @import "/sites/default/modules/jquery_ui/jquery.ui/themes/default/ui.all.css"; $(document).ready(function()

[jQuery] Re: jquery ui dialog get element from button

2009-07-20 Thread Mean Mike
can I see the html that goes with this code ? On Jul 18, 4:48 am, Carlo Landmeter wrote: > Thanks for tip for my vars. I have tried the code you provided but > this does not work. When i click my delete button it will complain > that "somevar" is not set. So i guess it means the dialog function

[jQuery] Re: jquery ui dialog get element from button

2009-07-18 Thread Carlo Landmeter
Thanks for tip for my vars. I have tried the code you provided but this does not work. When i click my delete button it will complain that "somevar" is not set. So i guess it means the dialog function is run before the somevar variable is set. Anyway arround this? carlo On Fri, Jul 17, 2009 at

[jQuery] Re: Jquery UI Tabs and Ajax

2009-07-18 Thread havanna
Hi Klaus, thank you, for your answer. I found my problem... I have a function in beforeRender of AppController from CakePHP where I load the layout. This disable my Ajax Layout in the function of the called controller. Regards Thomas On 17 Jul., 07:07, Klaus Hartl wrote: > $("#tabs").tabs(); >

[jQuery] Re: jquery ui dialog get element from button

2009-07-17 Thread Mean Mike
Carlo, jQuery /javascript is procedural so you just need to move things around like this [code] $(document).ready(function(){ $("#dialog").dialog({ autoOpen:false, modal:true, overlay: {backgroundColor: "#000",opacity: 0.5},

[jQuery] Re: jquery ui dialog get element from button

2009-07-17 Thread Carlo Landmeter
I will try that ones I have tackled the following issue. I keep having issues with dialog because the dialog is created before i use the .click function. Because of this i cannot change some options of the dialog. For instance: If i click the button i am able to retrieve the id of this button an

[jQuery] Re: Jquery UI Tabs and Ajax

2009-07-16 Thread Klaus Hartl
$("#tabs").tabs(); should be just fine, the type of tab is detected automatically. Unless you're using a very, very old version of Tabs. --Klaus On 17 Jul., 00:49, havanna wrote: > Hi together, > I tried it in the group Jquery UI - but nobody answer there?! > > I'm really new to jQuery and U

[jQuery] Re: jquery ui dialog get element from button

2009-07-16 Thread Charlie
sure, just add $("#dialog").load("url") to click function you have Carlo Landmeter wrote: Thanks for your replies. If I look at your first option I wouldn't know how i could know the correct ID before i click the button but i have to initiate the dialog open after the normal dialog funct

[jQuery] Re: jquery ui dialog get element from button

2009-07-16 Thread Carlo Landmeter
Thanks for your replies. If I look at your first option I wouldn't know how i could know the correct ID before i click the button but i have to initiate the dialog open after the normal dialog function. You second option seems the best way for me, after the dialog is created i can modify its cont

[jQuery] Re: jquery ui dialog get element from button

2009-07-16 Thread Mean Mike
I didn't realize there was a setter option for that, cool now I can change my code LOL Mean Mike On Jul 16, 9:55 am, Charlie wrote: > dialog has a setter option for title, it isn't really a title attiribute. The > dialog "title is actually a span with class > ui-dialog-title-dialoghttp://jque

[jQuery] Re: jquery ui dialog get element from button

2009-07-16 Thread Charlie
dialog has a setter option for title, it isn't really a title attiribute. The dialog "title is actually a span with class ui-dialog-title-dialog http://jqueryui.com/demos/dialog/#option-title $('.selector').dialog('option', 'title', 'Dialog Title'); either pass the id into the option or you c

[jQuery] Re: jquery ui dialog get element from button

2009-07-16 Thread Mean Mike
Yes that is correct you need to separate the dialog from the open like this note: I set the autoOpen to false. [code] $(document).ready(function(){ $(".button").click(function(event){ $("#dialog").attr("title", event.target.id); $('#dialog').dialog('open'

[jQuery] Re: jQuery UI Ajax tabs: content not refreshing in IE6 - cache problem?

2009-07-08 Thread Gilcpd
Hey Guys I'm sorry to bother, but I have the same problem, and I've been trying to get around it. I added the option 'cache:false' on the tabs script: $(function() { $('#ajaxtab').tabs({ remote: true, cache: false }); }) But it did not work... I also tryed to add: $.ajaxSetup({ global

[jQuery] Re: jQuery UI Ajax tabs: content not refreshing in IE6 - cache problem?

2009-07-03 Thread kyleduncan
Thank you! Worked via the global ajax settings. On Jul 3, 3:06 am, James wrote: > There's an option to set cache to false for tabs. > $('.selector').tabs({ cache: false }); > > Also, set your cache in AJAX options to false so the AJAX requests are > not cached.http://docs.jquery.com/Ajax/jQuery.

[jQuery] Re: jQuery UI Ajax tabs: content not refreshing in IE6 - cache problem?

2009-07-02 Thread James
There's an option to set cache to false for tabs. $('.selector').tabs({ cache: false }); Also, set your cache in AJAX options to false so the AJAX requests are not cached. http://docs.jquery.com/Ajax/jQuery.ajaxSetup On Jul 2, 3:23 am, kyleduncan wrote: > I am using the Ajax method to load tabs

[jQuery] Re: jQuery UI dialog is not working in IE6

2009-06-30 Thread James
What happens if you remove: $(function() { and the closing }); from the code? You don't need to include these inside a function. On Jun 29, 10:17 pm, Yazeed Karaz wrote: > Hello All > > I am new to jQuery UI, and I am trying to create a new dialog using > when I click on a link or a button > > h

[jQuery] Re: jquery-ui dialog and ajax issues updating from 1.2.6 to 1.3.2

2009-06-24 Thread Etienne Robillard
> I'll upgrade to jQuery UI 1.7+ and retry.. :D >>> Best regards, >>> Etienne >>> Cesar Sanz wrote: >>>> I had the problem too.. >>>> You must to update jquery and ui too >>>> - Original Message - >>>> From

[jQuery] Re: jquery-ui dialog and ajax issues updating from 1.2.6 to 1.3.2

2009-06-23 Thread James
; I had the problem too.. > > >> You must to update jquery and ui too > > >> - Original Message - > >> From: "James" > >> To: "jQuery (English)" > >> Sent: Monday, June 22, 2009 12:18 PM > >> Subject: [jQuery] R

[jQuery] Re: jquery-ui dialog and ajax issues updating from 1.2.6 to 1.3.2

2009-06-23 Thread Etienne Robillard
z wrote: >> I had the problem too.. >> >> You must to update jquery and ui too >> >> - Original Message ----- >> From: "James" >> To: "jQuery (English)" >> Sent: Monday, June 22, 2009 12:18 PM >> Subject: [jQuery]

[jQuery] Re: jquery-ui dialog and ajax issues updating from 1.2.6 to 1.3.2

2009-06-22 Thread Etienne Robillard
t; Sent: Monday, June 22, 2009 12:18 PM > Subject: [jQuery] Re: jquery-ui dialog and ajax issues updating from 1.2.6 > to 1.3.2 > > > > When you update jQuery to 1.3+ from an older version, you also have to > update your UI library to 1.7+ because jQuery 1.3+ is not compatibl

[jQuery] Re: jquery-ui dialog and ajax issues updating from 1.2.6 to 1.3.2

2009-06-22 Thread Cesar Sanz
I had the problem too.. You must to update jquery and ui too - Original Message - From: "James" To: "jQuery (English)" Sent: Monday, June 22, 2009 12:18 PM Subject: [jQuery] Re: jquery-ui dialog and ajax issues updating from 1.2.6 to 1.3.2 When you update jQ

[jQuery] Re: jquery-ui dialog and ajax issues updating from 1.2.6 to 1.3.2

2009-06-22 Thread James
When you update jQuery to 1.3+ from an older version, you also have to update your UI library to 1.7+ because jQuery 1.3+ is not compatible with older versions of jQuery UI. On Jun 22, 5:25 am, Etienne Robillard wrote: > Hi, > > I'm using jquery-ui 1.6 custom build with jquery 1.2.6 trying to >

[jQuery] Re: jQuery UI dialog not behaving

2009-06-20 Thread Charlie
your dialog options need tuning $("#dialogue").dialog( { AutoOpen: false, /// should be autoOpen bgiframe: true, height: 400, width: 300, maxHeight: 10, /// 10?? maxWidth: 10, // 10? modal: true, resizable: true, buttons: { "Ok": function() { $(this).dialo

[jQuery] Re: jQuery UI dialog not behaving

2009-06-19 Thread fredriley
Thanks for the reply, Charlie. Sorry I've not got back on it until now. On Jun 11, 10:32 pm, Charlie wrote: > try taking the dialog constructor out of the click functions maybe load is > firing before the dialog call is complete > this seems to be the norm, not trying to build it inside a click

[jQuery] Re: jQuery UI dialog not behaving

2009-06-19 Thread fredriley
Thanks for the reply, Charlie. Sorry I've not got back on it until now. On Jun 11, 10:32 pm, Charlie wrote: > try taking the dialog constructor out of the click functions maybe load is > firing before the dialog call is complete > this seems to be the norm, not trying to build it inside a click

[jQuery] Re: jQuery UI 1.7.2 released

2009-06-12 Thread MorningZ
Nice! A fixed downloader! I was to the point where I was downloading the full blown versions and using YUI compressor to compress myself... Totally digging the Themeroller stuff... keep up the great work! On Jun 12, 3:13 pm, Rey Bango wrote: > Thanks for posting this Neal! > > Rey > > Neal

[jQuery] Re: jQuery UI 1.7.2 released

2009-06-12 Thread Rey Bango
Thanks for posting this Neal! Rey Neal Jansons wrote: Download: http://blog.jqueryui.com/2009/06/jquery-ui-172/ Changelog Summary This is a maintenance release for jQuery UI 1.7. It changes only the plugins listed below. In addition to the plugin fixes below, 7 new themes were added: Sunny

[jQuery] Re: jQuery UI dialog not behaving

2009-06-11 Thread Charlie
try taking the dialog constructor out of the click functions maybe load is firing before the dialog call is complete this seems to be the norm, not trying to build it inside a click  also first link doesn't validate on w3 validator, always worth checking validation when DOM weirdness occurs

[jQuery] Re: jquery ui Datepicker

2009-06-11 Thread MorningZ
It's definitely possible using the "onSelect" event anyways, there is a dedicated group for UI here (http://groups.google.com/group/ jquery-ui?hl=en), probably the better place to ask for an example On Jun 11, 11:01 am, Peter Marino wrote: > Hi jquery, > i've just tried the datepicker an i

[jQuery] Re: JQuery UI Accordion Plugin

2009-05-26 Thread Pepperman
Firebug will allow you to see the HTML that is being updated dynamically by jQuery. http://getfirebug.com/ I had an issue with the accordion script flaking before, it turned out to be an extra in my HTML. It is a good idea to test the scripts in a barebones template to verify it is not your ow

[jQuery] Re: JQuery UI Accordion Plugin

2009-05-25 Thread Danny Nolan
First is the code you cant see. Any and all post document ready changes are not visible by view >> page source. Instead, select the object with your mouse, right click, and view selection source. As for the accordion, not so sure there! --- On Mon, 5/25/09, Bharat wrote: From: Bharat Subjec

[jQuery] Re: jQuery - UI - Dialog (embedding a web page)

2009-05-08 Thread williamstam
well you could use .load() to load a page into a div inside the dialog... then open it. i dont like using iframes *waits for the flameing* On May 8, 7:23 pm, DualFlex wrote: > Many thanks Richard! > > It's working! I have a few new twists. Meet you in the other forum! > --- > Dualflex

[jQuery] Re: jQuery - UI - Dialog (embedding a web page)

2009-05-08 Thread DualFlex
Many thanks Richard! It's working! I have a few new twists. Meet you in the other forum! --- Dualflex

[jQuery] Re: jQuery - UI - Dialog (embedding a web page)

2009-05-08 Thread Richard D. Worth
On Fri, May 8, 2009 at 10:40 AM, DualFlex wrote: > > Hi all, > > Just starting with jQuery... > > Q1) What is the most elegant way to embed another web page into a > dialog? Use an IFrame? Most elegent would be to call .dialog() on the iframe itself: $("iframe").dialog() or $("#theidoftheifr

[jQuery] Re: JQuery UI Accordion option "collapsible:true" not collapsing

2009-04-23 Thread Richard D. Worth
Please bring this up over on the jQuery UI list: http://groups.google.com/group/jquery-ui Thanks. - Richard On Thu, Apr 23, 2009 at 8:30 AM, Nico wrote: > > I have a simple Accordion which I have given the settings: > >$("#accordion").accordion({ >event

[jQuery] Re: JQuery UI tabs and pagination

2009-04-11 Thread stepan
hi! check the tab ID, or check currently selected tab On 11 апр, 21:00, Claudio Poli wrote: > hi everyone, > I've this situation: an X number of tabs; in tabs content there's a > div classed .to_be_replaced and links for paginating. > when I click on a link it should replace the content > of .to

[jQuery] Re: JQuery UI tabs and pagination

2009-04-11 Thread Claudio Poli
whops, thanks for pointing it out. claudio Il giorno 11/apr/09, alle ore 15:46, Klaus Hartl ha scritto: Use: $(".to_be_replaced", ui.panel).load(this.href); --Klaus On 11 Apr., 12:00, Claudio Poli wrote: hi everyone, I've this situation: an X number of tabs; in tabs content there's a

[jQuery] Re: JQuery UI tabs and pagination

2009-04-11 Thread Klaus Hartl
Use: $(".to_be_replaced", ui.panel).load(this.href); --Klaus On 11 Apr., 12:00, Claudio Poli wrote: > hi everyone, > I've this situation: an X number of tabs; in tabs content there's a > div classed .to_be_replaced and links for paginating. > when I click on a link it should replace the con

[jQuery] Re: jQuery UI tabs: show struts action response in the current tab panel and switch to another tab

2009-04-08 Thread kpi
I found the solution for the first problem: var $tabs = $('#tabs').tabs( { load: function(event, ui) { $('a', ui.panel).click(function() { $(ui.panel).load(this.href); return false; }); $("form[name=

[jQuery] Re: Jquery ui tabs "select a tab from a text link instead of clicking a tab itself"

2009-04-07 Thread Klaus Hartl
On 16 Mrz., 14:25, jjsanders wrote: > Hello, > > I am using still the old version of ui (not the 1.7) > > I saw > herehttp://docs.jquery.com/UI/Tabs#...select_a_tab_from_a_text_link_inste... > the posibility to navigate between tabs by using a link and not the > tabs. > > I implemented the cod

[jQuery] Re: Jquery ui tabs "select a tab from a text link instead of clicking a tab itself"

2009-04-07 Thread mhussein
Hello, I'm having the same problem, so any help would be appreciated. On Mar 16, 4:25 pm, jjsanders wrote: > Hello, > > I am using still the old version of ui (not the 1.7) > > I saw > herehttp://docs.jquery.com/UI/Tabs#...select_a_tab_from_a_text_link_inste... > the posibility to navigate betw

[jQuery] Re: Jquery UI 1.7.1 Tabs - Close open tab on mouseout from overall tab group

2009-03-26 Thread jq noob
Actually I have different form elements in each div. I am using the tabs to seperate/clean up the page because it contained various multi- select, dropdowns groupings etc, they are used for filtering data on a dynamic grid/chart. I actually don't know which ones will be on the page until runtime s

[jQuery] Re: Jquery UI 1.7.1 Tabs - Close open tab on mouseout from overall tab group

2009-03-26 Thread acamar
I suppose you'd like to have tabs to work as dropdown menu. In this case I can suggest two ways: 1. Using tabs plugin... You're right, it needs to attach mouseout event on div panel like this $('#tabs-1, #tabs-2, #tabs-3').mouseout(function () { $("#tabs").tabs('option', 'selected', -1);

[jQuery] Re: Jquery UI 1.7.1 Tabs - Close open tab on mouseout from overall tab group

2009-03-26 Thread jq noob
If I implement your code, then I can never actually move my mouse down into the content div. When I mouseover the tab, the div is shown, but when I move the mouse cursor off the tab and try to move it into the div, the div disappears because the mouseout event gets fired. Since there are really

[jQuery] Re: Jquery UI 1.7.1 Tabs - Close open tab on mouseout from overall tab group

2009-03-25 Thread acamar
In context of mouseout event handler the $tabs variable is not visible. So try $('#tabs').mouseout(function () { $("#tabs").tabs('option', 'selected', -1); }); that should help. On 25 мар, 13:44, jq noob wrote: > I am currently using > > $(document).ready(function() > { > var $tabs =

[jQuery] Re: Jquery UI 1.7.1 Tabs - Close open tab on mouseout from overall tab group

2009-03-25 Thread Richard D. Worth
You may want to ask on the jQuery UI list: http://groups.google.com/group/jquery-ui - Richard On Wed, Mar 25, 2009 at 5:44 AM, jq noob wrote: > > I am currently using > > $(document).ready(function() > { > var $tabs = $("#tabs").tabs({ >selected: -1, >event: 'mouseover', >

[jQuery] Re: jQuery UI... Being integrated into our entire website

2009-03-14 Thread Paul Hutson
Looks good - some of the bits on the site are a bit cheesy, i.e. "Saving the world... from high priced..." :) But yeah, the UI is good. Regards, Paul On Mar 14, 3:07 am, K-BL wrote: > Thursday I released a new version of a website I manage, > Cablesforless.com, which takes full advantage of jQ

[jQuery] Re: Jquery UI Dialog - default button (focus on the default button)

2009-03-08 Thread mcologne
http://groups.google.com/group/jquery-ui On 8 Mrz., 14:20, mcologne wrote: > there is an own group for ui:http://groups.google.com/group/jquery-en > > you can change the focus by adding: > > open: function() { >         $(this).parents('.ui-dialog-buttonpane button:eq(0)').focus(); >     }, > >

[jQuery] Re: Jquery UI Dialog - default button (focus on the default button)

2009-03-08 Thread mcologne
there is an own group for ui: http://groups.google.com/group/jquery-en you can change the focus by adding: open: function() { $(this).parents('.ui-dialog-buttonpane button:eq(0)').focus(); }, On 8 Mrz., 13:23, Alexey wrote: > Hello > I am using Jquery plugin Dialog and i can not f

[jQuery] Re: jQuery UI Question - Tool tip

2009-03-04 Thread JimD
I would also check out simpletip. http://craigsworks.com/projects/simpletip/# On Mar 3, 1:33 pm, webRat wrote: > Thanks Karl & Jörn for both your responses.

[jQuery] Re: jQuery UI 1.6rc6 - how to sort tabular data?

2009-03-03 Thread Sam H
Sorry, just realized this may be misleading. jQuery UI "Sortable" allows you to REORDER items in a list. I am looking to have a user drag/reorder items in a table, basically. On Mar 3, 4:20 pm, Sam H wrote: > I know you can't actually sort tables, it's kinda broken.  I can > easily sort UL lis

[jQuery] Re: jQuery UI Question - Tool tip

2009-03-03 Thread webRat
Thanks Karl & Jörn for both your responses.

[jQuery] Re: jQuery UI Question - Tool tip

2009-03-03 Thread Karl Swedberg
By the way, I have a "proof of concept" themeRoller-ready clueTip on GitHub: http://github.com/kswedberg/jquery-cluetip/tree/ui It's currently unsupported (just a proof of concept), because it's a little kludgy with the rounded corner stuff. But it has worked in my testing, and it supports

[jQuery] Re: jQuery UI Question - Tool tip

2009-03-03 Thread webRat
Yeah, I just found the wiki via google search after I had posted. That sucks too as it's going to break the look/feel of a consistent theme. I guess I have nothing better to do with my day today than to fuddle with CSS. :D

[jQuery] Re: jQuery UI Question - Tool tip

2009-03-03 Thread Jörn Zaefferer
My tooltip plugin: http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/ Karl's: http://plugins.learningjquery.com/cluetip/ Neither is ThemeRoller compatible jQuery UI will eventually include a tooltip plugin, its just not there, yet. See also http://jqueryui.pbwiki.com/Tooltip Jörn On T

[jQuery] Re: jQuery UI 1.6rc6 & Google Loader

2009-02-26 Thread Richard D. Worth
On Thu, Feb 26, 2009 at 9:51 AM, Liam Potter wrote: > > How would I include jQuery UI 1.6rc6 with the google api loader? Or do > google only host the last full releases? > Yup, just final releases. We're trying to get the 1.7 final release out asap, and google will have it up within a day or two

[jQuery] Re: jquery ui sortable

2009-02-17 Thread Richard D. Worth
See the 'update' event and the 'toArray' method: http://docs.jquery.com/UI/Sortable#events http://docs.jquery.com/UI/Sortable#methods If you have any further questions about this or other jQuery UI plugins, please note there's a dedicated mailing list for jQuery UI: http://groups.google.com/gro

[jQuery] Re: jQuery UI dialog simple question for a newbie

2009-02-11 Thread Richard D. Worth
For the benefit of others there, we'd be happy to answer your question over on the jQuery UI list: http://groups.google.com/group/jquery-ui Thanks. - Richard On Wed, Feb 11, 2009 at 8:48 AM, EJB wrote: > > Hi all. > > A very simple jquery UI dialog question as I undertake learning this > new

  1   2   3   >