Re: how to use autocompleter tag? Please......

2009-09-30 Thread Tommy Pham
__ From: taj uddin To: struts2 Sent: Tuesday, September 29, 2009 4:08:55 AM Subject: how to use autocompleter tag? Please.. Hi All, I am working on web application using struts 2.0.12 version. In my application there is a need to replace the select

how to use autocompleter tag? Please......

2009-09-29 Thread taj uddin
Hi All,       I am working on web application using struts 2.0.12 version. In my application there is a need to replace the select tag with autocompleter tag. I tried many ways using the list which i obtain from the action class and also tested with static list values but not able to

how to use autocompleter tag?

2009-09-29 Thread taj uddin
Hi All,       I am working on web application using struts 2.0.12 version. In my application there is a need to replace the select tag with autocompleter tag. I tried many ways using the list which i obtain from the action class and also tested with static list values but not able to

Struts autocompleter tag - how to add style?

2008-11-24 Thread pesho318i
Hello :) I am trying to use the struts autocompleter tag: The default style of the autocompleter is quite rudimentary. The dropdown arrow is smaller than the textbox, and the suggestions are floating without any margin. Can you suggest any css style that I could add to make it look more like

issue with autocompleter tag

2008-10-16 Thread akash agrawal
Hi, I am trying to attach javascript event onkeypress with autocompleter tag but can't. I can't seem to attach any event for that matter. Can anyone throw any light on it? Please find my code details below. Thanks. My code: Javascript: function processKey(e) { if (null == e)

problem with submit value of autocompleter tag

2008-09-12 Thread Gawain Hammond
I'm trying to use autocompleter with struts 2.1.2 to replace a select drop down with too many options, but on submission it seem autocompleter submits the listValue rather than the listKey. (The same params work fine with , I've had this same issue since 2.0.11.x) My jsp: Html Output: Gr

Re: Autocompleter tag fails when file tag is added

2008-06-17 Thread Struts Two
it first. - Original Message From: Struts Two <[EMAIL PROTECTED]> To: Struts Users Mailing List Sent: Monday, June 16, 2008 5:15:51 PM Subject: Autocompleter tag fails when file tag is added I have a page with a few autocompleter inputs as well as some textfield and text area

Autocompleter tag fails when file tag is added

2008-06-16 Thread Struts Two
I have a page with a few autocompleter inputs as well as some textfield and text area input fields. Everything upto this point was working fine till I added an extra file input field : (also added enctype="multipart/form-data") to my form as well. All my autocompleter have stopped functioning.

Re: Autocompleter tag issues

2008-06-16 Thread Craftyman
Thanks a lot, i'm just regret we can find easily this information in the documentation. I hope to find a solution to my last problem with s:autocopleter onUpdate statuts and my demo will be good :) 2008/6/16 Struts Two <[EMAIL PROTECTED]>: > Your "id" will be saved in "selectedUserKey". Add this

Re: Autocompleter tag issues

2008-06-16 Thread Struts Two
Your "id" will be saved in "selectedUserKey". Add this property in ur action and you will have the id for the username selected. __ Be smarter than spam. See how smart SpamGuard is at giving junk email the boot with the All-n

Re: Autocompleter tag issues

2008-06-16 Thread Craftyman
I have also a problem with the onchange attribute : http://www.mail-archive.com/user@struts.apache.org/msg76830.html May new but more important problem is to save the idvalue after the submit. Indeed i'm just get the value : ... When I submit my form I'm get the userName (listValue) but I wa

Re: Autocompleter tag issues

2008-06-16 Thread Struts Two
Where and how do you listen for the topics. I have currently 4 autocompleter boxes hooked together using notify and listen attributes [though I am using 2.0.11.1, and it seems you are using 2.1.x]. If it is of any help here is my code: On every change being made in my first autocompleter, the

Autocompleter tag issues

2008-06-16 Thread Jukka Välimaa
Hi all, I'm trying to use struts 2 autocompleter tag, and having trouble doing so. My first problem is that valueNotifyTopics attribute works only incompletely. When I've written something in the text field, even one letter is sufficient, and pick the first option from the filtered

Re: dafault value in autocompleter tag

2007-08-26 Thread Pedro Herrera
gt; >> Ece >> >> >> Pedro Herrera wrote: >>> >>> I´m using displaytag to paging and I need to put a default value in >>> autocompleter tag when page is changed, >>> >>> How I can do this ? >>> >>>

Re: dafault value in autocompleter tag

2007-08-26 Thread ece
Herrera wrote: >> >> I´m using displaytag to paging and I need to put a default value in >> autocompleter tag when page is changed, >> >> How I can do this ? >> >> Herrera >> > > -- View this message in context: http://www.nabble.com/d

Re: dafault value in autocompleter tag

2007-08-26 Thread ece
Hi Herrera, Could you find a solution for this problem ? Ece Pedro Herrera wrote: > > I´m using displaytag to paging and I need to put a default value in > autocompleter tag when page is changed, > > How I can do this ? > > Herrera > -- View this m

dafault value in autocompleter tag

2007-08-14 Thread Pedro Herrera
I´m using displaytag to paging and I need to put a default value in autocompleter tag when page is changed, How I can do this ? Herrera -- View this message in context: http://www.nabble.com/dafault-value-in-autocompleter-tag-tf4269804.html#a12152528 Sent from the Struts - User mailing list

Re: autocompleter tag

2007-03-03 Thread Musachy Barroso
;3" (3 by default anyway) musachy On 3/3/07, Guillaume Carré <[EMAIL PROTECTED]> wrote: A few questions about the autocompleter tag: - If the action called from the autocompleter tag (href attribute) loads thousands of items from the database, I want to be able to restrict the return

autocompleter tag

2007-03-03 Thread Guillaume Carré
A few questions about the autocompleter tag: - If the action called from the autocompleter tag (href attribute) loads thousands of items from the database, I want to be able to restrict the returned results to what the user types in. So I set the formId attribute of the tag to the form id of the

Re: [S2] the autocompleter tag - the href value

2006-12-15 Thread Dariusz Wojtas
Works perfectly now. Most likely maven had issues with the compiling struts2 code into the same directories as eclipse. After I pointed eclipse to compile into separate directories - maven started to work as expected. Thanks for help Darek On 12/15/06, Musachy Barroso <[EMAIL PROTECTED]> wrote

Re: [S2] the autocompleter tag - TLD out of sync

2006-12-14 Thread Musachy Barroso
e this myslef, if I get an example running I will post it on the wiki. regards musachy Dariusz Wojtas wrote: Hello, I am using the latest Struts 2.0.2 build from repository. This time I am trying to use the autocompleter tag. The showcase example shows it's basic usage, looks promisin

Re: [S2] the autocompleter tag - the href value

2006-12-14 Thread Dariusz Wojtas
I have the latest sources. And I am sure I placed the JAR file build an hour ago in my app. But it is possible that something is wrong with the way it produces the JAR file for me. I have sources of struts2 and xwork in one parent dir, I execute ant as described by the struts2 maven build page, b

Re: [S2] the autocompleter tag - the href value

2006-12-14 Thread Musachy Barroso
Showcase is working and it has this: Are you working with head svn? Because it was behaving as you say(wrong) a few days ago. musachy Dariusz Wojtas wrote: I tried the 'url' way first, but it did not work for me. 'url' but it creates links with double application context in front for autoc

Re: [S2] the autocompleter tag - the href value

2006-12-14 Thread Dariusz Wojtas
This is the result of autocomplete for b) and c) the dataUrl is wrong, one '/esu' too much. At the same time A which uses the same 'url' identifier produces correct link A Dariusz Wojtas On 12/14/06, Dariusz Wojtas <[EMAIL PROTECTED]> wrote: I tried the 'url' way first, but it did not wo

Re: [S2] the autocompleter tag - the href value

2006-12-14 Thread Dariusz Wojtas
I tried the 'url' way first, but it did not work for me. 'url' but it creates links with double application context in front for autocompletes. samples b) and c) show this. Dariusz Wojtas On 12/14/06, Musachy Barroso <[EMAIL PROTECTED]> wrote: You need to use the "url" tag to construct the "hre

Re: [S2] the autocompleter tag - the href value

2006-12-14 Thread Musachy Barroso
You need to use the "url" tag to construct the "href" for all the ajaxtags. musachy Dariusz Wojtas wrote: I have found possible other problem: To show it I have created 3 similar autocompletes, differing only in href. They all should load data from action '/listy/kontrahenci.action' and the '

Re: [S2] the autocompleter tag - the href value

2006-12-14 Thread Dariusz Wojtas
I have found possible other problem: To show it I have created 3 similar autocompletes, differing only in href. They all should load data from action '/listy/kontrahenci.action' and the '/esu' application prefix. That should result in link to: '/esu/listy/kontrahenci.action' sample a) works this

Re: [S2] the autocompleter tag - TLD out of sync

2006-12-14 Thread Dariusz Wojtas
i.apache.org/confluence/display/S2WIKI/Ajax+Tags I haven't tried to make it work like this myslef, if I get an example running I will post it on the wiki. regards musachy Dariusz Wojtas wrote: > Hello, > > I am using the latest Struts 2.0.2 build from repository. > > This time I am

Re: [S2] the autocompleter tag - TLD out of sync

2006-12-14 Thread Musachy Barroso
running I will post it on the wiki. regards musachy Dariusz Wojtas wrote: Hello, I am using the latest Struts 2.0.2 build from repository. This time I am trying to use the autocompleter tag. The showcase example shows it's basic usage, looks promising. But there are some issues. *) ho

[S2] the autocompleter tag - TLD out of sync

2006-12-14 Thread Dariusz Wojtas
Hello, I am using the latest Struts 2.0.2 build from repository. This time I am trying to use the autocompleter tag. The showcase example shows it's basic usage, looks promising. But there are some issues. *) how to reload the contents of the tag while the user is typing? is it pos