[jquery-ui] Re: Hiding repeat cell values using jQuery UI?

2009-09-07 Thread fichtre.diantre
Hi, you missed the '$' before your expression : ('#tableWrapper').load(... => $('#tableWrapper').load(... --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to j

[jquery-ui] Re: Accordion: icons don't show up with default jquery-ui download & example

2009-09-07 Thread Matthew McGrew
Welp. It seems the theme images by default want to be under the stylesheets folder. After that icons work great! sigh. On Sep 6, 12:44 pm, Matthew McGrew wrote: > I downloaded a full version of jquery-ui.  I have the js, css, and > images set.  The example looks and behaves perfect except tha

[jquery-ui] Re: Hiding repeat cell values using jQuery UI?

2009-09-07 Thread Joe0855
Thanks again Toby! I have added the following in the html "head" section of the results page (called "results.php"): function hideRepeats(){ var thisHtml = $(this).find('.noRepeat').html(); var prevHtml = $(this).parent().prev().find('.noRepeat').html(

[jquery-ui] Moving object with bouncing animation

2009-09-07 Thread Maxime
I'm sort of new to JQuery. I would like to have an element moving across my page but with a bouncing effect. I've found an example of what I want, but it's done with MooTools: http://www.clientcide.com/wiki/cnet-libraries/05-fx/01-fx.move#additional-options (The "Additional Options" example sho

[jquery-ui] can't select text inside accordion

2009-09-07 Thread Lotti
http://www.nextrl.it/ccs/index.html hi guys! up here there is my page with accordion and other widgets/ effects. i notice that on this accordion: http://jqueryui.com/demos/accordion/ i can select the text inside the divs.. but on mine doesn't work :\ why? maybe because my accordion div cointane

[jquery-ui] Re: jQuery Resizable not working

2009-09-07 Thread Jörn Zaefferer
Can you provide a testpage? Jörn On Mon, Sep 7, 2009 at 6:28 AM, Sanz wrote: > > Hi, > > The handle for resizable usually sits at bottom right of any element > for which resizable is attached. But for me, it sits at the top left > corner and whatever configurations I change, the handle doesnt ch

[jquery-ui] Problem with accordion

2009-09-07 Thread Rik Logtenberg
Hi, I'm struggling with the accordion. The first div for the first item seems to have a height automatically set that pushes the second item down about 100 pixels. I can't seem to figure out where to control that and I've tried... has this happened to anyone else? --~--~-~--~~

[jquery-ui] Re: How to remove the old autocompletion field value?

2009-09-07 Thread pankaj sharma
Any help please!! Sorry by mistake i have uploaded twice. --~--~-~--~~~---~--~~ 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 unsubscribe from this g

[jquery-ui] Re: hide/show/toggle: how to get the state?

2009-09-07 Thread Lotti
don't know if i'm too tired or maybe too dumb.. however the script wasn't working because i misspelled .portlet-content with .post- content so sorry guys, i'll try to don't waste more of your time next time. thank you for minimized.push(...). i forgot to put [i] after the variable name. On 7 Se

[jquery-ui] Re: Sortables & Droppable together

2009-09-07 Thread TriAgency
Wow Paul thanks that is amazing! You have the whole draggable shopping cart thing popping, that is so cool! I am torn between stripping down my code so I can make an example (the current one is hidden behind a login and integrated into our whole CMS), and just taking this new example and reworki

[jquery-ui] Re: hide/show/toggle: how to get the state?

2009-09-07 Thread Nate Laws
You should get firebug for firefox, and then console.log("stuff") for debugging instead of using document.writeln. I think your problem is this line: minimized=jQuery($this).parents("div").find(".minimizable").attr("id"); which should instead be something like: minimized.push(jQuery($this).close

[jquery-ui] Highlight and RGBa

2009-09-07 Thread Matthew F
I couldn't get highlight to work when the background uses rgba see: http://pastie.org/private/gxzxwnjve6npxvvxpqh3q Thanks, Matt --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this gro

[jquery-ui] How to remove the old autocompletion field value?

2009-09-07 Thread pankaj
Hello! I've having troubles for fixing this bug. There are two autocompletion field in my application, if I type something in field A then its related value should autoset in field B, which is working. But if I change the value in A again then that reflect is not taking in field B. So conclusion

[jquery-ui] How to remove the old autocompletion field value?

2009-09-07 Thread pankaj
Hello! I've having troubles for fixing this bug. There are two autocompletion field in my application, if I type something in field A then its related value should autoset in field B, which is working. But if I change the value in A again then that reflect is not taking in field B. So conclusion

[jquery-ui] Re: hide/show/toggle: how to get the state?

2009-09-07 Thread Lotti
it seems that ":hidden" doesn't work or find items.. if i print the content of the cookie everything i get is blank.. the setCookieState() is called after clicking on the box's ui-icon that makes the div to "toggle('blind')". so... when a div it "toggled" it get :hidden tag or not? however here

[jquery-ui] Re: hide/show/toggle: how to get the state?

2009-09-07 Thread Nate Laws
They are selectors so all those things will work. The most efficient selector would probably be $("#id:hidden") You can also do things like $("div").each(function(){ if( $(this).is(":hidden") ) { // do something } else { // is visible } }) and $("div").filter(":hidden").css(wh

[jquery-ui] Re: jQuery Slider lag / performance

2009-09-07 Thread Scott González
Hey Toaster, I've never seen a lag in slider. Do you have a demo page showing the problem? Are you seeing this in all browsers or just a specific one? On Sep 6, 12:28 pm, Toaster wrote: > Hello > > I was thinking of utilizing the jQuery UI slider in my application but > the lag in the moveme

[jquery-ui] Re: hide/show/toggle: how to get the state?

2009-09-07 Thread Lotti
well, now with $("div:hidden") i will get all hidden div.. but i need to get one by one to see if they are hidden or not. do you think that something like $("#div:hidden") or $("div:hidden [id=#id]") could work? --~--~-~--~~~---~--~~ You received this message becau

[jquery-ui] Re: hide/show/toggle: how to get the state?

2009-09-07 Thread Lotti
with $("#div").css("hidden"); i was meaning $("#div").css("display"). XD however i will try richard solutions: i didn't found that pages yesterday and this morning. On 7 Set, 15:25, "Cheng Chi(Cloudream)" wrote: > Try $("#div").css("display") ? > > On Sep 7, 8:11 pm, Lotti wrote: > > > hello

[jquery-ui] Re: hide/show/toggle: how to get the state?

2009-09-07 Thread Richard D. Worth
See http://docs.jquery.com/Selectors/hidden http://docs.jquery.com/Selectors/visible - Richard On Mon, Sep 7, 2009 at 6:11 AM, Lotti wrote: > > hello guys! > > i'm trying to save on a cookie the state of my div (hidden or showed) > but i don't know what to type to access to his internal var. >

[jquery-ui] Re: hide/show/toggle: how to get the state?

2009-09-07 Thread Cheng Chi(Cloudream)
Try $("#div").css("display") ? On Sep 7, 8:11 pm, Lotti wrote: > hello guys! > > i'm trying to save on a cookie the state of my div (hidden or showed) > but i don't know what to type to access to his internal var. > > i tried with $("#div").css("visibility"); and $("#div").css("hidden"); > and i

[jquery-ui] Re: enable dates based on changeMonth and changeYear

2009-09-07 Thread danduv
Thanks fichtre for the idea, That helped !! Cheers, Dandu. --~--~-~--~~~---~--~~ 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 unsubscribe from th

[jquery-ui] How to constrain draggable into a smaller div (simulate scrollable)

2009-09-07 Thread David
Hi, I have 2 divs, a parent and a children which is draggable. Parent is in overflow hidden and child is bigger (larger) than its parent. I want to constrain on its x axys (that the easiest part) and to be between 0 and - width, it's mean that child will be draggable until its left side reach th

[jquery-ui] Re: ui default slider - color fade

2009-09-07 Thread Richard D. Worth
Can you describe in more detail what you're wanting to do? Do you want something to fade when you move the slider? Do you have a range slider and you want the shaded region to be a gradient? - Richard On Sat, Sep 5, 2009 at 8:55 AM, rockthehouse < patrick.geschin...@googlemail.com> wrote: > > hey

[jquery-ui] hide/show/toggle: how to get the state?

2009-09-07 Thread Lotti
hello guys! i'm trying to save on a cookie the state of my div (hidden or showed) but i don't know what to type to access to his internal var. i tried with $("#div").css("visibility"); and $("#div").css("hidden"); and i get "undefined". some clues? --~--~-~--~~~---~

[jquery-ui] jQuery Resizable not working

2009-09-07 Thread Sanz
Hi, The handle for resizable usually sits at bottom right of any element for which resizable is attached. But for me, it sits at the top left corner and whatever configurations I change, the handle doesnt change its position. Please help. Thanks. --~--~-~--~~~---~--~

[jquery-ui] Accordion Problems in IE

2009-09-07 Thread btd1
Hi everyone, Fistly, let me say that jQuery UI is great workkeep it up. I am having problems using the accordion in IE. It works perfectly in Firefox (as usual). My problem is that when I click on a h3 to adjust the accordion, two h3's merge into each other until you mouse over them, then th

[jquery-ui] Re: Hiding repeat cell values using jQuery UI?

2009-09-07 Thread Toby
Yes it should be no problem to apply this to a dynamic table to all... As soon as you load the table you need to call the script to apply the hiderepeat cell values.. make a function of what i wrote earlier: function hideRepeats(){ ... } and then create a php script or something similar to gen

[jquery-ui] Re: Sortables & Droppable together

2009-09-07 Thread Paul Bakaus
Hey! Could you prepare a isolated test file so I can debug it more easily? That would help a lot. Also, for an example of how to do the selectin/dragging thing, have a look at my recent demo using the upcoming refactor of selectable: http://jquery-ui.googlecode.com/svn/branches/dev/selectable/de