[jquery-ui] Re: Jquery Modal dialog problem
I'm thinking that you need to move this $("#mydialog").dialog({modal:true, autoOpen:false, title:Title, width:800, height:380}); out of the open OpenDialog function and have that in your document ready function see whats happening is that it creating a new instance of .dialog every timeyou call OpenDialog() I'm not sure if used the right terms there but that's essentially whats happening Mean Mike On Oct 30, 9:54 pm, Rushi wrote: > Hi, > > I have a strange problem with JQuery modal dialog. I am using the > following code to open my dialog. > > function OpenDialog() > { > UpdateDIVForThisDialog(); > $("#mydialog").dialog({modal:true, autoOpen:false, title:Title, > width:800, height:380}); > $("#mydialog").dialog("open"); > > } > > function UpdateDIVForThisDialog() > { > var URL = "MyURL"; > var Parameters = "MyParameters"; > > $.ajax({ > url: URL, > async: false, > data: Parameters, > cache:false, > type: "GET", > dataType: "html", > success: function(UserData) > { > document.getElementById("mydialog").innerHTML = UserData; > } > }); > > } > > It's a straightforward piece of code that gets some data via an AJAX > call and updates the innerHTML of the div tag that is then used by the > OpenDialog function. The strange thing happening is that the div's > innerHTML seems to be cached when the dialog is opened. This leads to > the dialog showing the HTML of the earlier AJAX call. Please note that > the AJAX call does return me the new HTML because I displayed it using > an alert and I did see the new HTML. I also did an alert on > document.getElementById("mydialog").innerHTML and I see that the "new" > HTML content is set to the div tag. But, somehow, when the dialog is > opened, it shows me the old HTML. If it helps, the HTML is retrieved > from a MVC View and I tried setting the cache-control and all such > properties so there is no caching. But, I don't think thats the > problem because I do get the new HTML back from the server. It's the > dialog that somehow remembers the old div tag contents. If I refresh > the browser, I do see the correct contents in the dialog. The issue > happens in IE, Firefor and Chrome. So, I don't think it's browser > specific. I tried destroying the dialog before opening but it doesn't > work either. I am unable to find out the reason for this strange > behavior. Any help would be greatly appreciated. -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
[jquery-ui] Transparency problem in IE8 with Drag and drop
*moderator: Had to rewrite this one. Hi I need help with IE8 and an app I developed Please look at: http://sampleboardonline.com/boardcreator.php Then choose categories and barstools. Drag it to the center. Now look how messed up it is. Open up firefox and it is just perfect. I have no idea what to do please help someone? Louis __ -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
[jquery-ui] Jquery Modal dialog problem
Hi, I have a strange problem with JQuery modal dialog. I am using the following code to open my dialog. function OpenDialog() { UpdateDIVForThisDialog(); $("#mydialog").dialog({modal:true, autoOpen:false, title:Title, width:800, height:380}); $("#mydialog").dialog("open"); } function UpdateDIVForThisDialog() { var URL = "MyURL"; var Parameters = "MyParameters"; $.ajax({ url: URL, async: false, data: Parameters, cache:false, type: "GET", dataType: "html", success: function(UserData) { document.getElementById("mydialog").innerHTML = UserData; } }); } It's a straightforward piece of code that gets some data via an AJAX call and updates the innerHTML of the div tag that is then used by the OpenDialog function. The strange thing happening is that the div's innerHTML seems to be cached when the dialog is opened. This leads to the dialog showing the HTML of the earlier AJAX call. Please note that the AJAX call does return me the new HTML because I displayed it using an alert and I did see the new HTML. I also did an alert on document.getElementById("mydialog").innerHTML and I see that the "new" HTML content is set to the div tag. But, somehow, when the dialog is opened, it shows me the old HTML. If it helps, the HTML is retrieved from a MVC View and I tried setting the cache-control and all such properties so there is no caching. But, I don't think thats the problem because I do get the new HTML back from the server. It's the dialog that somehow remembers the old div tag contents. If I refresh the browser, I do see the correct contents in the dialog. The issue happens in IE, Firefor and Chrome. So, I don't think it's browser specific. I tried destroying the dialog before opening but it doesn't work either. I am unable to find out the reason for this strange behavior. Any help would be greatly appreciated. -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
[jquery-ui] Drag and drop in IE8 transparency all funny
Hi I need help with IE8 and an app I developed Please look at: http://sampleboardonline.com/boardcreator.php Then choose categories and barstools. Now look how messed up it is. Open up firefox and it is just perfect. I have no idea what to do please help someone? Louis -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
[jquery-ui] Re: Tabs - align right
Just take a look at: http://jsbin.com/iqupu/edit On 15 Okt., 13:20, RP wrote: > Hi, > > Is it possible to align thetabsto therightwithout causing problems > with other elements of the CSS? I've tried: > > .ui-tabs.ui-tabs-nav li { > border-bottom-width:0 !important; > float:right; > margin:0 0.2em -1px 0; > padding:0; > position:relative; > > } > > ... but that reverses the order of thetabs. > > Anyone have any thoughts on how this might be achieved without too > much (if any) hacking of the JS? > > Thanks -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
[jquery-ui] Date Picker in Dialog Modal
I want to include the date picker inside of a dialog ui tool I am assuming the z-index will be a factor. Has anyone successfully implemented this? -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
[jquery-ui] Re: Jquery Confirm Box
I am assuming you want to use jquery dialog box here. I don't think there is a confirm box in jquery but the jquery modal dialog can be used like a confirm box. Here's an example: $("#mydialog").dialog({modal:true, title:'Dialog Title', resizable:false, 'buttons':{ "OK": function() { DoOkProcessing();}, "Cancel":function() {$(this).dialog ("close");}}}); $("#mydialog").dialog("open"); Hope this helps. On Oct 30, 9:33 am, "Garg, Vijay" wrote: > Hello, > I want to change JavaScript Confirm () with Jquery so that I can apply > some style sheets there. It should behave same as JavaScript where I can > get user response and execute code based on user response. Has anyone > have any idea about this. > > Thanks > VIJAY GARG > > This e-mail, including any attachment(s) hereto, is intended only for > the individual or entity to whom it is addressed. It may contain > proprietary, confidential or privileged information or attorney work > product belonging to Fidelity Business Services India Pvt. Ltd. (FBS > India) or its affiliates. If you are not the intended recipient of this > e-mail, or if you have otherwise received this e-mail in error, please > immediately notify the sender via return e-mail and permanently delete > the original mail, any print outs and any copies, including any > attachments. Any dissemination, distribution, alteration or copying of > this e-mail is strictly prohibited. The originator of this e-mail does > not guarantee the security of this message and will not be responsible > for any damages arising from any dissemination, distribution, alteration > or copying of this message and/or any attachments to this message by a > third party or as a result of any virus being passed on. Any comments or > statements made in this are not necessarily those of FBS India or any > other Fidelity entity. All e-mails sent from or to FBS India may be > subject to our monitoring and recording procedures. -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
[jquery-ui] UI Drag and Drop by click
Hi all, spent some hours to my next problem: I have a div with an image: I want to drag this into another div by clicking the first square and then drop it in another div by clicking on that second div, ( replacing the old image their ) second div looks something like: So when i click on knight.gif and then click on blank.gif, blank.gif must be replaced by knight.gif. And of course on the original location of knight.gif, blank.gif must be placed. How do i move this image by clicking only? Many thanks in advance for every single word, which pushes me in the right direction! -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
[jquery-ui] datepicker distortion in IE
When I add changeMonth & changeYear, the month/year takes 2 lines in IE, but not in Firefox. View this in both Firefox & IE: http://www.pointandslope.com/ac-play/ac-play.html Any suggestions how I can set it up to work in IE the same as Firefox (i.e. with month/year on a single line)? -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
[jquery-ui] Re: dynamically adding a datepicker to an element BEFORE it is attached to the DOM
$.('').datePicker({}).appendTo ("#MyDatePickerTextBox"); I tried the above as you mentioned... it threw an error... not supported method/property... is the syntax at the beginning $. correct? I also tried without the dot after the dollar sign... no luck... I need to be more specific in my description of the goal... The goal is to dynamically create a text box within a hidden DIV tag. That text box then is the element we use to attach the datepicker to... the date picker must be attached to it BEFORE the text box is officially attached to the DOM anywhere... so the text box element object just exists as a javascript object variable until much later in the script when we finally DO attach it to the DOM. Make sense? Please reply. Shawn On Oct 30, 8:32 am, Steven Black wrote: > $("#datepicker") searches the DOM for this id. So nothing is coming- > back despite having a non-DOM element with this ID. > > This should work: Reference it explicitly. > > $.('').datePicker(...).appendTo > ("#SomeContainer"); > > One caveat: I know the datepicker adds other things to the DOM, like a > textbox placeholder for example. I don't know if datepicker assumes > the target element is itself in the DOM. Let us know how this turns > out . > > **--** Steve > > On Oct 30, 3:54 am, shawn wrote: > > > Hi there, > > > I am trying to add a datepicker to an element that is not yet attached > > to the DOM. is this possible? > > > The #datepicker is a text box that is not yet added to the DOM... > > > $("#datepicker").datepicker({ > > width: 80, > > buttonImage: '/images/Web/calendar.gif' > > }); > > > How can I accomplish this? -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
[jquery-ui] Re: Tab index help
Well, i am not sure what I could post. Really what I am hoping to find is just some way to move from the field that was focused at the time the ajax was fired and move it to the next field after it runs. On Oct 30, 12:48 pm, Brandon Ryall wrote: > Aaron, > > Can you attach the code you're having difficulties with? > > - > Brandon Ryall > Software Developer > eMaint Enterprises LLC > 438 N. Elmwood Road, Suite 201 > Marlton, NJ 08053 > P 856-810-2700 x7180 > F 253-323-6353 > > On Fri, Oct 30, 2009 at 2:44 PM, the intern wrote: > > Long explanation short - I have a form that uses Ajax, each field will > > fire ajax if there was a change in the field and the user changed > > focus. Since we can only have one field change at a time, I have used > > jQuery to disable all the fields until the ajax comes back. Where I am > > having trouble is, when the ajax is done and the fields are enabled, > > the focus is still on the same field, even if they hit tab. Is there a > > jQuery that I could use that will change the focus of the form to the > > next field after the ajax has run? > > > I hope this made sense. > > > Thanks all > > > Aaron > > > -- > > > You received this message because you are subscribed to the Google Groups > > "jQuery UI" group. > > To post to this group, send email to jquery...@googlegroups.com. > > To unsubscribe from this group, send email to > > jquery-ui+unsubscr...@googlegroups.com > > . > > For more options, visit this group at > >http://groups.google.com/group/jquery-ui?hl=en. -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
Re: [jquery-ui] Tab index help
Aaron, Can you attach the code you're having difficulties with? - Brandon Ryall Software Developer eMaint Enterprises LLC 438 N. Elmwood Road, Suite 201 Marlton, NJ 08053 P 856-810-2700 x7180 F 253-323-6353 On Fri, Oct 30, 2009 at 2:44 PM, the intern wrote: > Long explanation short - I have a form that uses Ajax, each field will > fire ajax if there was a change in the field and the user changed > focus. Since we can only have one field change at a time, I have used > jQuery to disable all the fields until the ajax comes back. Where I am > having trouble is, when the ajax is done and the fields are enabled, > the focus is still on the same field, even if they hit tab. Is there a > jQuery that I could use that will change the focus of the form to the > next field after the ajax has run? > > I hope this made sense. > > Thanks all > > Aaron > > -- > > You received this message because you are subscribed to the Google Groups > "jQuery UI" group. > To post to this group, send email to jquery...@googlegroups.com. > To unsubscribe from this group, send email to > jquery-ui+unsubscr...@googlegroups.com > . > For more options, visit this group at > http://groups.google.com/group/jquery-ui?hl=en. > > > -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
[jquery-ui] Tab index help
Long explanation short - I have a form that uses Ajax, each field will fire ajax if there was a change in the field and the user changed focus. Since we can only have one field change at a time, I have used jQuery to disable all the fields until the ajax comes back. Where I am having trouble is, when the ajax is done and the fields are enabled, the focus is still on the same field, even if they hit tab. Is there a jQuery that I could use that will change the focus of the form to the next field after the ajax has run? I hope this made sense. Thanks all Aaron -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
[jquery-ui] Re: Set different styles for different days in datepicker?
Check out the beforeShowDay event. http://jqueryui.com/demos/datepicker/#event-beforeShowDay **--** Steve On Oct 29, 3:12 pm, Sebastián Zulamián wrote: > Hi all, > > I need to set/apply different styles to the same datepicker, for > example for the octuber month I need to highlight octuber 14 in red > color (this is only a example case). > > Is it possible? Can someone help me by providing an example to do > this? > Thanks all !! -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
[jquery-ui] Re: Set different styles for different days in datepicker?
Check out the beforeShowDay event. http://jqueryui.com/demos/datepicker/#event-beforeShowDay **--** Steve On Oct 29, 3:12 pm, Sebastián Zulamián wrote: > Hi all, > > I need to set/apply different styles to the same datepicker, for > example for the octuber month I need to highlight octuber 14 in red > color (this is only a example case). > > Is it possible? Can someone help me by providing an example to do > this? > Thanks all !! -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
[jquery-ui] Re: dynamically adding a datepicker to an element BEFORE it is attached to the DOM
$("#datepicker") searches the DOM for this id. So nothing is coming- back despite having a non-DOM element with this ID. This should work: Reference it explicitly. $.('').datePicker(...).appendTo ("#SomeContainer"); One caveat: I know the datepicker adds other things to the DOM, like a textbox placeholder for example. I don't know if datepicker assumes the target element is itself in the DOM. Let us know how this turns out . **--** Steve On Oct 30, 3:54 am, shawn wrote: > Hi there, > > I am trying to add a datepicker to an element that is not yet attached > to the DOM. is this possible? > > The #datepicker is a text box that is not yet added to the DOM... > > $("#datepicker").datepicker({ > width: 80, > buttonImage: '/images/Web/calendar.gif' > }); > > How can I accomplish this? -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
Re: [jquery-ui] Re: Sortable - Nested lists problem
2009/10/28 Mean Mike > ohh and I used this too ! > > http://www.b-hind.eu/jquery/ > > hope this helps you > Thanks for your feedback. We'll use it for now. I'd would rather use UI core... I hope in v1.8. Cyril, Nethik -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
[jquery-ui] Re: .ui-icon in span causes span to be block
I believe anything you apply the class ui-icon to is set to display:block; in the jquery-ui css. On Oct 30, 1:27 am, menkes wrote: > For some reason the span did not show in the original post. Next to the input > element is a span with classes ui-icon and ui-icon-info. The span has no > content. > > > > menkes wrote: > > > When I use the following: > > > > > Name > > http://old.nabble.com/.ui-icon-in-span-causes-span-to-be-block-tp2612... > Sent from the jQuery UI Discussion mailing list archive at Nabble.com. -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
[jquery-ui] Re: ThemeRoller Bug?
Got it! Thanks for the promptness :) On Oct 30, 9:08 am, "Richard D. Worth" wrote: > Can you give it one more try? I applied another fix about 30min back, right > around the time of your email. Thanks. > > - Richard > > > > On Fri, Oct 30, 2009 at 9:45 AM, RaspenJho wrote: > > Thanks for the update :) I am still having some issues... > > > I cannot get the download page to show me the "Custom Theme" option > > for inclusion in the .zip file. I tried to manually build a url (that > > I got from the ThemeRoller Dev Tool) to ask for the download, and > > received a .zip file sans CSS (just like yesterday). > > > This is a download link that does not work: > > >http://jqueryui.com/download/?themeParams=%3FffDefault%3DTrebuchet+MS... > > > On Oct 30, 6:17 am, "Richard D. Worth" wrote: > > > Sorry for the inconvenience. It's fixed. Please give it another shot, and > > > let us know if you have any other problems. Thanks. > > > > - Richard > > > > On Thu, Oct 29, 2009 at 6:30 PM, RaspenJho > > wrote: > > > > Why can't I download the theme I created? I've tried several times, > > > > and each time I open the ZIP file, it is missing the "css" folder > > > > where my .css and .png files should be... > > > > > Here is the themeroller url: > > > > >http://jqueryui.com/themeroller/#ffDefault=Trebuchet+MS%2C+Tahoma%2C+. > > .. > > > > > Any ideas? > > > > > -- > > > > > You received this message because you are subscribed to the Google > > Groups > > > > "jQuery UI" group. > > > > To post to this group, send email to jquery...@googlegroups.com. > > > > To unsubscribe from this group, send email to > > > > jquery-ui+unsubscr...@googlegroups.com > > > .com> > > > > > > . > > > > For more options, visit this group at > > > >http://groups.google.com/group/jquery-ui?hl=en. > > > -- > > > You received this message because you are subscribed to the Google Groups > > "jQuery UI" group. > > To post to this group, send email to jquery...@googlegroups.com. > > To unsubscribe from this group, send email to > > jquery-ui+unsubscr...@googlegroups.com > .com> > > . > > For more options, visit this group at > >http://groups.google.com/group/jquery-ui?hl=en. -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
Re: [jquery-ui] Re: Sortable bug in IE? Any solution
2009/10/29 Titkov Anton > I'm think tah bug connect with that bug > http://dev.jqueryui.com/ticket/4333 > Exactly ! There are few patches on that page. Haven't tested. Milestone : 1.8... -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
Re: [jquery-ui] Re: ThemeRoller Bug?
Can you give it one more try? I applied another fix about 30min back, right around the time of your email. Thanks. - Richard On Fri, Oct 30, 2009 at 9:45 AM, RaspenJho wrote: > Thanks for the update :) I am still having some issues... > > I cannot get the download page to show me the "Custom Theme" option > for inclusion in the .zip file. I tried to manually build a url (that > I got from the ThemeRoller Dev Tool) to ask for the download, and > received a .zip file sans CSS (just like yesterday). > > This is a download link that does not work: > > http://jqueryui.com/download/?themeParams=%3FffDefault%3DTrebuchet+MS%2C+Tahoma%2C+Verdana%2C+Arial%2C+sans-serif%26fwDefault%3Dbold%26fsDefault%3D1.1em%26cornerRadius%3D4px%26bgColorHeader%3D60a35c%26bgTextureHeader%3D12_gloss_wave.png%26bgImgOpacityHeader%3D35%26borderColorHeader%3D60a35c%26fcHeader%3Dff%26iconColorHeader%3Dff%26bgColorContent%3Dee%26bgTextureContent%3D03_highlight_soft.png%26bgImgOpacityContent%3D100%26borderColorContent%3Ddd%26fcContent%3D33%26iconColorContent%3D22%26bgColorDefault%3Df6f6f6%26bgTextureDefault%3D02_glass.png%26bgImgOpacityDefault%3D100%26borderColorDefault%3Dcc%26fcDefault%3D60a35c%26iconColorDefault%3D60a35c%26bgColorHover%3Dabd372%26bgTextureHover%3D02_glass.png%26bgImgOpacityHover%3D100%26borderColorHover%3D60a35c%26fcHover%3D60a35c%26iconColorHover%3D60a35c%26bgColorActive%3Dff%26bgTextureActive%3D02_glass.png%26bgImgOpacityActive%3D65%26borderColorActive%3D60a35c%26fcActive%3D00%26iconColorActive%3D60a35c%26bgColorHighlight%3Dd8e267%26bgTextureHighlight%3D03_highlight_soft.png%26bgImgOpacityHighlight%3D75%26borderColorHighlight%3D60a35c%26fcHighlight%3D363636%26iconColorHighlight%3D60a35c%26bgColorError%3Db81900%26bgTextureError%3D08_diagonals_thick.png%26bgImgOpacityError%3D18%26borderColorError%3Dcd0a0a%26fcError%3Dff%26iconColorError%3De7f312%26bgColorOverlay%3D66%26bgTextureOverlay%3D08_diagonals_thick.png%26bgImgOpacityOverlay%3D20%26opacityOverlay%3D50%26bgColorShadow%3D00%26bgTextureShadow%3D01_flat.png%26bgImgOpacityShadow%3D10%26opacityShadow%3D20%26thicknessShadow%3D5px%26offsetTopShadow%3D-5px%26offsetLeftShadow%3D-5px%26cornerRadiusShadow%3D5px&ui-version=1.7&download=true > > On Oct 30, 6:17 am, "Richard D. Worth" wrote: > > Sorry for the inconvenience. It's fixed. Please give it another shot, and > > let us know if you have any other problems. Thanks. > > > > - Richard > > > > > > > > On Thu, Oct 29, 2009 at 6:30 PM, RaspenJho > wrote: > > > Why can't I download the theme I created? I've tried several times, > > > and each time I open the ZIP file, it is missing the "css" folder > > > where my .css and .png files should be... > > > > > Here is the themeroller url: > > > > >http://jqueryui.com/themeroller/#ffDefault=Trebuchet+MS%2C+Tahoma%2C+. > .. > > > > > Any ideas? > > > > > -- > > > > > You received this message because you are subscribed to the Google > Groups > > > "jQuery UI" group. > > > To post to this group, send email to jquery...@googlegroups.com. > > > To unsubscribe from this group, send email to > > > jquery-ui+unsubscr...@googlegroups.com > > > > . > > > For more options, visit this group at > > >http://groups.google.com/group/jquery-ui?hl=en. > > -- > > You received this message because you are subscribed to the Google Groups > "jQuery UI" group. > To post to this group, send email to jquery...@googlegroups.com. > To unsubscribe from this group, send email to > jquery-ui+unsubscr...@googlegroups.com > . > For more options, visit this group at > http://groups.google.com/group/jquery-ui?hl=en. > > > -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
[jquery-ui] Re: Disable an "Ok" button in a dialog.
If your using themeroller try adding the class ui-state-disabled. I think that existed in 1.6 Hth, Dave On Oct 29, 7:02 pm, TimW66 wrote: > Hi all, > > I'm using jQuery UI v1.6rc2. I know this is an old version, but for > now, I am unable to upgrade. I have the need to disable a button on > the dialog box. I've tried just setting the disabled attribute via > "$button.attr('disabled','disabled')". However, on IE, that looks > bad. And on Firefox, the button can still be hovered, making it look > like it is enabled. Is there a way to do what I'm looking for? > > Thanks, > > Tim -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
[jquery-ui] Re: datepicker is not a function
Great! It works, Thank you for help. On 30 Ott, 13:58, Steven Black wrote: > The datePicker() function is attached to $("#rangeDatepicker"), the > outer-container, not the div containing the day numeral or whatever > is clicked in the pop-up calendar dialog. > > You could declare a var that remains in-scope and embodies the > container. For example > var $rangeDatePicker= $("#rangeDatepicker"); > $rangeDatePicker.datepicker() > > Then, in the onSelect callback, refer to $rangeDatePicker. > > This will work. As with most things, there may be other ways of doing > this. > > **--** Steve > > On Oct 29, 7:40 am, Gianluca wrote: > > > Hi all, > > > i'm using jQuery UI Datapicker, and i have a problem > > > this is mi code: > > > $(document).ready(function() > > { > > $("#rangeDatepicker").datepicker( > > { > > numberOfMonths: [3, 4], > > onSelect:function(date, inst){ > > alert($(inst).datepicker('getDate')); > > //alert($(this).datepicker > > ('getDate')); > > } > > } > > ); > > $("#rangeDatepicker").datepicker("setDate",new Date(2009, 1-1, 1)); > > > }); > > > When the page is ready the datepicker is displayed correctly, and date > > is setted at 2009-01-01: all works. > > > But cliccking on a day, i recive an error from firebug: "$ > > (inst).datepicker is not a function" > > (or "$(this).datepicker is not a function" if i use this). > > And i don't understand WHY?? > > > What i wanna do is to modify option of datapicker on the event > > onSelect. But i can't because it doesn't find the > > function .datapicker. > > > Somebody can help me, please ?? > > > Thanks -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
[jquery-ui] Re: ThemeRoller Bug?
Thanks for the update :) I am still having some issues... I cannot get the download page to show me the "Custom Theme" option for inclusion in the .zip file. I tried to manually build a url (that I got from the ThemeRoller Dev Tool) to ask for the download, and received a .zip file sans CSS (just like yesterday). This is a download link that does not work: http://jqueryui.com/download/?themeParams=%3FffDefault%3DTrebuchet+MS%2C+Tahoma%2C+Verdana%2C+Arial%2C+sans-serif%26fwDefault%3Dbold%26fsDefault%3D1.1em%26cornerRadius%3D4px%26bgColorHeader%3D60a35c%26bgTextureHeader%3D12_gloss_wave.png%26bgImgOpacityHeader%3D35%26borderColorHeader%3D60a35c%26fcHeader%3Dff%26iconColorHeader%3Dff%26bgColorContent%3Dee%26bgTextureContent%3D03_highlight_soft.png%26bgImgOpacityContent%3D100%26borderColorContent%3Ddd%26fcContent%3D33%26iconColorContent%3D22%26bgColorDefault%3Df6f6f6%26bgTextureDefault%3D02_glass.png%26bgImgOpacityDefault%3D100%26borderColorDefault%3Dcc%26fcDefault%3D60a35c%26iconColorDefault%3D60a35c%26bgColorHover%3Dabd372%26bgTextureHover%3D02_glass.png%26bgImgOpacityHover%3D100%26borderColorHover%3D60a35c%26fcHover%3D60a35c%26iconColorHover%3D60a35c%26bgColorActive%3Dff%26bgTextureActive%3D02_glass.png%26bgImgOpacityActive%3D65%26borderColorActive%3D60a35c%26fcActive%3D00%26iconColorActive%3D60a35c%26bgColorHighlight%3Dd8e267%26bgTextureHighlight%3D03_highlight_soft.png%26bgImgOpacityHighlight%3D75%26borderColorHighlight%3D60a35c%26fcHighlight%3D363636%26iconColorHighlight%3D60a35c%26bgColorError%3Db81900%26bgTextureError%3D08_diagonals_thick.png%26bgImgOpacityError%3D18%26borderColorError%3Dcd0a0a%26fcError%3Dff%26iconColorError%3De7f312%26bgColorOverlay%3D66%26bgTextureOverlay%3D08_diagonals_thick.png%26bgImgOpacityOverlay%3D20%26opacityOverlay%3D50%26bgColorShadow%3D00%26bgTextureShadow%3D01_flat.png%26bgImgOpacityShadow%3D10%26opacityShadow%3D20%26thicknessShadow%3D5px%26offsetTopShadow%3D-5px%26offsetLeftShadow%3D-5px%26cornerRadiusShadow%3D5px&ui-version=1.7&download=true On Oct 30, 6:17 am, "Richard D. Worth" wrote: > Sorry for the inconvenience. It's fixed. Please give it another shot, and > let us know if you have any other problems. Thanks. > > - Richard > > > > On Thu, Oct 29, 2009 at 6:30 PM, RaspenJho wrote: > > Why can't I download the theme I created? I've tried several times, > > and each time I open the ZIP file, it is missing the "css" folder > > where my .css and .png files should be... > > > Here is the themeroller url: > > >http://jqueryui.com/themeroller/#ffDefault=Trebuchet+MS%2C+Tahoma%2C+... > > > Any ideas? > > > -- > > > You received this message because you are subscribed to the Google Groups > > "jQuery UI" group. > > To post to this group, send email to jquery...@googlegroups.com. > > To unsubscribe from this group, send email to > > jquery-ui+unsubscr...@googlegroups.com > .com> > > . > > For more options, visit this group at > >http://groups.google.com/group/jquery-ui?hl=en. -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
Re: [jquery-ui] THEME GENERATOR DOWNLOAD DONT WORK IN WEB
I just applied a fix. Please give it another try. Thanks. - Richard On Fri, Oct 30, 2009 at 8:54 AM, Blacknet wrote: > who want to solve it im trying download my own them but a i cant. > > the link to custom theme is down: > > > > http://jqueryui.com/themeroller#ffDefault=Segoe+UI%2C+Arial%2C+sans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=33&bgTextureHeader=12_gloss_wave.png&bgImgOpacityHeader=25&borderColorHeader=33&fcHeader=ff&iconColorHeader=ff&bgColorContent=00&bgTextureContent=05_inset_soft.png&bgImgOpacityContent=25&borderColorContent=66&fcContent=ff&iconColorContent=cc&bgColorDefault=55&bgTextureDefault=02_glass.png&bgImgOpacityDefault=20&borderColorDefault=66&fcDefault=ee&iconColorDefault=cc&bgColorHover=d80773&bgTextureHover=02_glass.png&bgImgOpacityHover=40&borderColorHover=5e0332&fcHover=ff&iconColorHover=ff&bgColorActive=d80773&bgTextureActive=05_inset_soft.png&bgImgOpacityActive=30&borderColorActive=53042d&fcActive=ff&iconColorActive=22&bgColorHighlight=ee&bgTextureHighlight=03_highlight_soft.png&bgImgOpacityHighlight=80&borderColorHighlight=cc&fcHighlight=d80773&iconColorHighlight=d80773&bgColorError=d80773&bgTextureError=07_diagonals_medium.png&bgImgOpacityError=40&borderColorError=7b0944&fcError=ff&iconColorError=ff&bgColorOverlay=d80773&bgTextureOverlay=08_diagonals_thick.png&bgImgOpacityOverlay=40&opacityOverlay=80&bgColorShadow=cc&bgTextureShadow=01_flat.png&bgImgOpacityShadow=30&opacityShadow=60&thicknessShadow=7px&offsetTopShadow=-7px&offsetLeftShadow=-7px&cornerRadiusShadow=8px > > -- > > You received this message because you are subscribed to the Google Groups > "jQuery UI" group. > To post to this group, send email to jquery...@googlegroups.com. > To unsubscribe from this group, send email to > jquery-ui+unsubscr...@googlegroups.com > . > For more options, visit this group at > http://groups.google.com/group/jquery-ui?hl=en. > > > -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
Re: [jquery-ui] Re: Problem Downloading a Custom Theme (no css folder included)
Ok, fixed that. I was just able to download a custom theme. Please give it another try. - Richard On Fri, Oct 30, 2009 at 9:34 AM, Richard D. Worth wrote: > Thanks for the update. We'll take another look. > > - Richard > > > On Fri, Oct 30, 2009 at 8:55 AM, Blacknet wrote: > >> The download custom theme now dont work fine. Only download >> predesigned themes. :(. >> >> On 30 oct, 12:19, "Richard D. Worth" wrote: >> > Sorry for the inconvenience. It's fixed. Please give it another go, and >> let >> > us know if you have any other problems. Thanks. >> > >> > - Richard >> > >> > On Thu, Oct 29, 2009 at 8:56 AM, Bobby < >> > >> > robert.vaughanjo...@asapventures.co.uk> wrote: >> > > Hi >> > >> > > I want to create my own custom theme using theme roller, which i have >> > > no problems using, but when it comes to downloading it there is no css >> > > folder included. this is only the case with custom themes however, if >> > > i download any of the default themes then the css folder is included >> > > as normal. unfortunately there are no default themes that go well with >> > > the style of my site. >> > >> > > Has any body else had this issue or know why it's happening and been >> > > able to resolve the issue? >> > >> > > Thank you >> > > Bobby >> > >> > > -- >> > >> > > You received this message because you are subscribed to the Google >> Groups >> > > "jQuery UI" group. >> > > To post to this group, send email to jquery...@googlegroups.com. >> > > To unsubscribe from this group, send email to >> > > jquery-ui+unsubscr...@googlegroups.com >> >> > >> > > . >> > > For more options, visit this group at >> > >http://groups.google.com/group/jquery-ui?hl=en. >> > >> > >> >> -- >> >> You received this message because you are subscribed to the Google Groups >> "jQuery UI" group. >> To post to this group, send email to jquery...@googlegroups.com. >> To unsubscribe from this group, send email to >> jquery-ui+unsubscr...@googlegroups.com >> . >> For more options, visit this group at >> http://groups.google.com/group/jquery-ui?hl=en. >> >> >> > -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
Re: [jquery-ui] Re: Problem Downloading a Custom Theme (no css folder included)
Thanks for the update. We'll take another look. - Richard On Fri, Oct 30, 2009 at 8:55 AM, Blacknet wrote: > The download custom theme now dont work fine. Only download > predesigned themes. :(. > > On 30 oct, 12:19, "Richard D. Worth" wrote: > > Sorry for the inconvenience. It's fixed. Please give it another go, and > let > > us know if you have any other problems. Thanks. > > > > - Richard > > > > On Thu, Oct 29, 2009 at 8:56 AM, Bobby < > > > > robert.vaughanjo...@asapventures.co.uk> wrote: > > > Hi > > > > > I want to create my own custom theme using theme roller, which i have > > > no problems using, but when it comes to downloading it there is no css > > > folder included. this is only the case with custom themes however, if > > > i download any of the default themes then the css folder is included > > > as normal. unfortunately there are no default themes that go well with > > > the style of my site. > > > > > Has any body else had this issue or know why it's happening and been > > > able to resolve the issue? > > > > > Thank you > > > Bobby > > > > > -- > > > > > You received this message because you are subscribed to the Google > Groups > > > "jQuery UI" group. > > > To post to this group, send email to jquery...@googlegroups.com. > > > To unsubscribe from this group, send email to > > > jquery-ui+unsubscr...@googlegroups.com > > > > > > . > > > For more options, visit this group at > > >http://groups.google.com/group/jquery-ui?hl=en. > > > > > > -- > > You received this message because you are subscribed to the Google Groups > "jQuery UI" group. > To post to this group, send email to jquery...@googlegroups.com. > To unsubscribe from this group, send email to > jquery-ui+unsubscr...@googlegroups.com > . > For more options, visit this group at > http://groups.google.com/group/jquery-ui?hl=en. > > > -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
[jquery-ui] Jquery Confirm Box
Hello, I want to change JavaScript Confirm () with Jquery so that I can apply some style sheets there. It should behave same as JavaScript where I can get user response and execute code based on user response. Has anyone have any idea about this. Thanks VIJAY GARG This e-mail, including any attachment(s) hereto, is intended only for the individual or entity to whom it is addressed. It may contain proprietary, confidential or privileged information or attorney work product belonging to Fidelity Business Services India Pvt. Ltd. (FBS India) or its affiliates. If you are not the intended recipient of this e-mail, or if you have otherwise received this e-mail in error, please immediately notify the sender via return e-mail and permanently delete the original mail, any print outs and any copies, including any attachments. Any dissemination, distribution, alteration or copying of this e-mail is strictly prohibited. The originator of this e-mail does not guarantee the security of this message and will not be responsible for any damages arising from any dissemination, distribution, alteration or copying of this message and/or any attachments to this message by a third party or as a result of any virus being passed on. Any comments or statements made in this are not necessarily those of FBS India or any other Fidelity entity. All e-mails sent from or to FBS India may be subject to our monitoring and recording procedures. -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
[jquery-ui] Re: Problem Downloading a Custom Theme (no css folder included)
The download custom theme now dont work fine. Only download predesigned themes. :(. On 30 oct, 12:19, "Richard D. Worth" wrote: > Sorry for the inconvenience. It's fixed. Please give it another go, and let > us know if you have any other problems. Thanks. > > - Richard > > On Thu, Oct 29, 2009 at 8:56 AM, Bobby < > > robert.vaughanjo...@asapventures.co.uk> wrote: > > Hi > > > I want to create my own custom theme using theme roller, which i have > > no problems using, but when it comes to downloading it there is no css > > folder included. this is only the case with custom themes however, if > > i download any of the default themes then the css folder is included > > as normal. unfortunately there are no default themes that go well with > > the style of my site. > > > Has any body else had this issue or know why it's happening and been > > able to resolve the issue? > > > Thank you > > Bobby > > > -- > > > You received this message because you are subscribed to the Google Groups > > "jQuery UI" group. > > To post to this group, send email to jquery...@googlegroups.com. > > To unsubscribe from this group, send email to > > jquery-ui+unsubscr...@googlegroups.com > > . > > For more options, visit this group at > >http://groups.google.com/group/jquery-ui?hl=en. > > -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
[jquery-ui] THEME GENERATOR DOWNLOAD DONT WORK IN WEB
who want to solve it im trying download my own them but a i cant. the link to custom theme is down: http://jqueryui.com/themeroller#ffDefault=Segoe+UI%2C+Arial%2C+sans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=33&bgTextureHeader=12_gloss_wave.png&bgImgOpacityHeader=25&borderColorHeader=33&fcHeader=ff&iconColorHeader=ff&bgColorContent=00&bgTextureContent=05_inset_soft.png&bgImgOpacityContent=25&borderColorContent=66&fcContent=ff&iconColorContent=cc&bgColorDefault=55&bgTextureDefault=02_glass.png&bgImgOpacityDefault=20&borderColorDefault=66&fcDefault=ee&iconColorDefault=cc&bgColorHover=d80773&bgTextureHover=02_glass.png&bgImgOpacityHover=40&borderColorHover=5e0332&fcHover=ff&iconColorHover=ff&bgColorActive=d80773&bgTextureActive=05_inset_soft.png&bgImgOpacityActive=30&borderColorActive=53042d&fcActive=ff&iconColorActive=22&bgColorHighlight=ee&bgTextureHighlight=03_highlight_soft.png&bgImgOpacityHighlight=80&borderColorHighlight=cc&fcHighlight=d80773&iconColorHighlight=d80773&bgColorError=d80773&bgTextureError=07_diagonals_medium.png&bgImgOpacityError=40&borderColorError=7b0944&fcError=ff&iconColorError=ff&bgColorOverlay=d80773&bgTextureOverlay=08_diagonals_thick.png&bgImgOpacityOverlay=40&opacityOverlay=80&bgColorShadow=cc&bgTextureShadow=01_flat.png&bgImgOpacityShadow=30&opacityShadow=60&thicknessShadow=7px&offsetTopShadow=-7px&offsetLeftShadow=-7px&cornerRadiusShadow=8px -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
[jquery-ui] Re: datepicker is not a function
The datePicker() function is attached to $("#rangeDatepicker"), the outer-container, not the div containing the day numeral or whatever is clicked in the pop-up calendar dialog. You could declare a var that remains in-scope and embodies the container. For example var $rangeDatePicker= $("#rangeDatepicker"); $rangeDatePicker.datepicker() Then, in the onSelect callback, refer to $rangeDatePicker. This will work. As with most things, there may be other ways of doing this. **--** Steve On Oct 29, 7:40 am, Gianluca wrote: > Hi all, > > i'm using jQuery UI Datapicker, and i have a problem > > this is mi code: > > $(document).ready(function() > { > $("#rangeDatepicker").datepicker( > { > numberOfMonths: [3, 4], > onSelect:function(date, inst){ > alert($(inst).datepicker('getDate')); > //alert($(this).datepicker > ('getDate')); > } > } > ); > $("#rangeDatepicker").datepicker("setDate",new Date(2009, 1-1, 1)); > > }); > > When the page is ready the datepicker is displayed correctly, and date > is setted at 2009-01-01: all works. > > But cliccking on a day, i recive an error from firebug: "$ > (inst).datepicker is not a function" > (or "$(this).datepicker is not a function" if i use this). > And i don't understand WHY?? > > What i wanna do is to modify option of datapicker on the event > onSelect. But i can't because it doesn't find the > function .datapicker. > > Somebody can help me, please ?? > > Thanks -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
[jquery-ui] Re: Only apply themeroller to some elements
Themeroller uses CSS classes to style individual elements. Depending on the plugin, the CSS classes may be used to manage behavior too, so no guarantees, OK? Consider removing classes after the UI-elements are rendered. Here the vanilla-selector isolates the items you want plain-jane, unthemed. Removing the hover-candy is probably pretty safe. $(vanilla-selector).removeClass("ui-state-hover"); This will surely NOT work since these tend to get injected at runtime in response to events. $(vanilla-selector).removeClass("ui-state-default"); $(vanilla-selector).removeClass("ui-state-active"); Therefore consider doing something like this. $(vanilla-selector).addClass("plainJain"); where plainJain {color: ... !important; background-color: ... !important /* etc */ Not tested . I hope this helps. **--** Steve On Oct 30, 5:38 am, Gordon wrote: > I would like to use themeroller for designing stuff that's supposed to > be part of the user interface of a web app, but there are some items I > don't want styled by themeroller and use their own styles instead. > For example, I don't want tabs or accordions to get themeroller > styled. > > At the moment, I think all I really need styled with themeroller is > dialogs. I'll probably want other controls styled as well, such as > sliders. If this is possible, how do I do it -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
[jquery-ui] Re: JQuery Accordian Problem
I think this *should* be made much easier and more explicit. Until that happens, this works for me: var nIndex=$("#accordion h3").index($("#accordion h3.ui-state- active")); On Oct 29, 9:38 pm, Eloid wrote: > hi all. Sorry, my english is not good as such. > I'm using JQuery 1.3.2 and JQuery ui 1.7.2 > I want to get current status of the accordian tabs. > > using this code > var acc = $('#accordion').accordion('option', 'active'); > but only return null. > > initializing this code > $("#accordion").accordion({ active: 1 }); > after other tab clicked. but only return value "1" > > I know want to currently changing tab status. > for example. If I clicked "tab1" result is "you are clicked tab1" > > How do I get currently activate tab status? -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
[jquery-ui] animate transparency (opacity) in IE8
Hi All I want to change the opacity of a 'div' from its initial opacity/state to an other using jQuery's animate function. Here is my test html file $(document).ready(function(){ $("#xyz").animate({ opacity: '1'}, 5000) ; }); .lessvisible { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; filter: alpha(opacity=50); -khtml-opacity: 0.5; -moz-opacity: 0.5; opacity: 0.5; } Lorem ipsum dolor sit amet, consectetur adipisicing elit, .. aaa In my IE8 browser I don't see any animation but only the end result, as if the duration is set to 0 seconds. (I've tested it in IE6 and IE7 which didn't show me any transparency/ animation at all) Any suggestions ? thnx LuCa -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
[jquery-ui] dynamically adding a datepicker to an element BEFORE it is attached to the DOM
Hi there, I am trying to add a datepicker to an element that is not yet attached to the DOM. is this possible? The #datepicker is a text box that is not yet added to the DOM... $("#datepicker").datepicker({ width: 80, buttonImage: '/images/Web/calendar.gif' }); How can I accomplish this? -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
Re: [jquery-ui] Problem Downloading a Custom Theme (no css folder included)
Sorry for the inconvenience. It's fixed. Please give it another go, and let us know if you have any other problems. Thanks. - Richard On Thu, Oct 29, 2009 at 8:56 AM, Bobby < robert.vaughanjo...@asapventures.co.uk> wrote: > Hi > > I want to create my own custom theme using theme roller, which i have > no problems using, but when it comes to downloading it there is no css > folder included. this is only the case with custom themes however, if > i download any of the default themes then the css folder is included > as normal. unfortunately there are no default themes that go well with > the style of my site. > > Has any body else had this issue or know why it's happening and been > able to resolve the issue? > > Thank you > Bobby > > -- > > You received this message because you are subscribed to the Google Groups > "jQuery UI" group. > To post to this group, send email to jquery...@googlegroups.com. > To unsubscribe from this group, send email to > jquery-ui+unsubscr...@googlegroups.com > . > For more options, visit this group at > http://groups.google.com/group/jquery-ui?hl=en. > > > -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
Re: [jquery-ui] Re: Theme roller download
Sorry for the inconvenience. It's fixed, and we put a mechanism in place to prevent the issue in the future. Thanks. - Richard On Thu, Oct 29, 2009 at 2:19 PM, freetetras wrote: > Same issue here. A fix is in order asap! > > -- > > You received this message because you are subscribed to the Google Groups > "jQuery UI" group. > To post to this group, send email to jquery...@googlegroups.com. > To unsubscribe from this group, send email to > jquery-ui+unsubscr...@googlegroups.com > . > For more options, visit this group at > http://groups.google.com/group/jquery-ui?hl=en. > > > -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
Re: [jquery-ui] Custom UI download trouble
Sorry for the inconvenience. It's fixed. Thanks. - Richard On Thu, Oct 29, 2009 at 2:56 PM, JasonBrodie wrote: > Hello, when trying to download a new Custom UI design, I don't get > working css. Usually I see a custom css file like: > jquery-ui-1.7.2.custom.css > > Whereas now I get a ui.base.css file > > None of the images match my selections using Themeroller, and using > the included index.html file, the css is not correct (it references > jquery-ui-1.7.2.custom.css even though the zip contains none of this) > > I'm downloading using FF for windows Vista. And have tried it on > IE7/8, FF mac, Safari Mac/PC. > > I'd really appreciate any feedback/help you can offer. > > Love what you guys do, MAD props and I'll always be a fan of jQuery! > > -- > > You received this message because you are subscribed to the Google Groups > "jQuery UI" group. > To post to this group, send email to jquery...@googlegroups.com. > To unsubscribe from this group, send email to > jquery-ui+unsubscr...@googlegroups.com > . > For more options, visit this group at > http://groups.google.com/group/jquery-ui?hl=en. > > > -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
Re: [jquery-ui] ThemeRoller Bug?
Sorry for the inconvenience. It's fixed. Please give it another shot, and let us know if you have any other problems. Thanks. - Richard On Thu, Oct 29, 2009 at 6:30 PM, RaspenJho wrote: > Why can't I download the theme I created? I've tried several times, > and each time I open the ZIP file, it is missing the "css" folder > where my .css and .png files should be... > > Here is the themeroller url: > > > http://jqueryui.com/themeroller/#ffDefault=Trebuchet+MS%2C+Tahoma%2C+Verdana%2C+Arial%2C+sans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=60a35c&bgTextureHeader=12_gloss_wave.png&bgImgOpacityHeader=35&borderColorHeader=60a35c&fcHeader=ff&iconColorHeader=ff&bgColorContent=ee&bgTextureContent=03_highlight_soft.png&bgImgOpacityContent=100&borderColorContent=dd&fcContent=33&iconColorContent=22&bgColorDefault=f6f6f6&bgTextureDefault=02_glass.png&bgImgOpacityDefault=100&borderColorDefault=cc&fcDefault=60a35c&iconColorDefault=60a35c&bgColorHover=abd372&bgTextureHover=02_glass.png&bgImgOpacityHover=100&borderColorHover=60a35c&fcHover=60a35c&iconColorHover=60a35c&bgColorActive=ff&bgTextureActive=02_glass.png&bgImgOpacityActive=65&borderColorActive=60a35c&fcActive=00&iconColorActive=60a35c&bgColorHighlight=d8e267&bgTextureHighlight=03_highlight_soft.png&bgImgOpacityHighlight=75&borderColorHighlight=60a35c&fcHighlight=363636&iconColorHighlight=60a35c&bgColorError=b81900&bgTextureError=08_diagonals_thick.png&bgImgOpacityError=18&borderColorError=cd0a0a&fcError=ff&iconColorError=e7f312&bgColorOverlay=66&bgTextureOverlay=08_diagonals_thick.png&bgImgOpacityOverlay=20&opacityOverlay=50&bgColorShadow=00&bgTextureShadow=01_flat.png&bgImgOpacityShadow=10&opacityShadow=20&thicknessShadow=5px&offsetTopShadow=-5px&offsetLeftShadow=-5px&cornerRadiusShadow=5px > > Any ideas? > > -- > > You received this message because you are subscribed to the Google Groups > "jQuery UI" group. > To post to this group, send email to jquery...@googlegroups.com. > To unsubscribe from this group, send email to > jquery-ui+unsubscr...@googlegroups.com > . > For more options, visit this group at > http://groups.google.com/group/jquery-ui?hl=en. > > > -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
Re: [jquery-ui] Re: Can't download theme roller css
Sorry for the inconvenience. It's fixed, and we put a mechanism in place to prevent the issue in the future. Thanks. - Richard On Thu, Oct 29, 2009 at 11:15 PM, BigAB wrote: > Me too. > > Was there an update recently? > > On Oct 28, 8:05 am, Aikeru wrote: > > I've tried with IE 8 and the latest Chrome and can't get any custom > > themes to download. I understand many others have the same issue! > > > > Please fix this bug asap!! :( > > -- > > You received this message because you are subscribed to the Google Groups > "jQuery UI" group. > To post to this group, send email to jquery...@googlegroups.com. > To unsubscribe from this group, send email to > jquery-ui+unsubscr...@googlegroups.com > . > For more options, visit this group at > http://groups.google.com/group/jquery-ui?hl=en. > > > -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
[jquery-ui] Only apply themeroller to some elements
I would like to use themeroller for designing stuff that's supposed to be part of the user interface of a web app, but there are some items I don't want styled by themeroller and use their own styles instead. For example, I don't want tabs or accordions to get themeroller styled. At the moment, I think all I really need styled with themeroller is dialogs. I'll probably want other controls styled as well, such as sliders. If this is possible, how do I do it -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.