[Proto-Scripty] Re: Prototype Cross Site Ajax Request

2008-12-17 Thread Jeztah
Sorry to repost but this did not appear on the group email out On Dec 16, 2:58 pm, Jeztah webmas...@thecarmarketplace.com wrote: Does anyone know if this is supported yet in prototypejs ... i have found a plugin for it but it seems not to work as it is intended for proto 1.5 and i am on the

[Proto-Scripty] div.select('select[required=true]') doesntwork

2008-12-17 Thread buda
I set required=true for some select on a form when I try to collect them for analyzing I got nothing if I change query to div.select('select[required]') I got 2 elements In debugger I can see that they have required property set to true Why I can't obtain full list of select with this query

[Proto-Scripty] Re: div.select('select[required=true]') doesntwork

2008-12-17 Thread Hector Virgen
I suggest using a class name of required instead of creating a new attribute. Then it becomes very simple to select() required elements (no to mention styling them with CSS). div.select('select.required'); -Hector On Wed, Dec 17, 2008 at 9:35 AM, buda www...@pochta.ru wrote: sorry - I do

[Proto-Scripty] Re: div.select('select[required=true]') doesntwork

2008-12-17 Thread Walter Lee Davis
On Dec 17, 2008, at 12:33 PM, buda wrote: I can't to verify HTML because it dynamic and I dont use quirk mode knowingly - because so called strict or other modes dont let me to make my design, so do Microsoft in its CRM web app You can, actually. View it in a browser, view source, copy, and

[Proto-Scripty] Re: div.select('select[required=true]') doesntwork

2008-12-17 Thread buda
We have to use IE because of its tight integration with all of Microsoft products - I do develop office products On 17 дек, 19:51, Walter Lee Davis wa...@wdstudio.com wrote: On Dec 17, 2008, at 12:33 PM, buda wrote: I can't to verify HTML because it dynamic and I dont use quirk mode

[Proto-Scripty] Re: div.select('select[required=true]') doesntwork

2008-12-17 Thread Walter Lee Davis
On Dec 17, 2008, at 1:13 PM, buda wrote: We have to use IE because of its tight integration with all of Microsoft products - I do develop office products That's fine as long as you can control the delivery of that product absolutely. It may end up badly if you have any other more public

[Proto-Scripty] Extending Event has a Bug ?

2008-12-17 Thread fero
Hello, I'm pretty sure Prototype has a bug in adding methods to an Event. My code is: var MoreEventMethods = { absoluteOffsets : function (event) { var offset = this.pointer(); var scroll = document.viewport.getScrollOffsets(); return { left : offset.x +

[Proto-Scripty] Re: div.select('select[required=true]') doesntwork

2008-12-17 Thread buda
It would be great if strict and others specificacions are so perfect to render such laouts with HTMLcss like IE do in quirk mode - I will the first who throw away IE )) On 17 дек, 20:20, Walter Lee Davis wa...@wdstudio.com wrote: On Dec 17, 2008, at 1:13 PM, buda wrote: We have to use IE

[Proto-Scripty] Re: absolutely positioned content on top of scrolled content

2008-12-17 Thread mr_justin
Well, after a bit more banging my head against the wall, I figured this one out. I just needed to use the viewportOffset of the activator in conjunction with the cumulativeScrollOffset of the body element to calculate the correct absolute position to draw my menu. Easy peasy. I updated my

[Proto-Scripty] Re: absolutely positioned content on top of scrolled content

2008-12-17 Thread carabs
Thats great that you were able to figure it out. Just in case you care, when I opened this in IE7, clicked a link, and received a JS error.. Line: 18 Char: 11 Error: Object doesn't support this property or method --~--~-~--~~~---~--~~ You received this message

[Proto-Scripty] Re: div.select('select[required=true]') doesntwork

2008-12-17 Thread Walter Lee Davis
Don't you think that's the tail wagging the dog? The standards are there so that ALL the browser manufacturers can follow them, not the other way around. We already suffered through what happens when each browser manufacturer goes his or her own way -- I actually do remember making

[Proto-Scripty] Re: div.select('select[required=true]') doesntwork

2008-12-17 Thread buda
but if they dont allow me to do what I need - why they are? I have spent alot of time trying to develop onviewport plastic layout ( look at CRM web pages ) it apperares that its impossible!!! On 17 дек, 21:07, Walter Lee Davis wa...@wdstudio.com wrote: Don't you think that's the tail wagging

[Proto-Scripty] Re: div.select('select[required=true]') doesntwork

2008-12-17 Thread Walter Lee Davis
There are lots and lots of Web sites out there, and many many books on standards-based design. There is nothing that can't be done, usually pretty simply. Anyone who works in the standards has run their head up against a seeming-impossible layout before, so if you're really stuck, post

[Proto-Scripty] Re: Ajax.Autocompleter used in a frame doesn't work

2008-12-17 Thread Greenosity
We found the solution: If we add 'position: relative' to the parent div of the Ajax.Autocompleter input and div to populate, it works. This doesn't appear to be necessary if the same page is not in a frame. --~--~-~--~~~---~--~~ You received this message because

[Proto-Scripty] Re: div.select('select[required=true]') doesntwork

2008-12-17 Thread buda
I wan add that I dont produce invalid HTML code - I only use IEs quirk mode because of its true understanding of height=100% I need an lyaout which is fets only viewport of window, not bigger it It must have menubar and beneath left menu pane and right contentarea and it must be elastic On 17

[Proto-Scripty] Re: Problem (propably logical one) with dynamic fadein / fadeout for a navigation menu

2008-12-17 Thread Diodeus
You're right on that one. Reposition the abort code: slink.observe('mouseover', function(e) { if(running==1) { return } running=1 this.elm =

[Proto-Scripty] Re: div.select('select[required=true]') doesntwork

2008-12-17 Thread buda
so I cant understand why its not work correctly div.select('select[required=true]') On 17 дек, 21:38, buda www...@pochta.ru wrote: I wan add that I dont produce invalid HTML code - I only use IEs quirk mode because of its true understanding of height=100% I need an lyaout which is fets only

[Proto-Scripty] Re: Improving FPS Speeds

2008-12-17 Thread Craig
site im developing is not live but similar to http://www.aspecto.co.uk/ Is there much use in creating a slider function to run all the sliders from would this make much of a difference? On Dec 17, 4:35 am, RobG rg...@iinet.net.au wrote: On Dec 17, 3:13 am, Craig cr...@europe.com wrote: I

[Proto-Scripty] Re: div.select('select[required=true]') doesntwork

2008-12-17 Thread buda
I am tryinh to subscribe to web-dev list if it'll sucsessfull - I send a list On 17 дек, 21:52, Walter Lee Davis wa...@wdstudio.com wrote: But IE 8 treats height as if it was min-height, not as height. I   propose that you make a static copy of your HTML, post it somewhere,   and then post a

[Proto-Scripty] Re: Improving FPS Speeds

2008-12-17 Thread Diodeus
Posting an example that is not your code and does not display the problem you are experiencing really doesn't help us debug YOUR problem. On Dec 17, 5:52 am, Craig cr...@europe.com wrote: site im developing is not live but similar tohttp://www.aspecto.co.uk/ Is there much use in creating a

[Proto-Scripty] Sortable list - dynamic numbering?

2008-12-17 Thread Matt Andrews
Hi everyone, I've made a fairly basic Sortable - it's two lists and you can drag elements from one list to the (initially blank) second. My issue is that I want the second list to auto number itself as you add to it, eg, if you drag an element to the top of it, it's prefixed with a #1, or if

[Proto-Scripty] Re: div.select('select[required=true]') doesntwork

2008-12-17 Thread buda
I can't to verify HTML because it dynamic and I dont use quirk mode knowingly - because so called strict or other modes dont let me to make my design, so do Microsoft in its CRM web app On 17 дек, 19:22, Walter Lee Davis wa...@wdstudio.com wrote: I'm going to guess here, but maybe because this

[Proto-Scripty] Re: Problem (propably logical one) with dynamic fadein / fadeout for a navigation menu

2008-12-17 Thread Chris
Hi Diodeus, that wont work for me, because i am runing the function just once. This adds the event listeners to all of the images. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Prototype script.aculo.us group. To

[Proto-Scripty] Re: div.select('select[required=true]') doesntwork

2008-12-17 Thread buda
sorry - I do use quirk mode knowingly! its misprint )) On 17 дек, 19:33, buda www...@pochta.ru wrote: I can't to verify HTML because it dynamic and I dont use quirk mode knowingly - because so called strict or other modes dont let me to make my design, so do Microsoft in its CRM web app On

[Proto-Scripty] Re: Nested JSON problem

2008-12-17 Thread jason maina
What im wondering out of the reply is I cant have a nested JSON object with the following layout? groupID, groupName, groupItems(array of items) similar example: http://labs.adobe.com/technologies/spry/samples/data_region/JSONDataSetSample.html#Example5 Regards, Jason On Wed, Dec 17, 2008 at

[Proto-Scripty] Re: Error at object.valueOf() in new version of library

2008-12-17 Thread buda
debugger shows that valueOf is undefined On 17 дек, 13:10, buda www...@pochta.ru wrote: Today I have raked new version Tue Dec 16 20:52:24 -0800 2008 and at the very begining of runing prototype.js an error appeares Microsoft JScript runtime error: Object doesn't support this property or

[Proto-Scripty] Re: Improving FPS Speeds

2008-12-17 Thread Craig
Who said it isnt my code.. On Dec 17, 2:51 pm, Diodeus diod...@gmail.com wrote: Posting an example that is not your code and does not display the problem you are experiencing really doesn't help us debug YOUR problem. On Dec 17, 5:52 am, Craig cr...@europe.com wrote: site im

[Proto-Scripty] Nested JSON problem

2008-12-17 Thread jason maina
Hi all, Below is JSON encoded(php) data. After evaluating and sanitizing it im not capable of extracting its contents im just not sure what im doing wrong: [php output] rsJson:{[{groupCode:1,groupName:Roses,flowers:[{flowerCode:15,flowerName:Roses}]},

[Proto-Scripty] Re: Prototype Cross Site Ajax Request

2008-12-17 Thread SWilk
Jeztah wrote: Sorry to repost but this did not appear on the group email out Your post appeared on the list, but it seems nobody had time to answer. On Dec 16, 2:58 pm, Jeztah webmas...@thecarmarketplace.com wrote: Does anyone know if this is supported yet in prototypejs ... i have found a

[Proto-Scripty] Re: Error at object.valueOf() in new version of library

2008-12-17 Thread kangax
On Dec 17, 2:09 pm, buda www...@pochta.ru wrote: debugger shows that valueOf is undefined On 17 дек, 13:10, buda www...@pochta.ru wrote: Today I have raked new version Tue Dec 16 20:52:24 -0800 2008 and at the very begining of runing prototype.js an error appeares Microsoft JScript

[Proto-Scripty] Re: Modal window pop-up

2008-12-17 Thread jrochkind
I just spent like two hours googling for this, and found lots of old and no longer supported stuff, until thinking of specifically searching within the prototype listserv, and finding this thread. So, thanks! But it's neccesarily easy to find on Google if you don't know what you're looking for.

[Proto-Scripty] Re: Extending Event has a Bug ?

2008-12-17 Thread kangax
On Dec 17, 1:51 pm, fero elf...@gmail.com wrote: [...] I think it is quite a bug because I have to check for Prototype.Browser.IE variable. I'm pretty sure there's *no* bug in nonexistent `Event.addMethods` ; ) If prototype supports IE and other browsers, in a very beautiful world I have

[Proto-Scripty] Namespacing/Loading module

2008-12-17 Thread Chris Wash
Has anyone implemented a namespacing and importing module the likes of YUI's Namespace/Loader or Dojo's declare/provide/require? Please don't tell me one already exists and I have overlooked it. I think this should be a very high priority for Prototype/ Scriptaculous. You just can't maintain a

[Proto-Scripty] Re: Improving FPS Speeds

2008-12-17 Thread RobG
On Dec 17, 8:52 pm, Craig cr...@europe.com wrote: site im developing is not live but similar tohttp://www.aspecto.co.uk/ Is there much use in creating a slider function to run all the sliders from would this make much of a difference? It might make the code tidier and get rid of some global

[Proto-Scripty] Re: Error at object.valueOf() in new version of library

2008-12-17 Thread buda
Yes, but in debugger there no ant stack calls except prototype.js On 18 дек, 00:29, kangax kan...@gmail.com wrote: On Dec 17, 2:09 pm, buda www...@pochta.ru wrote: debugger shows that valueOf is undefined On 17 дек, 13:10, buda www...@pochta.ru wrote: Today I have raked new version

[Proto-Scripty] Re: div.select('select[required=true]') doesntwork

2008-12-17 Thread buda
About element attribute On 18 дек, 01:25, kangax kan...@gmail.com wrote: On Dec 17, 11:42 am, buda www...@pochta.ru wrote: I set required=true for some select on a form Are you talking about element attributes or object properties? [...] -- kangax