[jquery-ui] Purpose behind _setData(), _getData() functions

2009-10-21 Thread jayarjo
I'm trying to get my mind around getter/setter functionality. I probably do not understand their purpose properly. What is the exact difference between setting a property as: this.someProperty = someValue; and setting it as: this._setData ('someProperty', someValue); What's the point in other

[jquery-ui] Accordion re-creation

2009-10-21 Thread aze
Hi, I'm using accordion with chain,js plugin . I populated some data into accordion via ajax call . The problem is when each time the script populate some data, the accordion seems not working, so I put the accordion in the ajax success as sample below and it works $.ajax ({ type: GET,

[jquery-ui] Accordion re-creation

2009-10-21 Thread aze
Hi, I'm using accordion with chain,js plugin . I populated some data into accordion via ajax call . The problem is when each time the script populate some data, the accordion seems not working, so I put the accordion in the ajax success as sample below and it works $.ajax ({ type: GET,

[jquery-ui] slider not laoding in ajax section

2009-10-21 Thread Nitin Gautam
hi, I have a page fragemnt in which Sliders are located. This fragment get updated through Ajax call. Problem that i am facing is when section get updated sliders are not visble. Please help...do i need to run some script to make sliders again visible/load.

[jquery-ui] Re: Tutorial to igoogle setup with portlets

2009-10-21 Thread Anders Tillebeck
Reply to myself... since no one else seem to know anything about this topic ;-) To get a bit further, try: http://net.tutsplus.com/tutorials/javascript-ajax/inettuts/ BR. me On 19 Okt., 15:37, Anders Tillebeck a...@opengate.dk wrote: Hello I have with succes used this demo to make my

[jquery-ui] Re: jQuery Modal positioning error in Google Chrome

2009-10-21 Thread Scott González
Are you experiencing the problem in Safari as well? Do you have any odd styling on the html or body tags? On Oct 20, 8:34 am, Ultra-L0rd kooyman.co...@gmail.com wrote: I'm using a modal to display a contact form on top of a flash video. The problem is that they modal doesn't seem to overlay

[jquery-ui] Re: Purpose behind _setData(), _getData() functions

2009-10-21 Thread Scott González
_setData and _getData are only for getting/setting options. The option method delegates out to them. On Oct 21, 5:26 am, jayarjo jaya...@gmail.com wrote: I'm trying to get my mind around getter/setter functionality. I probably do not understand their purpose properly. What is the exact

[jquery-ui] Re: Tutorial to igoogle setup with portlets

2009-10-21 Thread fichtre.diantre
wonderfull, thanks for the link --~--~-~--~~~---~--~~ 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 group, send email to

[jquery-ui] Re: How to use tabs in Dialog ?

2009-10-21 Thread mk.keck
of course tabs in dialogs are working: you should change your code a little: !-- html part -- div id=dialog_with_tabs title=Create new user div id=tabs_in_dialog ul lia href=#tabs-1Tab 1/a/li lia href=#tabs-2Tab 2/a/li lia href=#tabs-3Tab 3/a/li

[jquery-ui] Modal Dialog Issue with a lot of table rows

2009-10-21 Thread Shima20
Hello, I have a table and within each row there is an edit link. When I click the edit link, the modal dialog is supposed to display. It seems like I am having an issue if the table has more than 150 rows, the modal dialog box displays only about half of a page with no transparency and in the

[jquery-ui] DatePicker minDate and maxDate

2009-10-21 Thread Chuk
Of the three ways to specify a minimum and maximum date, I have a question about the second (actual dates). new Date(2009, 1 - 1, 26) I get that 2009 is the year and 26 is the day, but what is the 1 - 1? Is that supposed to be the month? --~--~-~--~~~---~--~~

[jquery-ui] datepicker and date formatting

2009-10-21 Thread alfrod...@gmail.com
I am trying to get the currently selected date in -MM-DD format and am having problems. If I get the date via the onSelect function I passed as an option when initializing the object, the date is returned correctly. Here's how I create it: $(function() {

[jquery-ui] Re: Purpose behind _setData(), _getData() functions

2009-10-21 Thread Richard D. Worth
On Wed, Oct 21, 2009 at 5:26 AM, jayarjo jaya...@gmail.com wrote: I'm trying to get my mind around getter/setter functionality. I probably do not understand their purpose properly. What is the exact difference between setting a property as: this.someProperty = someValue; and setting it as:

[jquery-ui] Re: DatePicker minDate and maxDate

2009-10-21 Thread Christoph Boget
Of the three ways to specify a minimum and maximum date, I have a question about the second (actual dates). new Date(2009, 1 - 1, 26) I get that 2009 is the year and 26 is the day, but what is the 1 - 1? Is that supposed to be the month? Yes. Months are 0 based. January = 0, October =

[jquery-ui] Re: slider not laoding in ajax section

2009-10-21 Thread Nitin Gautam
Experts Please help me On Oct 21, 4:28 pm, Nitin Gautam gautam.ni...@gmail.com wrote: hi, I have a page fragemnt in which Sliders are located. This fragment get updated through Ajax call. Problem that i am facing is when section get updated sliders are not visble. Please help...do i need

[jquery-ui] Re: Modal Dialog Issue with a lot of table rows

2009-10-21 Thread Fontzter
Not without a code sample...but I would suspect that something in your code is terminating a string. Is there an apostrophe in your data that is closing a string prematurely? Also, I couldn't tell from your post if you are creating all of these dialogs. I would either create and destroy them

[jquery-ui] Re: datepicker and date formatting

2009-10-21 Thread Fontzter
The getDate returns an actual date object that you will need to format. There is a utility function as part of the datepicker that will format an actual date object into a string based on a format string that you provide. http://docs.jquery.com/UI/Datepicker/formatDate So, this should get you

[jquery-ui] Re: datepicker onselect

2009-10-21 Thread bronson
Hi Dave, Thks u for your answer but unfortunetly it doesn't work. Regards On 20 oct, 23:10, Fontzter dmfo...@gmail.com wrote: Just put it anywhere you want -- an existing css file that you load, a new css file, an inline style tag. For example, add this to the head section of your document

[jquery-ui] Re: datepicker onselect

2009-10-21 Thread Fontzter
Try this: style type=text/css .ui-datepicker table tbody tr td.ui-datepicker-current-day { border: 1px solid red; } /style On Oct 21, 5:25 pm, bronson jean.roub...@gmail.com wrote: Hi Dave, Thks u for your answer but unfortunetly it doesn't work. Regards On 20 oct, 23:10, Fontzter

[jquery-ui] Re: datepicker onselect

2009-10-21 Thread bronson
Oups sorry it does perfectly work, sorry, sorry. Now do u know a way to thickborder the all td for the current week ? On 21 oct, 23:25, bronson jean.roub...@gmail.com wrote: Hi Dave, Thks u for your answer but unfortunetly it doesn't work. Regards On 20 oct, 23:10, Fontzter

[jquery-ui] Theme roller with a local html file

2009-10-21 Thread snowmaninthesun
Hey, i'm using the themeroller firefox bookmarklet and i can't use it with a webpage that i'm making that is still on my local computer. Does anyone know how to get around this? Error: Access to 'file:///Users/Desktop%20main/public/ index.html#ffDefault=Segoe+UI%2C+Arial%2C+sans-

[jquery-ui] Re: UI tree

2009-10-21 Thread Titkov Anton
UI Tree widget http://elsoft.tomsk.ru/index.php?option=com_contentview=articleid=17Itemid=21 On Oct 20, 8:59 pm, Mean Mike mcgra...@gmail.com wrote: Hello all, I found an example of ui tree herehttp://sandbox.tinctuur.be/tree/it works great with the version of jquery and jquery ui supplied

[jquery-ui] Re: tree

2009-10-21 Thread Titkov Anton
UI Tree widget http://elsoft.tomsk.ru/index.php?option=com_contentview=articleid=17Itemid=21 On Oct 21, 1:19 am, Mean Mike mcgra...@gmail.com wrote: I've seen different tree plugins but I have been only able to find one that i like it seem to be an old instance of ui-tree can someone direct

[jquery-ui] clonefield plugin

2009-10-21 Thread Steve Wing
First, I'm not sure I'm sending this request to the right place, if not could you direct me to the proper site. I have been trying for several days to pass a text form field (that I need to duplicate numerous times) to the clonefield plugin but have been unsuccessful. I've been able to get a

[jquery-ui] How do you determine the initial width of a draggable().resizable() div

2009-10-21 Thread bluetrain
How do you determine the initial width of a draggable().resizable() div, after just instantiating it, without doing anything else to it? The div contains text, and it is obvious that jQuery must know its own width, or else (presumably) the resizable borders would not be perfectly flush with the

[jquery-ui] Semicolon in ID attribute

2009-10-21 Thread Phani
Hi, I have an text field whose ID is something like 'j_id1:username'. Now if I try to retrieve the input field using jQuery('#j_id1:username'), it does not work. It is only reading the id until the semicolon and thus looking for an element with id 'j_id1'. I can not avoid having semi colons as

[jquery-ui] Re: Keeping dialog open on validation failure

2009-10-21 Thread John.Morgan
I am running into this same issue. Basically I have a page that does some data manipulation that I want the user to confirm on close. This page is hosted in a iframe that is displayed in a jquery dialog. When on beforeclose is called, I verify the result and if the user has not acknowledged it