[Proto-Scripty] appear is flickering

2008-09-08 Thread el_bob
div id=goLeft onmouseover=$('leftArr').appear(); onmouseout=$ ('leftArr').fade(); onclick=goLast(); div id=leftArr style=display:none; float:left; margin: 180px 0; img src=assets/images/FP_images/arrowleft.gif / /div /div i tried it like this, i tried it just using the id=leftArr on the image

[Proto-Scripty] Re: About a nice Script.aculo.us fix for IE

2008-09-08 Thread jdalton
Wow nice find :) !! You should report this bug via: http://prototype.lighthouseapp.com/projects/8887-script-aculo-us/tickets/new - JDD --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Prototype script.aculo.us

[Proto-Scripty] Re: Element.adjacent(selector) doesn't return expected elements

2008-09-08 Thread [EMAIL PROTECTED]
I place a comment on the bug trtacker to point Kangax solution. It is indeed simple and effective. http://prototype.lighthouseapp.com/projects/8886-prototype/tickets/244-element-adjacent-can-select-siblings-childnodes-and-shouldn-t#ticket-244-4 On 8 sep, 14:45, jdalton [EMAIL PROTECTED] wrote:

[Proto-Scripty] Re: appear is flickering

2008-09-08 Thread el_bob
thanks, i fixed it - it turned out to be a z-index issue. the image, even though it is in the div, is not being read as part of the div - so when it's completely opaque, the image overrides the div's onmouseover call. as soon as opacity goes down, it calls again. i fixed it by creating another

[Proto-Scripty] Re: Element.adjacent(selector) doesn't return expected elements

2008-09-08 Thread kangax
On Sep 8, 3:13 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I place a comment on the bug trtacker to point Kangax solution. It is indeed simple and effective. http://prototype.lighthouseapp.com/projects/8886-prototype/tickets/24... While it's simple and effective, the problem is inability

[Proto-Scripty] Re: Bug in scriptaculous-js-1.6.4

2008-09-08 Thread Jack D
Hi, I even tried replacing the spaces with nbsp; but it didn't work. It still returns me by stripping all spaces keeping it only 1 space. Now I can confirm that this is a bug. Gurus, can anyone help how to fix this bug? Thanks in Advance!! On Mon, Sep 8, 2008 at 11:49 AM, Jack D

[Proto-Scripty] Re: Event.observe best practice

2008-09-08 Thread BrentNicholas
Ok, back at work... long weekend. So thanks to Matt and elduderino for their replies. I ended up using Matt's sugestion simply becuase it was easy to understand. I was able to use a few parts of elduderino's to get the id. I'll be digging into elduderino's solution more later to gain a better

[Proto-Scripty] Re: Form.Element#setValue

2008-09-08 Thread Justin Perkins
On Mon, Sep 8, 2008 at 3:35 PM, Alexey Bass [EMAIL PROTECTED] wrote: What I'm asking is that why this is not documented on Prototype site. Maybe it should be mentioned, but really Element#update is just using innerHTML to update the contents of a node, and since innerHTML cannot be used to

[Proto-Scripty] Re: Assigning OnClick Events To Options On A Select Menu?

2008-09-08 Thread Justin Perkins
Why don't you just observe the 'change' event on the select? Works in all browsers, and is the standard method for observing select boxes. One tip, where you do: var someNodeList = $('game_types').getElementsByTagName('option'); var nodes = $A(someNodeList);

[Proto-Scripty] Re: Bug in scriptaculous-js-1.6.4

2008-09-08 Thread Jack D
Hi Justin, Thanks for your reply! When I type the name in the text box, the values get dispalyed from database. However, it doesn't show the space even there while I'm looking at the data scrolling down the results!! I know it is happening due to the html behaviour. In that case,

[Proto-Scripty] Re: Bug in scriptaculous-js-1.6.4

2008-09-08 Thread Justin Perkins
On Mon, Sep 8, 2008 at 6:06 PM, Jack D [EMAIL PROTECTED] wrote: This problem exist only with IE. It always shows 1 space. I didn't realize it was just an IE thing. I'm sorry I can't help right now because I don't have IE. I might be able to look into it a bit more tomorrow. -justin