[Proto-Scripty] Client side searching

2009-07-06 Thread Jeztah
Good morning I have a site that can be heavy server load and decided to try and take out some filtering on a page.. Example. I have a page with a table of search results and would like to be able to put client side searching (ala Crtl+f on firefox) What i would like to do is make the

[Proto-Scripty] Help iterating objects in JSON via AJAX Request

2009-07-06 Thread seamusjr
I am trying to get a collection of objects in JSON that have children and iterate through the name properties of those children. For example I want to get the collection of Furniture and return its children. I have tried to do this by converting the Object to a Hash and iterate through it with

[Proto-Scripty] Re: Client side searching

2009-07-06 Thread Peter De Berdt
On 06 Jul 2009, at 10:27, Jeztah wrote: I have a site that can be heavy server load and decided to try and take out some filtering on a page.. Example. I have a page with a table of search results and would like to be able to put client side searching (ala Crtl+f on firefox) What i

[Proto-Scripty] Re: Problems while upgrading from 1.5.x to 1.6.x

2009-07-06 Thread ColinFine
On Jul 3, 7:04 pm, El Bastardo elbastardo...@googlemail.com wrote: That's exactly what stands in the documentary and what already did not help me out. Should I literally write element.?? - WHen I do that it doesn't work and firebug gives me errors. Can't someone please type down the

[Proto-Scripty] Re: Client side searching

2009-07-06 Thread Szymon Wilkołazki
Jeztah wrote: Good morning I have a site that can be heavy server load and decided to try and take out some filtering on a page.. Example. I have a page with a table of search results and would like to be able to put client side searching (ala Crtl+f on firefox) What i would

[Proto-Scripty] Prototype script.aculo.us-- is not working in the Mozilla3.5

2009-07-06 Thread vishnu
HI all , I am using the Script.aculo.us and Protype for ajax action in my java web application.I am facing problem in the Mozilla3.5 ,ajax controls are not working (Like suggestion boxes(auto completer),Ajax updater).Please help me . thanksregards, Vishnu.

[Proto-Scripty] Re: Prototype script.aculo.us-- is not working in the Mozilla3.5

2009-07-06 Thread waldron.r...@gmail.com
can you post the code you're using along with a description of the problem rick -Original Message- Date: Monday, July 06, 2009 6:50:37 am To: Prototype script.aculo.us prototype-scriptaculous@googlegroups.com From: vishnu vardhana.vis...@gmail.com Subject: [Proto-Scripty] Prototype

[Proto-Scripty] Re: Client side searching

2009-07-06 Thread ColinFine
Have you looked at Matt Kruse's http://javascripttoolbox.com/lib/table/ ? It's one not-very-big javascript file that you include and then apply certain classes to headers in your table, and it sorts and filters on user action. It's not the same as you are asking for, but it may be that you could

[Proto-Scripty] Ajax.Autocompleter and events after the list of choices is updated

2009-07-06 Thread RidderGraniet
I discovered that with the Autocompleter function in scriptaculous doesn't provide a satisfying 'afterUpdateChoices' callback. This, in my opinion, could be very usefull if you want to do something with the list items that are populated in the div element you provide the autocompleter with, for

[Proto-Scripty] Each IE problem

2009-07-06 Thread Celso
Why this only works in Firefox and not in IE? $$('input').each(function(e){ if(e.type == 'checkbox' e.checked) $('tr-'+e.id).morph('checked'); }); Thanks, Celso --~--~-~--~~~---~--~~ You received this message because you are

[Proto-Scripty] Loosing Dragables out of the window

2009-07-06 Thread Nich
Hi All, I'm using Dragable to make a dialog box widget dragable, the problem is that the dialog box can then be lost outside the window, and im unsure on howto stop this happening, any ideas? Nich --~--~-~--~~~---~--~~ You received this message because you are

[Proto-Scripty] Effect.Scale options help

2009-07-06 Thread Kronprinz
i have an image that I want to scale to say 110% (or being able to specify in pixels would be great too) on mouseOver and then back to original size on mouseout. I tried using scaleMode: { originalHeight: 400, originalWidth: 200 } as an option but it didnt work...

[Proto-Scripty] How to get SELECTED option description

2009-07-06 Thread Martín Marqués
I have a select pull down within a form that at submition executes some ajax stuff and updates the div where the SELECT tag lives. HTML code is like this (I'm using HTML_Template_IT from PHP, so the BEGIN-END define a block, and {} define replacable text): td class=tituloTipo de

[Proto-Scripty] Re: How to get SELECTED option description

2009-07-06 Thread Hector Virgen
It seems like you're working against the standard here. Normally, the value is what's important upon submission. But what you want can be done. There are two approaches to this: 1. When rendering the page, make the value and description the same. You'll need to escape the value attribute with

[Proto-Scripty] Re: How to get SELECTED option description

2009-07-06 Thread Alexander Wallace
You should be able to do something along the lines of: var select_menu = $(tdocu); var description = select_menu.childElements()[select_menu.selectedIndex].innerHTML; - Alex 2009/7/6 Martín Marqués martin.marq...@gmail.com I have a select pull down within a form that at submition executes

[Proto-Scripty] How to display the waiting image

2009-07-06 Thread anthony
I am sure this is a commonly asked question or can be found in many tutorials, but I just can;t see to figure out what to search for. I am looking for something were when I hit submit, the page does not go anywhere but something pops up or appears and say the page is processing, not allowing the

[Proto-Scripty] Re: How to display the waiting image

2009-07-06 Thread G. Sharon Yang
That's called processing bar. Depending on your back-end, you write sth in java or php, or other server language, or simply using flash to show the status. what do you use in your back-end? -Sharon On Mon, Jul 6, 2009 at 2:33 PM, anthonymrsmi...@gmail.com wrote: I am sure this is a commonly

[Proto-Scripty] IE 6.0.2900.2180.xpsp_sp2_rtm.040803-2158 Problem

2009-07-06 Thread Andy Wenk
Hi everybody, I am new to the list and this is my first post. Actually we have a problem wit the Internet Explorer 6.0.2900.2180.xpsp_sp2_rtm.040803-2158. We are not able to localize the problem and try now to figure out wheter it could be a Javascript Problem or anything else. The site is

[Proto-Scripty] Re: Help iterating objects in JSON via AJAX Request

2009-07-06 Thread seamusjr
Thanks a lot TJ, this is exactly what I needed. I was confused about iterating through the array that was in the Object and kept trying to use for..in instead of the each. Regards, Seamus --~--~-~--~~~---~--~~ You received this message because you are subscribed

[Proto-Scripty] [OT] differences with content-type?

2009-07-06 Thread Miguel Beltran R.
If use in my code (using zope) response.setHeader('content-type', 'applicaction/x-javascript') exists some differences to response.setHeader('content-type', 'text/javascript') I mean, to the browser really _think_ what it the same? Another question. If my server say what myjavascript.js is

[Proto-Scripty] Re: How to get SELECTED option description

2009-07-06 Thread Martín Marqués
Excelent, this is what I was looking for. onSuccess in Ajax.request will have something like this: tipodoc.innerHTML = tdocuselect.childElements()[tdocuselect.selectedIndex].innerHTML + addHidden('tdocu',tdocuselect.value); where addHidden is this: function

[Proto-Scripty] Re: How to display the waiting image

2009-07-06 Thread Nich
On Tue, Jul 7, 2009 at 07:03, anthony mrsmi...@gmail.com wrote: I am sure this is a commonly asked question or can be found in many tutorials, but I just can;t see to figure out what to search for. I am looking for something were when I hit submit, the page does not go anywhere but

[Proto-Scripty] problem with library Window 1.3 overflow

2009-07-06 Thread Miguel Beltran R.
Hi again list I show a dialog before to load the real information, but when the second window is loaded, the CSS value from attribute overflow is hidden. If not show the first dialog (Dialgo.info) the second have overflow=auto; someone have this problem before? var