appearance="xxforms:autocomplete" not working in Repeat

classic Classic list List threaded Threaded
6 messages Options
Reply | Threaded
Open this post in threaded view
|

appearance="xxforms:autocomplete" not working in Repeat

Hasan
I am using Orbeon dev-post-3.7.1.201001012242.

I am trying to use xxforms:autocomplete inside xforms repeat. Without selection="open" incremental="true" appearance="xxforms:autocomplete" repeat is working fine but adding these attributes to select1 breaks the repeat and doesnt works.

<xforms:repeat bind="TagRepeatID" id="TagRepeat">
         <xforms:select1 bind="someID" selection="open" incremental="true" appearance="xxforms:autocomplete">
             <xforms:label>Name</xforms:label>
             <xforms:item>
              <xforms:label>Choose One...</xforms:label>
              <xforms:value/>
             </xforms:item>
              <xforms:itemset  bind="AreaId"> 
              <xforms:value bind="AreaNameId"/>
              <xforms:label bind="AreaLabel"/>
             </xforms:itemset>
            </xforms:select1>
</xforms:repeat>
           

Please suggest.        



Regards,
Hasan
Reply | Threaded
Open this post in threaded view
|

Re: appearance="xxforms:autocomplete" not working in Repeat

Hasan
Any suggestion on this one
Regards,
Hasan
Reply | Threaded
Open this post in threaded view
|

Re: Re: appearance="xxforms:autocomplete" not working in Repeat

Alessandro  Vernet
Administrator
Hasan,

Could you attach a full example, which is as simple as possible and
that shows this problem?

Alex

On Wed, Jun 23, 2010 at 9:45 PM, Hasan <[hidden email]> wrote:

>
> Any suggestion on this one
>
> -----
> Hasan
> --
> View this message in context: http://orbeon-forms-ops-users.24843.n4.nabble.com/appearance-xxforms-autocomplete-not-working-in-Repeat-tp2264102p2266482.html
> Sent from the Orbeon Forms (ops-users) mailing list archive at Nabble.com.
>
>
> --
> You receive this message as a subscriber of the [hidden email] mailing list.
> To unsubscribe: mailto:[hidden email]
> For general help: mailto:[hidden email]?subject=help
> OW2 mailing lists service home page: http://www.ow2.org/wws
>
>


--
Orbeon Forms - Web forms, open-source, for the Enterprise -
http://www.orbeon.com/
My Twitter: http://twitter.com/avernet


--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
OW2 mailing lists service home page: http://www.ow2.org/wws
--
Follow Orbeon on Twitter: @orbeon
Follow me on Twitter: @avernet
Reply | Threaded
Open this post in threaded view
|

Re: Re: appearance="xxforms:autocomplete" not working in Repeat

Hasan
I am using Orbeon 3.7.1. This is the autocomplete example that i created that contains a input field and a xforms select1 with appearance xxfomrs:autcomplete. The only issue with this that when i click on the options in the auto complete to get selected they dont. With Keyboard they get selected but something with the mouse the selection fails.autocomplete.xhtml
Regards,
Hasan
Reply | Threaded
Open this post in threaded view
|

Re: Re: Re: appearance="xxforms:autocomplete" not working in Repeat

Alessandro  Vernet
Administrator
Hasan,

The n4.nabble.com server on which the file you attached is hosted is
down right now, so I can't test your example. In the meantime, I can
recommend you use the new <fr:autocomplete> instead of the (now
deprecated) appearance="xxforms:autocomplete". Depending on what you
want to do, it works slightly differently, but hopefully will work
well for your use case. You can learn more about this on:

http://wiki.orbeon.com/forms/doc/developer-guide/xbl-components/autocomplete

Alex

On Wed, Jul 28, 2010 at 4:36 AM, Hasan <[hidden email]> wrote:

>
> I am using Orbeon 3.7.1. This is the autocomplete example that i created that
> contains a input field and a xforms select1 with appearance
> xxfomrs:autcomplete. The only issue with this that when i click on the
> options in the auto complete to get selected they dont. With Keyboard they
> get selected but something with the mouse the selection fails.
> http://orbeon-forms-ops-users.24843.n4.nabble.com/file/n2304803/autocomplete.xhtml
> autocomplete.xhtml
>
> -----
> Hasan
> --
> View this message in context: http://orbeon-forms-ops-users.24843.n4.nabble.com/appearance-xxforms-autocomplete-not-working-in-Repeat-tp2264102p2304803.html
> Sent from the Orbeon Forms (ops-users) mailing list archive at Nabble.com.
>
>
> --
> You receive this message as a subscriber of the [hidden email] mailing list.
> To unsubscribe: mailto:[hidden email]
> For general help: mailto:[hidden email]?subject=help
> OW2 mailing lists service home page: http://www.ow2.org/wws
>
>


--
Orbeon Forms - Web forms, open-source, for the Enterprise -
http://www.orbeon.com/
My Twitter: http://twitter.com/avernet


--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
OW2 mailing lists service home page: http://www.ow2.org/wws
--
Follow Orbeon on Twitter: @orbeon
Follow me on Twitter: @avernet
Reply | Threaded
Open this post in threaded view
|

Re: Re: Re: appearance="xxforms:autocomplete" not working in Repeat

Hasan
Thanks Alex

I am moving to xforms:autocomplete control now. I dropped using xforms:select1 with appearance xxforms:autocomplete as it has issues and depricated in version 3.8.1.

 Thanks
Regards,
Hasan