[jQuery] jHtmlArea problems with - script generated width

2010-01-15 Thread roxstyle
in this sample page, if you click on the first "Short Bio" - right sided "edit" link, there is where the jHtmlArea is placed http://www.roxstyle.com/projects/blssi/cms/de-tool-v3/p-bio.html# the problem is that in firebug i can see the first style is element.style { width:0; } i have tried putt

[jQuery] Dialog buttons for closing

2010-01-11 Thread roxstyle
i am having problems with the buttons used to close the dialog. sample with dialog: http://www.roxstyle.com/projects/blssi/cms/de-tool-v3/proj-awards.html on this wireframe, if you click "+Award" a form opens. In the form, if you click "Select Project" the jquery ui-dialog opens. there are two

[jQuery] ie7 select-dropdown and max-width

2009-07-06 Thread roxstyle
i am trying to get ie7 to behave like other browsers in a form with a very wide "select" like a country listing. i want there to be a width on the "select", but let the "options" width overflow as necessary. the only javascript that halfway allows this, something like i am using...

[jQuery] show/hide positioned to its trigger

2009-06-24 Thread roxstyle
i am trying to learn how to position a show/hide module to the "a" that triggers it, instead of a literal positioning through css this is a sample of the module i am trying to position. http://www.roxstyle.com/projects/blssi/cms/de-tool/proj-distribution.html instead of setting the css margins a

[jQuery] Re: injecting content

2009-01-28 Thread roxstyle
nject > > arbitrary text and elements, like $('a').append('(This is a link > b>)') > > Tables are a bit of a special case. In my experience, it does not work > > consistently, so it is better if you use the browser DOM APIs to do > > things like r

[jQuery] injecting content

2009-01-28 Thread roxstyle
are there any samples of injecting content? i am familiar with hide/show of content inline, but don't grasp "injecting" content. if i have a table - can i inject a "div" between 2 rows? or do i need to "inject" a new row?

[jQuery] Re: using jLint

2009-01-13 Thread roxstyle
i forgot to mention that i did a search in this group and all references were from 2006. On Jan 13, 6:37 pm, roxstyle wrote: > Does anyone use jLint? > I am leaning to use and debug jquery. Using firebug , Yslow lists > jLint. I dont get any errors indicated in FF, but in jLint i keep

[jQuery] using jLint

2009-01-13 Thread roxstyle
Does anyone use jLint? I am leaning to use and debug jquery. Using firebug , Yslow lists jLint. I dont get any errors indicated in FF, but in jLint i keep getting this reference to the jquery library --- JSLint Report for: http://www.roxstyle.com/projects/blssi/cms/mapping-tool-v1/map

[jQuery] second instance of DOMwindow picking up properties of first instance

2009-01-12 Thread roxstyle
I have 3 instances of DOMwindow, and after the first DOMwindow has opened and closed on click event- the next DOMwindow takes the layout properties of the first. How do i kill the proerties of the first instance? $(".mapDOMWindow").openDOMWindow({ height:220, width:600, eventType:"click", overla

[jQuery] Re: non standard characters in class names, not working in funtion

2009-01-10 Thread roxstyle
IE doesn't like the comma here >    }; > > If you still get the error please provide some code or a test page. > > On Jan 10, 2:52 am, roxstyle wrote: > > > I am having no luck with non-standard characters in class names, used > > in a function > > > I a

[jQuery] non standard characters in class names, not working in funtion

2009-01-09 Thread roxstyle
I am having no luck with non-standard characters in class names, used in a function I am using this is a wonderful technique via Karl, that allows children to inherit their parent td width. $(document).ready(function() { var cellWidth = { searchUser: [80, 110, 145, 70, 100, 100, 236],

[jQuery] Re: having a child div inherit a parent width

2009-01-09 Thread roxstyle
>    var cellWidth = { >       searchUser: [80, 110, 145, 70, 100, 100, 236], >       searchAcct: [80, 130, 80, 80, 80, 190, 201], >       searchFoo: [80, 130, 190, 201, 80, 80, 80] >    }; > > --Karl > > > Karl Swedbergwww.englishrules.comwww.learningjque

[jQuery] Re: having a child div inherit a parent width

2009-01-08 Thread roxstyle
r (var i=0, cl= cellWidth.length; i wrote: > thank you, so much. I need to think less in css and more in jquery. > And also thank you for your great site, i just found it, and ordered > your book. > > On Jan 8, 7:38 am, Karl Swedberg wrote: > > > This might be a little cleaner: > > >

[jQuery] Re: having a child div inherit a parent width

2009-01-08 Thread roxstyle
 }); > > (untested) > > --Karl > > > Karl Swedbergwww.englishrules.comwww.learningjquery.com > > On Jan 7, 2009, at 5:26 PM, roxstyle wrote: > > > > > $(document).ready(function(){ > >    $(".searchUser tbody td:first-child").css({"width":"80px"

[jQuery] Re: having a child div inherit a parent width

2009-01-07 Thread roxstyle
dWidth}); }); }); ok, i have this working for my sample. Along with some added insight. (1) the children need to inherit the "td" given width- not the width that the browser sees. (2)The only way i could get this to inherit, is to have the width declared inline (now generated fr

[jQuery] Re: having a child div inherit a parent width

2009-01-07 Thread roxstyle
td").each(function(i) { >                 var $tdWidth = $(this).width(); >                 $(this).children().width($tdWidth); >         }); > > }); > > This code goes through the .tbl table, and for each td it finds its > width and then applies that width to its children. >

[jQuery] Re: having a child div inherit a parent width

2009-01-07 Thread roxstyle
ent "cuts off" at this width. i hope this makes sense, i am more css/html experienced than js experiened. i would appreciate any help, if i am not explaining the intended behavior On Jan 7, 1:10 am, peet wrote: > isn't that not the same as setting "width:100%" to all ch

[jQuery] having a child div inherit a parent width

2009-01-06 Thread roxstyle
I have a table where each td has its width declared in css rules. Inside some "td" i have either "p" or "div" I want to have these elements inherit the width of the parent td. I have a sample here - http://www.roxstyle.com/projects/blssi/cms/user-tools-v1/user-search.html if you click on the "user

[jQuery] tab through the DOM on page

2009-01-06 Thread roxstyle
Is there a method or plugin that allows a user to "tab" through DOM elements on page? This would be used where the form elements are dynamically generated.

[jQuery] method to tab when using dynamic form generation with jeditable

2008-12-31 Thread roxstyle
I have a table using jeditable within specific TDs. since the form is generated with js, there is no longer any tabbing between form elements. What method can i use to allow tabbing between TDs. i have a simple sample here http://www.roxstyle.com/projects/blssi/cms/de-tool/person.html#

[jQuery] coda slider on .mac with FF2

2008-08-25 Thread roxstyle
I am trying to use the coda slider with jquery here: http://www.roxstyle.com/projects/blssi/blssi-portal/v1-e/product-tss.html And i'll preface this by saying that i am much more of a designer than scripter(much more). the problem is that using mac with Firefox 2.0.0.14, on the "products" area 1.

[jQuery] global toggle function

2008-05-29 Thread roxstyle
here is a prototype i am putting together. http://www.roxstyle.com/projects/blssi/cms/user-tools/user-contract-details.html on this page there is one link system using toggle, for the link"Add More Existing Accounts" and this works, but on pages where the system is used more than once, such as: