Hi Mariano,
<br/><br/>I was just trying to use the autocomplete without the onBlur event and
<br/>it does also close.
<br/>In my code, I refresh some fields in the onBlur callback.
<br/><br/>Sabine
<br/><br/>On Wed, Oct 16, 2013 at 10:30 PM, Mariano Martinez Peck [via
<br/>Smalltalk] &lt;<a href="/user/SendEmail.jtp?type=node&node=4715203&i=0" target="_top" rel="nofollow" link="external">[hidden email]</a>&gt; wrote:
<div class='shrinkable-quote'><br/>&gt; Sabine, I have a small question. I was checking your code and I noticed you
<br/>&gt; have an onBlur:
<br/>&gt;
<br/>&gt; renderBlockCurrency: html
<br/>&gt; &nbsp; &nbsp; ^ [ :fid :mid |
<br/>&gt; &nbsp; &nbsp; | theInputCurrency theInputExchanteRate |
<br/>&gt; &nbsp; &nbsp; theInputCurrency := html textInput
<br/>&gt; &nbsp; &nbsp; &nbsp; &nbsp; id: mid;
<br/>&gt; &nbsp; &nbsp; &nbsp; &nbsp; size: 25;
<br/>&gt; &nbsp; &nbsp; &nbsp; &nbsp; value: self currency;
<br/>&gt; &nbsp; &nbsp; &nbsp; &nbsp; script: (html jQuery this autocomplete
<br/>&gt; minLength: 0;
<br/>&gt; sourceCallback: [ :term | self &nbsp; currencyNamesFor: term ]);
<br/>&gt; &nbsp; &nbsp; &nbsp; &nbsp; callback: [ :value |
<br/>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; self currency: value.
<br/>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ];
<br/>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;onBlur:
<br/>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; (html prototype evaluator
<br/>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;triggerForm: (self currencyFormID);
<br/>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; callback: [ :script | &nbsp;];
<br/>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return: false) &nbsp;]
<br/>&gt;
<br/>&gt;
<br/>&gt; I guess this is to close the popup/autocomplete if you click outside of it
<br/>&gt; or something like that.
<br/>&gt; I want to do the same, but my component is called directly from within
<br/>&gt; Magritte forms/components so the form was already created by Magriite, not
<br/>&gt; me.
<br/>&gt; And from what I can see, Magritte doesn't seem to set an ID for the form. Is
<br/>&gt; there another way to close the autocomplete once it looses focus?
<br/>&gt;
<br/>&gt; Thanks,
<br/>&gt;
<br/>&gt;
<br/>&gt;
<br/>&gt; On Mon, Oct 7, 2013 at 11:13 AM, Sabine Knöfel &lt;[hidden email]&gt; wrote:
<br/>&gt;&gt;
<br/>&gt;&gt; Hi Mariano,
<br/>&gt;&gt;
<br/>&gt;&gt; fine that it works for you so long.
<br/>&gt;&gt;
<br/>&gt;&gt; I am quite busy this days. For this reason, I will keep the solution I
<br/>&gt;&gt; have.
<br/>&gt;&gt; But if you succeed with your idea, tell me, please.
<br/>&gt;&gt;
<br/>&gt;&gt; Cheers,
<br/>&gt;&gt; Sabine
<br/>&gt;&gt;
<br/>&gt;&gt;
<br/>&gt;&gt; On Mon, Oct 7, 2013 at 3:59 PM, Mariano Martinez Peck [via Smalltalk]
<br/>&gt;&gt; &lt;[hidden email]&gt; wrote:
<br/>&gt;&gt;&gt;
<br/>&gt;&gt;&gt;
<br/>&gt;&gt;&gt;
<br/>&gt;&gt;&gt;
<br/>&gt;&gt;&gt; On Sat, Oct 5, 2013 at 12:39 PM, Sabine Knöfel &lt;[hidden email]&gt; wrote:
<br/>&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt; Hi Mariano,
<br/>&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt; thank you for the compliment! :-)
<br/>&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;
<br/>&gt;&gt;&gt; Well, I have just tried it and it works great. So at least we have
<br/>&gt;&gt;&gt; autocomplete :) Thanks!
<br/>&gt;&gt;&gt;
<br/>&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt; An autocomplete as in <a href="http://ivaynberg.github.io/select2/" target="_top" rel="nofollow" link="external">http://ivaynberg.github.io/select2/</a>&nbsp; would be very
<br/>&gt;&gt;&gt;&gt; useful for me too, especially at the page &quot;Days&quot;, where the user selects
<br/>&gt;&gt;&gt;&gt; countries and cities.
<br/>&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt; This select2 seems to be very powerful. Please let me know if you find
<br/>&gt;&gt;&gt;&gt; an integration into Seaside.
<br/>&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;
<br/>&gt;&gt;&gt; yes, seems very cool. But there are so many libraries like this around...
<br/>&gt;&gt;&gt;
<br/>&gt;&gt;&gt; btw...what if (as a temp workaround) we make our autocomplete to react on
<br/>&gt;&gt;&gt; focus to show all list? Right now it triggers the dropdown when you type
<br/>&gt;&gt;&gt; something. But we could change it to trigger the dropdown also when it gets
<br/>&gt;&gt;&gt; the focus? Then in our method called by #sourceCallback: we could check if
<br/>&gt;&gt;&gt; the string is empty/nil and in such a case we display the whole elements :)
<br/>&gt;&gt;&gt; I guess this could work....
<br/>&gt;&gt;&gt;
<br/>&gt;&gt;&gt; Cheers,
<br/>&gt;&gt;&gt;
<br/>&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt; Sabine
<br/>&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt; On Sat, Oct 5, 2013 at 2:39 PM, Mariano Martinez Peck [via Smalltalk]
<br/>&gt;&gt;&gt;&gt; &lt;[hidden email]&gt; wrote:
<br/>&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt; On Sat, Oct 5, 2013 at 8:27 AM, Sabine Knöfel &lt;[hidden email]&gt; wrote:
<br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt; Hi Mariano,
<br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt; I have a working dropdown list with jQuery autocomplete in my seaside
<br/>&gt;&gt;&gt;&gt;&gt;&gt; application.
<br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt; (Live: www.spesenfuchs.de -&gt; &quot;Ohne Login benutzen&quot;, switch to english,
<br/>&gt;&gt;&gt;&gt;&gt;&gt; then page &quot;Receipts&quot;)
<br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt; Hi Sabine,
<br/>&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt; First, let me thank you for the amount of time you took to answer!
<br/>&gt;&gt;&gt;&gt;&gt; Second, your website looks sooooo cool, really, very nice and
<br/>&gt;&gt;&gt;&gt;&gt; interesting idea. Congrats!
<br/>&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt; The field you are talking about is the currency right? While this is a
<br/>&gt;&gt;&gt;&gt;&gt; big step forward I wondered the following.
<br/>&gt;&gt;&gt;&gt;&gt; In the currency example, the dropdown list does not appear until you
<br/>&gt;&gt;&gt;&gt;&gt; type at least one word, right?
<br/>&gt;&gt;&gt;&gt;&gt; I would love a combination of a typical drop down list in which the
<br/>&gt;&gt;&gt;&gt;&gt; user can pick scrolling from a list to see the options, while also start
<br/>&gt;&gt;&gt;&gt;&gt; typing and filtering.
<br/>&gt;&gt;&gt;&gt;&gt; See the basic example from here: <a href="http://ivaynberg.github.io/select2/" target="_top" rel="nofollow" link="external">http://ivaynberg.github.io/select2/</a><br/>&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt; I created a fileout with a reduced version of this. This is only demo,
<br/>&gt;&gt;&gt;&gt;&gt;&gt; I removed all css stuf etc.
<br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt; To see it:
<br/>&gt;&gt;&gt;&gt;&gt;&gt; 1) take new image
<br/>&gt;&gt;&gt;&gt;&gt;&gt; 2) install seaside from configurations browser
<br/>&gt;&gt;&gt;&gt;&gt;&gt; 3) install jQuery widget box
<br/>&gt;&gt;&gt;&gt;&gt;&gt; Gofer new
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; url: '<a href="http://smalltalkhub.com/mc/Seaside/JQueryWidgetBox/main';" target="_top" rel="nofollow" link="external">http://smalltalkhub.com/mc/Seaside/JQueryWidgetBox/main';</a><br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; package: 'ConfigurationOfJQueryWidgetBox';
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; load.
<br/>&gt;&gt;&gt;&gt;&gt;&gt; (Smalltalk at: #ConfigurationOfJQueryWidgetBox) project stableVersion
<br/>&gt;&gt;&gt;&gt;&gt;&gt; load
<br/>&gt;&gt;&gt;&gt;&gt;&gt; 4) file in the code below
<br/>&gt;&gt;&gt;&gt;&gt;&gt; 5) do it: RKADemoView initialize
<br/>&gt;&gt;&gt;&gt;&gt;&gt; 6) do it: (ZnZincServerAdaptor port: 8085) start.
<br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt; 5) in Browser
<br/>&gt;&gt;&gt;&gt;&gt;&gt; <a href="http://localhost:8085/RKADemo" target="_top" rel="nofollow" link="external">http://localhost:8085/RKADemo</a><br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt; The inspect shows that the currency has been set after selecting it.
<br/>&gt;&gt;&gt;&gt;&gt;&gt; I hope this is what your have been looking for.
<br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt; Thanks! &nbsp;Having a autocomplete working even if it is not the best I
<br/>&gt;&gt;&gt;&gt;&gt; would need, is way better than my current state and very appreciated!!
<br/>&gt;&gt;&gt;&gt;&gt; I will test it during the weekend or on Monday (have to leave now).
<br/>&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt; Thank you very much!
<br/>&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt; Sabine
<br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt; FILEOUT:
<br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt; 'From Pharo2.0 of 7 March 2013 [Latest update: #20618] on 5 October
<br/>&gt;&gt;&gt;&gt;&gt;&gt; 2013 at 1:18:06 pm'!
<br/>&gt;&gt;&gt;&gt;&gt;&gt; WAComponent subclass: #RKADemoView
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; instanceVariableNames: 'currency'
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; classVariableNames: ''
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; poolDictionaries: ''
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; category: 'RKA24-View'!
<br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt; !RKADemoView methodsFor: 'updateRoot' stamp: 'sabineknoefel 10/5/2013
<br/>&gt;&gt;&gt;&gt;&gt;&gt; 12:37'!
<br/>&gt;&gt;&gt;&gt;&gt;&gt; updateRoot: aHtmlRoot
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; super updateRoot: aHtmlRoot.
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; aHtmlRoot javascript url:
<br/>&gt;&gt;&gt;&gt;&gt;&gt; '<a href="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js'" target="_top" rel="nofollow" link="external">https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js'</a>.
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; aHtmlRoot javascript url:
<br/>&gt;&gt;&gt;&gt;&gt;&gt; '<a href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js'" target="_top" rel="nofollow" link="external">http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js'</a>.
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; aHtmlRoot javascript url:
<br/>&gt;&gt;&gt;&gt;&gt;&gt; '<a href="https://ajax.googleapis.com/ajax/libs/prototype/1.7.0.0/prototype.js'" target="_top" rel="nofollow" link="external">https://ajax.googleapis.com/ajax/libs/prototype/1.7.0.0/prototype.js'</a>. &nbsp;! !
<br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt; !RKADemoView methodsFor: 'accessing' stamp: 'sabineknoefel 10/5/2013
<br/>&gt;&gt;&gt;&gt;&gt;&gt; 12:07'!
<br/>&gt;&gt;&gt;&gt;&gt;&gt; currency
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; ^ currency! !
<br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt; !RKADemoView methodsFor: 'accessing' stamp: 'sabineknoefel 10/5/2013
<br/>&gt;&gt;&gt;&gt;&gt;&gt; 13:17'!
<br/>&gt;&gt;&gt;&gt;&gt;&gt; currency: aString
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; currency := aString! !
<br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt; !RKADemoView methodsFor: 'ids' stamp: 'sabineknoefel 10/5/2013 12:31'!
<br/>&gt;&gt;&gt;&gt;&gt;&gt; currencyFormID
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; ^ 'currencyFormID'! !
<br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt; !RKADemoView methodsFor: 'render-blocks' stamp: 'sabineknoefel
<br/>&gt;&gt;&gt;&gt;&gt;&gt; 10/5/2013 13:17'!
<br/>&gt;&gt;&gt;&gt;&gt;&gt; currencyNamesFor: aString
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; &nbsp;^ {'Euro'.
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; 'Dinar'.
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; 'Yen'.
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; 'Schilling'.
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; 'Som'.
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; 'Riel'.
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; 'Franc'.
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; 'Won'.
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; 'Tenge'.
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; 'Kip'.
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; 'Pfund'.
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; 'Rupie'} select: [ :each | ('*',aString,'*') match: each ]
<br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp;! !
<br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt; !RKADemoView methodsFor: 'render-blocks' stamp: 'sabineknoefel
<br/>&gt;&gt;&gt;&gt;&gt;&gt; 10/5/2013 13:12'!
<br/>&gt;&gt;&gt;&gt;&gt;&gt; renderBlockCurrency: html
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; ^ [ :fid :mid |
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; | theInputCurrency theInputExchanteRate |
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; theInputCurrency := html textInput
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; id: mid;
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; size: 25;
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; value: self currency;
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; script: (html jQuery this autocomplete sourceCallback: [ :term
<br/>&gt;&gt;&gt;&gt;&gt;&gt; | self &nbsp; currencyNamesFor: term ]);
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; callback: [ :value |
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; self currency: value.
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; self currency inspect ];
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;onBlur:
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; (html prototype evaluator
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; triggerForm: (self currencyFormID);
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; callback: [ :script | &nbsp;];
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return: false) &nbsp;] &nbsp;! !
<br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt; !RKADemoView methodsFor: 'rerender' stamp: 'sabineknoefel 10/5/2013
<br/>&gt;&gt;&gt;&gt;&gt;&gt; 12:33'!
<br/>&gt;&gt;&gt;&gt;&gt;&gt; reRenderCurrencyOn: html
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; self reRenderControl: (self renderBlockCurrency: html) formID:
<br/>&gt;&gt;&gt;&gt;&gt;&gt; self currencyFormID on: html! !
<br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt; !RKADemoView methodsFor: 'rendering' stamp: 'sabineknoefel 10/5/2013
<br/>&gt;&gt;&gt;&gt;&gt;&gt; 12:33'!
<br/>&gt;&gt;&gt;&gt;&gt;&gt; renderContentOn: html
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; self renderCurrencyOn: &nbsp; html! !
<br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt; !RKADemoView methodsFor: 'rendering' stamp: 'sabineknoefel 10/5/2013
<br/>&gt;&gt;&gt;&gt;&gt;&gt; 12:20'!
<br/>&gt;&gt;&gt;&gt;&gt;&gt; renderControl: aBlock formID: aFormID on: html
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; html form
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; id: aFormID;
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; with: [ aBlock value: aFormID value: aFormID , 'id']! !
<br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt; !RKADemoView methodsFor: 'rendering' stamp: 'sabineknoefel 10/5/2013
<br/>&gt;&gt;&gt;&gt;&gt;&gt; 12:32'!
<br/>&gt;&gt;&gt;&gt;&gt;&gt; renderCurrencyOn: html
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; self
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; renderControl: (self renderBlockCurrency: html)
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; formID: self currencyFormID
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; on: html! !
<br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt; !RKADemoView methodsFor: 'updateOn' stamp: 'sabineknoefel 10/5/2013
<br/>&gt;&gt;&gt;&gt;&gt;&gt; 12:33'!
<br/>&gt;&gt;&gt;&gt;&gt;&gt; updateCurrencyOn: html
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; html prototype element
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; id: self currencyFormID;
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; update: [ :renderer | self reRenderCurrencyOn: html renderer
<br/>&gt;&gt;&gt;&gt;&gt;&gt; ]! !
<br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &quot;-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- &quot;!
<br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt; RKADemoView class
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; instanceVariableNames: ''!
<br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt; !RKADemoView class methodsFor: 'initialize' stamp: 'sabineknoefel
<br/>&gt;&gt;&gt;&gt;&gt;&gt; 10/5/2013 12:36'!
<br/>&gt;&gt;&gt;&gt;&gt;&gt; canBeRoot
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; ^ true! !
<br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt; !RKADemoView class methodsFor: 'initialize' stamp: 'sabineknoefel
<br/>&gt;&gt;&gt;&gt;&gt;&gt; 10/5/2013 13:11'!
<br/>&gt;&gt;&gt;&gt;&gt;&gt; initialize
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; &quot;RKADemoView initialize.&quot;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; WAAdmin register: self asApplicationAt: 'RKADemo'.
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; JQuery functionName: 'jQuery'.
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &nbsp; &nbsp; ! !
<br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt; RKADemoView initialize!
<br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt; On Fri, Oct 4, 2013 at 5:44 PM, Paul DeBruicker [via Smalltalk]
<br/>&gt;&gt;&gt;&gt;&gt;&gt; &lt;[hidden email]&gt; wrote:
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; The JQDeployment* and JQGoogle* libraries are the same file, one is
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; served from the image and the other is served from Google's CDN. &nbsp;Choose
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; either one and go with that.
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; Also the JQuery libraries should come first in the list as I assume
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; they are served in the order displayed and the JQuery dependent stuff will
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; fail if its not present when they are loaded.
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; Check your browser's development tools for javascript errors.
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; In Chrome I think you hit F12 to open the dev tools
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; On Oct 4, 2013, at 8:07 AM, Mariano Martinez Peck &lt;[hidden email]&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; wrote:
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; Thanks Johan. I am trying the very same example of
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; JQAutocompleteFunctionalTest doing a simple:
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; self call: JQAutocompleteFunctionalTest new.
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; in my app but it does not seem to work...nothing is displayed. I
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; put a halt in sourceCallback: &nbsp;but never halts.
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; It is the first time I install JQuery in this app so I may have
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; done something wrong.
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; The file libraries I added are the ones you can see in the
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; screenshot. Is there anything else I should do?
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; Thanks!
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; On Fri, Oct 4, 2013 at 11:14 AM, Johan Brichau &lt;[hidden email]&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; wrote:
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; At a certain point in time, this autocompleter got added to jQuery
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; itself.
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; Therefore, the jQuery autocomplete comes with the jQueryUI package
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; of Seaside itself.
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; Look for JQAutocomplete if you loaded jQueryUI with Seaside
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; On 04 Oct 2013, at 16:00, Mariano Martinez Peck &lt;[hidden email]&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; wrote:
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; &gt; Hi guys,
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; &gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; &gt; I am searching for a dropdown list with autocomplete, ideally,
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; &gt; already integrated with seaside. I am experimenting with Twitter Bootstrap
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; &gt; for some part of the application so I saw there are a few projects like
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; &gt; &quot;Select2&quot;, &quot;typeahead&quot;, &quot;Bootstrap Combobox&quot;, etc...they normall end up
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; &gt; using jquery.js. But none of them is already integrated in Seaside...
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; &gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; &gt; I saw JQueryWidgetBox, but in
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; &gt; <a href="http://smalltalkhub.com/#!/~Seaside/JQueryWidgetBox" target="_top" rel="nofollow" link="external">http://smalltalkhub.com/#!/~Seaside/JQueryWidgetBox</a><br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; &gt; in the entry: Autocomplete
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; &gt; <a href="http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/" target="_top" rel="nofollow" link="external">http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/</a><br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; &gt; If you follow that it says the plugin has been deprecated...
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; &gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; &gt; I am using Seaside 3.0. Anyway has a working dropdown list with
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; &gt; autocomplete?
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; &gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; &gt; Thank you very much in advance,
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; &gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; &gt; --
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; &gt; Mariano
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; &gt; <a href="http://marianopeck.wordpress.com" target="_top" rel="nofollow" link="external">http://marianopeck.wordpress.com</a><br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; &gt; _______________________________________________
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; &gt; seaside mailing list
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; &gt; [hidden email]
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; &gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; &gt; <a href="http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside" target="_top" rel="nofollow" link="external">http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside</a><br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; _______________________________________________
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; seaside mailing list
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; [hidden email]
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; <a href="http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside" target="_top" rel="nofollow" link="external">http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside</a><br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; --
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; Mariano
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; <a href="http://marianopeck.wordpress.com" target="_top" rel="nofollow" link="external">http://marianopeck.wordpress.com</a><br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; &lt;Screen Shot 2013-10-04 at 12.04.34
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; PM.png&gt;_______________________________________________
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; seaside mailing list
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; [hidden email]
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; &gt; <a href="http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside" target="_top" rel="nofollow" link="external">http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside</a><br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; _______________________________________________
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; seaside mailing list
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; [hidden email]
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; <a href="http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside" target="_top" rel="nofollow" link="external">http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside</a><br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; ________________________________
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; If you reply to this email, your message will be added to the
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; discussion below:
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; <a href="http://forum.world.st/Dropdown-list-with-autocomplete-tp4712525p4712549.html" target="_top" rel="nofollow" link="external">http://forum.world.st/Dropdown-list-with-autocomplete-tp4712525p4712549.html</a><br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; To start a new topic under Seaside General, email [hidden email]
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; To unsubscribe from Seaside, click here.
<br/>&gt;&gt;&gt;&gt;&gt;&gt;&gt; NAML
<br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt; ________________________________
<br/>&gt;&gt;&gt;&gt;&gt;&gt; View this message in context: Re: Dropdown list with autocomplete?
<br/>&gt;&gt;&gt;&gt;&gt;&gt; Sent from the Seaside General mailing list archive at Nabble.com.
<br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;&gt; _______________________________________________
<br/>&gt;&gt;&gt;&gt;&gt;&gt; seaside mailing list
<br/>&gt;&gt;&gt;&gt;&gt;&gt; [hidden email]
<br/>&gt;&gt;&gt;&gt;&gt;&gt; <a href="http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside" target="_top" rel="nofollow" link="external">http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside</a><br/>&gt;&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt; --
<br/>&gt;&gt;&gt;&gt;&gt; Mariano
<br/>&gt;&gt;&gt;&gt;&gt; <a href="http://marianopeck.wordpress.com" target="_top" rel="nofollow" link="external">http://marianopeck.wordpress.com</a><br/>&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt; _______________________________________________
<br/>&gt;&gt;&gt;&gt;&gt; seaside mailing list
<br/>&gt;&gt;&gt;&gt;&gt; [hidden email]
<br/>&gt;&gt;&gt;&gt;&gt; <a href="http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside" target="_top" rel="nofollow" link="external">http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside</a><br/>&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt; ________________________________
<br/>&gt;&gt;&gt;&gt;&gt; If you reply to this email, your message will be added to the
<br/>&gt;&gt;&gt;&gt;&gt; discussion below:
<br/>&gt;&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;&gt; <a href="http://forum.world.st/Dropdown-list-with-autocomplete-tp4712525p4712642.html" target="_top" rel="nofollow" link="external">http://forum.world.st/Dropdown-list-with-autocomplete-tp4712525p4712642.html</a><br/>&gt;&gt;&gt;&gt;&gt; To start a new topic under Seaside General, email [hidden email]
<br/>&gt;&gt;&gt;&gt;&gt; To unsubscribe from Seaside, click here.
<br/>&gt;&gt;&gt;&gt;&gt; NAML
<br/>&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt; ________________________________
<br/>&gt;&gt;&gt;&gt; View this message in context: Re: Dropdown list with autocomplete?
<br/>&gt;&gt;&gt;&gt; Sent from the Seaside General mailing list archive at Nabble.com.
<br/>&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;&gt; _______________________________________________
<br/>&gt;&gt;&gt;&gt; seaside mailing list
<br/>&gt;&gt;&gt;&gt; [hidden email]
<br/>&gt;&gt;&gt;&gt; <a href="http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside" target="_top" rel="nofollow" link="external">http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside</a><br/>&gt;&gt;&gt;&gt;
<br/>&gt;&gt;&gt;
<br/>&gt;&gt;&gt;
<br/>&gt;&gt;&gt;
<br/>&gt;&gt;&gt; --
<br/>&gt;&gt;&gt; Mariano
<br/>&gt;&gt;&gt; <a href="http://marianopeck.wordpress.com" target="_top" rel="nofollow" link="external">http://marianopeck.wordpress.com</a><br/>&gt;&gt;&gt;
<br/>&gt;&gt;&gt; _______________________________________________
<br/>&gt;&gt;&gt; seaside mailing list
<br/>&gt;&gt;&gt; [hidden email]
<br/>&gt;&gt;&gt; <a href="http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside" target="_top" rel="nofollow" link="external">http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside</a><br/>&gt;&gt;&gt;
<br/>&gt;&gt;&gt;
<br/>&gt;&gt;&gt; ________________________________
<br/>&gt;&gt;&gt; If you reply to this email, your message will be added to the discussion
<br/>&gt;&gt;&gt; below:
<br/>&gt;&gt;&gt;
<br/>&gt;&gt;&gt; <a href="http://forum.world.st/Dropdown-list-with-autocomplete-tp4712525p4713018.html" target="_top" rel="nofollow" link="external">http://forum.world.st/Dropdown-list-with-autocomplete-tp4712525p4713018.html</a><br/>&gt;&gt;&gt; To start a new topic under Seaside General, email [hidden email]
<br/>&gt;&gt;&gt; To unsubscribe from Seaside, click here.
<br/>&gt;&gt;&gt; NAML
<br/>&gt;&gt;
<br/>&gt;&gt;
<br/>&gt;&gt;
<br/>&gt;&gt; ________________________________
<br/>&gt;&gt; View this message in context: Re: Dropdown list with autocomplete?
<br/>&gt;&gt; Sent from the Seaside General mailing list archive at Nabble.com.
<br/>&gt;&gt;
<br/>&gt;&gt; _______________________________________________
<br/>&gt;&gt; seaside mailing list
<br/>&gt;&gt; [hidden email]
<br/>&gt;&gt; <a href="http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside" target="_top" rel="nofollow" link="external">http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside</a><br/>&gt;&gt;
<br/>&gt;
<br/>&gt;
<br/>&gt;
<br/>&gt; --
<br/>&gt; Mariano
<br/>&gt; <a href="http://marianopeck.wordpress.com" target="_top" rel="nofollow" link="external">http://marianopeck.wordpress.com</a><br/>&gt;
<br/>&gt; _______________________________________________
<br/>&gt; seaside mailing list
<br/>&gt; [hidden email]
<br/>&gt; <a href="http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside" target="_top" rel="nofollow" link="external">http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside</a><br/>&gt;
<br/>&gt;
<br/>&gt; ________________________________
<br/>&gt; If you reply to this email, your message will be added to the discussion
<br/>&gt; below:
<br/>&gt; <a href="http://forum.world.st/Dropdown-list-with-autocomplete-tp4712525p4715086.html" target="_top" rel="nofollow" link="external">http://forum.world.st/Dropdown-list-with-autocomplete-tp4712525p4715086.html</a><br/>&gt; To start a new topic under Seaside General, email
<br/>&gt; <a href="/user/SendEmail.jtp?type=node&node=4715203&i=1" target="_top" rel="nofollow" link="external">[hidden email]</a>
<br/>&gt; To unsubscribe from Seaside, click here.
<br/>&gt; NAML
<br/></div>

        
        
        
<br/><hr align="left" width="300" />
View this message in context: <a href="http://forum.world.st/Dropdown-list-with-autocomplete-tp4712525p4715203.html">Re: Dropdown list with autocomplete?</a><br/>
Sent from the <a href="http://forum.world.st/Seaside-General-f86180.html">Seaside General mailing list archive</a> at Nabble.com.<br/>