[jquery-ui] Re: Accordion Content Size, Padding

2009-10-02 Thread Dave Pitman
Well Brandon, this is the section where I placed the line of code you provided. It is in the page containing the Accordion Object. Not sure if this is the proper location, but it in fact does what I wanted, thanks. { var accordionOpts = { event: 'click', animated: 'slide',

[jquery-ui] Re: jQuery UI Portlets & Cookies

2009-10-02 Thread Kelly
Hi Craig, Good luck getting an answer from this group. No one knows. I've had a similar post out here for about a month without one reply. http://groups.google.com/group/jquery-ui/browse_thread/thread/90fbd89f41136ad3?hl=en# On Oct 1, 6:19 pm, craigeves wrote: > Please can someone help? >

[jquery-ui] Re: Accordion Content Size, Padding

2009-10-02 Thread Brandon Ryall
If you just add $(".ui-accordion-content").css("padding","4px"); After you initialize the accordion it should fix your problem. Just change 4px to whatever you want. Sent from my iPhone On Oct 2, 2009, at 6:46 PM, Dave Pitman wrote: > > Thanks for your reply Brandon, > > I guess I should ha

[jquery-ui] Re: Datepicker widget way too big

2009-10-02 Thread The alMIGHTY N
I saw your response to another user who was having issues with the same thing. Thanks for the info! On Oct 2, 2:51 pm, "Richard D. Worth" wrote: > The jQuery UI themes are optimized for > body { font-size: 62.5%; } > > which aligns 1.2em to 12px, 1.4em to 14px, etc. You can add the above rule >

[jquery-ui] Re: Accordion Content Size, Padding

2009-10-02 Thread Dave Pitman
Thanks for your reply Brandon, I guess I should have confessed that I'm not much of a coder. I can open the css and edit it, but I am not sure which file, and where to edit it. I have tried editing a few of the css files in a copied theme folder, but I'm not getting it correct. Are you saying I

[jquery-ui] icons and content within tag appearing outside it

2009-10-02 Thread jeffkee
http://www.regalesuite.com/demo/admin/login.php I have the simplest page - and that A tag with the "lost pasword" text and the little span icon was copied over as is from the jquery UI demo page. howeve for some reason, as you can see (I'm using FF - I usually develop on FF and then optimize for

[jquery-ui] Removing themeing from dialog? [SOLUTION]

2009-10-02 Thread oribani
> I'm trying to pop up a modal div for which I want to use 100% my own > theming. I don't want a title bar, no buttons (easy), no jQuery UI > themes necessary. > > Oh, well, I guess I want to retain the overlay theme. I just need to > strip the dialog box itself. > > So is there a way I can remo

[jquery-ui] Re: Sortable toArray help, my array is empty!

2009-10-02 Thread Gremlyn1
Gotcha, I thought that would be the case. I'll just work with the output string in PHP, it's easy enough (actually, I'm already set up for it with how I WAS doing the order sorting). Thanks for all your help! Now I have to make this work going between two lists... wish me luck ;) On Oct 2, 1:09 p

[jquery-ui] Re: Sortable toArray help, my array is empty!

2009-10-02 Thread Nate Laws
On Fri, Oct 2, 2009 at 3:11 PM, Gremlyn1 wrote: > > OK, so I tried out your code, adding the missing ',' at the end of the > placeholder line, and it is almost working. I am posting the variable > from the hidden input and calling the results from a PHP print_r for > now, just to see whats going

[jquery-ui] Re: Removing theming/widgets from dialog?

2009-10-02 Thread oribani
On 10月2日, 午後12:13, oribani wrote: > > > > >   I'm trying to pop up a modal div for which I want to use 100% my own > > > > > theming.  I don't want a title bar, no buttons (easy), no jQuery UI > > > > > themes necessary. > > > > > >   It seems like jQuery UI adds too many things to a dialog, so

[jquery-ui] Re: Removing theming/widgets from dialog?

2009-10-02 Thread oribani
> > > >   I'm trying to pop up a modal div for which I want to use 100% my own > > > > theming.  I don't want a title bar, no buttons (easy), no jQuery UI > > > > themes necessary. > > > > >   It seems like jQuery UI adds too many things to a dialog, so maybe I > > > > have to look for another so

[jquery-ui] Re: Sortable toArray help, my array is empty!

2009-10-02 Thread Gremlyn1
OK, so I tried out your code, adding the missing ',' at the end of the placeholder line, and it is almost working. I am posting the variable from the hidden input and calling the results from a PHP print_r for now, just to see whats going on. It isn't separating the into individual key->value pai

[jquery-ui] Re: More Framework icons planned?

2009-10-02 Thread Richard D. Worth
On Fri, Oct 2, 2009 at 3:00 PM, Gavin E. wrote: > > I love the framework icons. Are there plans for adding more? Do > download speeds suffer greatly if, say, JUI were to double to number > of framework icons? > I could see us adding 10-20 more over time, if needed, but doubling the number woul

[jquery-ui] Flash movie inside dialog

2009-10-02 Thread Julie
Does anyone have any examples of embedding a flash video inside a jquery dialog? When I try it the video overtakes the entire page, and displays immediately, not when I trigger the dialog open function. --~--~-~--~~~---~--~~ You received this message because you ar

[jquery-ui] More Framework icons planned?

2009-10-02 Thread Gavin E.
I love the framework icons. Are there plans for adding more? Do download speeds suffer greatly if, say, JUI were to double to number of framework icons? One or two I might want to see is something to do with products or product. I have an app that has a link `View all Products` for store manag

[jquery-ui] Re: Datepicker widget way too big

2009-10-02 Thread Richard D. Worth
The jQuery UI themes are optimized for body { font-size: 62.5%; } which aligns 1.2em to 12px, 1.4em to 14px, etc. You can add the above rule to your page, change your theme to use a different default font size (1em instead of 1.1em) or override it .ui-widget { font-size: 1em; } - Richard On Fri

[jquery-ui] Re: CSS and Datepicker calendar's size

2009-10-02 Thread The alMIGHTY N
Thanks a lot for this post! I was experiencing the same exact problem as Tiago. I couldn't for the life of me figure out why it wasn't working. Is this 62.5% rating standard? I've never seen this before in all my years of web design and development. Fortunately, I designed my application so that

[jquery-ui] Datepicker widget way too big

2009-10-02 Thread The alMIGHTY N
I put together a very simple and basic datepicker expecting the widget to look similar to the one on the jQuery UI datepicker demo page. However, the widget on my page is about twice as big as the example on the jQuery website. I can't for the life of me figure out why it's so big. I'm not using a

[jquery-ui] Re: Sortable toArray help, my array is empty!

2009-10-02 Thread Gremlyn1
Thanks, I think the stop event is what I'm looking for. I do have firebug, but alas I'm so new to JS that I can't properly utilise it's helpfulness. Does the console.log line specifically tie in to firebug? On Oct 2, 11:18 am, Nate Laws wrote: > Your initializing syntax is wrong. The function th

[jquery-ui] Re: Sortable toArray help, my array is empty!

2009-10-02 Thread Nate Laws
Your initializing syntax is wrong. The function that you pass doesn't actually do anything. You probably want: $j("#faq_sort").sortable({ axis: 'y', handle: 'img', placeholder: 'ui-state-highlight' stop: function(event, ui) { var faq_o

[jquery-ui] Re: Accordion Content Size, Padding

2009-10-02 Thread Brandon Ryall
I usually just use selectors like $(".ui-accordion-content").css ("padding","4px"); Or you could just add a class to the contents container. Both work fine for me. On Oct 2, 12:53 pm, Dave Pitman wrote: > Is there a way to control the padding within the content area? > > For example, I would l

[jquery-ui] Accordion Content Size, Padding

2009-10-02 Thread Dave Pitman
Is there a way to control the padding within the content area? For example, I would like to place an image as content and be able have it fill the content area to within "x" pixels. Thanks. --~--~-~--~~~---~--~~ You received this message because you are subscribe

[jquery-ui] Font size style is not applied on additional tabs

2009-10-02 Thread MWKZ
Hi, I used the JQuery UI tabs to add a tab control to my website. If the tabs were used as done in the example on the JQueryUI site then the control works correctly. Nevertheless, after adding additional tabs with IDs tabs-4, tabs-5 ... the new tabs will have a bigger font size as if JQuery UI co

[jquery-ui] Draggable and Droppable

2009-10-02 Thread Brandon Ryall
Is it possible to check if draggable and droppable are already initialized? Or even better is there a way to restart (in a way) the draggable and droppable items after their ajax call? I have items that are draggable and droppable loaded from ajax and on loading that data it initializes a functio

[jquery-ui] Re: Sortable toArray help, my array is empty!

2009-10-02 Thread Gremlyn1
I also will be adding a second list to this soon that I can to move items between, if that will make a difference to the outcome. The concept there will be to have an active and inactive FAQs list that I can move then FAQs between. --~--~-~--~~~---~--~~ You received

[jquery-ui] Re: Jquery tabs: redirecting to tab

2009-10-02 Thread Gremlyn1
Are you storing the last known position of the tab in a cookie? If so, you can always set the specific tab in the cookie and refresh the page so it loads to it. I've not sued the jQuery tabs yet, but that's how it has worked for me in the past with the 'other' JS library tab system ;) On Oct 1, 1

[jquery-ui] Re: Removing theming/widgets from dialog?

2009-10-02 Thread Bobster
On Oct 2, 7:30 am, oribani wrote: > > >   I'm trying to pop up a modal div for which I want to use 100% my own > > > theming.  I don't want a title bar, no buttons (easy), no jQuery UI > > > themes necessary. > > > >   It seems like jQuery UI adds too many things to a dialog, so maybe I > > > h

[jquery-ui] Generic dialog with ajax content polling

2009-10-02 Thread Marcel Karras
Hello, using JQuery UI Dialog for simple dialogues works very well but creating nested dialogues gets messed up by the IE z-axis fix the jquery ui library comes with. I uploaded a code scenario: http://snipplr.com/view/20577/jquery-generic-dialog-example-part-12/ http://snipplr.com/view/20578/jq

[jquery-ui] Re: CSS Validation?

2009-10-02 Thread Scott González
Hi, We are aware of the validation errors and as Johnny has stated, we've written the invalid CSS intentionally. We take a much more pragmatic approach than saying "all CSS must validate." In the real world, that just doesn't work if you want to actually take advantage of the flexibility and func

[jquery-ui] Jquery tabs: redirecting to tab

2009-10-02 Thread zweb
Based on certail action, want user to go back to a particular tab and not the first tab of page as default On IE 7, only following works http://www.example.com/customer/30/#orders On Firefox and safari, only following works http://www.example.com/customer/30#orders Note / before # on IE. How c

[jquery-ui] jQuery UI Portlets & Cookies

2009-10-02 Thread craigeves
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 up sortable ul and li. Please help. Code: $(functio

[jquery-ui] Re: Removing theming/widgets from dialog?

2009-10-02 Thread oribani
> >   I'm trying to pop up a modal div for which I want to use 100% my own > > theming.  I don't want a title bar, no buttons (easy), no jQuery UI > > themes necessary. > > >   It seems like jQuery UI adds too many things to a dialog, so maybe I > > have to look for another solution, but I really

[jquery-ui] Re: Removing theming/widgets from dialog?

2009-10-02 Thread oribani
On 10月2日, 午前12:37, oribani wrote: > Hi, > >   I'm trying to pop up a modal div for which I want to use 100% my own > theming.  I don't want a title bar, no buttons (easy), no jQuery UI > themes necessary. > >   It seems like jQuery UI adds too many things to a dialog, so maybe I > have to look

[jquery-ui] Removing theming/widgets from dialog?

2009-10-02 Thread oribani
Hi, I'm trying to pop up a modal div for which I want to use 100% my own theming. I don't want a title bar, no buttons (easy), no jQuery UI themes necessary. It seems like jQuery UI adds too many things to a dialog, so maybe I have to look for another solution, but I really like the dialog