Daniel Wagner,

Thank you, it works.

Daniel Salvadori

On Mon, Sep 10, 2012 at 11:52 PM, <
[email protected]> wrote:

> Send qooxdoo-devel mailing list submissions to
>         [email protected]
>
> To subscribe or unsubscribe via the World Wide Web, visit
>         https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
> or, via email, send a message with subject or body 'help' to
>         [email protected]
>
> You can reach the person managing the list at
>         [email protected]
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of qooxdoo-devel digest..."
>
>
> Today's Topics:
>
>    1. Re: Table Row Strike-through (franck34)
>    2. Re: mobile sdk generate.py distclean (Ed Adasiewicz)
>    3. Re: question about popup and qx.ui.tree.VirtualTree
>       (Martin Wittemann)
>    4. How to add "x-webkit-speech" attribute to text    field?
>       (qooxdoo Desktop) (Daniel Salvadori)
>    5. Re: question about popup and qx.ui.tree.VirtualTree (rsantiagopaz)
>    6. Re: TextArea in Double renderer (Rafael Chaves)
>    7. Re: TextArea in Double renderer (Martin Wittemann)
>    8. Re: How to add "x-webkit-speech" attribute to text field?
>       (qooxdoo Desktop) (Daniel Wagner)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Mon, 10 Sep 2012 12:00:52 +0200
> From: franck34 <[email protected]>
> Subject: Re: [qooxdoo-devel] Table Row Strike-through
> To: qooxdoo Development <[email protected]>
> Message-ID:
>         <CA+Og+fQtyCZc=
> [email protected]>
> Content-Type: text/plain; charset="iso-8859-1"
>
> Thanks, I'm using it, it work like a charm.
>
> Now i'm looking the same thing but for all the row ;)
>
> On Tue, Jul 17, 2012 at 10:29 PM, csfahey <[email protected]> wrote:
>
> > var factory = new qx.ui.table.cellrenderer.Dynamic(factoryFunc);
> > tcm.setDataCellRenderer( 0, factory );
> > var factoryFunc = function (cellInfo)
> > {
> >      var renderer = new qx.ui.table.cellrenderer.Replace();
> >      cellInfo.style +=
> > ";color:grey;font-style:italic;text-decoration:line-through;";
> >      return renderer;
> > }
> >
> -------------- next part --------------
> An HTML attachment was scrubbed...
>
> ------------------------------
>
> Message: 2
> Date: Mon, 10 Sep 2012 06:33:16 -0700 (PDT)
> From: Ed Adasiewicz <[email protected]>
> Subject: Re: [qooxdoo-devel] mobile sdk generate.py distclean
> To: [email protected]
> Message-ID: <[email protected]>
> Content-Type: text/plain; charset=us-ascii
>
> bug 6796 has been submitted.
>
>
>
> --
> View this message in context:
> http://qooxdoo.678.n2.nabble.com/mobile-sdk-generate-py-distclean-tp7581281p7581293.html
> Sent from the qooxdoo mailing list archive at Nabble.com.
>
>
>
> ------------------------------
>
> Message: 3
> Date: Mon, 10 Sep 2012 17:20:59 +0200
> From: Martin Wittemann <[email protected]>
> Subject: Re: [qooxdoo-devel] question about popup and
>         qx.ui.tree.VirtualTree
> To: qooxdoo Development <[email protected]>
> Message-ID: <[email protected]>
> Content-Type: text/plain; charset="us-ascii"
>
> Hey,
> thats a bit tricky because usually the virtual tree is totally model
> based. But there is a trick you can use:
>
> virtualTree.getPane().getLayers()[0].getChildren().forEach(function(child)
> {
> if (child.hasState("selected")) {
> // thats your widget
> };
> })
>
> As you see, you need to rely on some more or less internals. This might be
> worth a bug because your described use case is totally valid.
> Regards,
> Martin
>
>
> Am 08.09.2012 um 15:05 schrieb rsantiagopaz <[email protected]
> <mailto:[email protected]>>:
>
>
> Hi. sorry my english
>
> Im working with qx.ui.tree.VirtualTree. And I need open a popup relative to
> a node, with popup.placeToWidget(node, false);. How can I get the selected
> node widget?
> (or with placeToElement or placeToPoint, but how?)
>
> thanks
>
>
>
> --
> View this message in context:
> http://qooxdoo.678.n2.nabble.com/question-about-popup-and-qx-ui-tree-VirtualTree-tp7581282.html
> Sent from the qooxdoo mailing list archive at Nabble.com<http://Nabble.com
> >.
>
>
> ------------------------------------------------------------------------------
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond. Discussions
> will include endpoint security, mobile security and the latest in malware
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> _______________________________________________
> qooxdoo-devel mailing list
> [email protected]<mailto:
> [email protected]>
> https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
>
> -------------- next part --------------
> An HTML attachment was scrubbed...
>
> ------------------------------
>
> Message: 4
> Date: Mon, 10 Sep 2012 09:21:19 -0700
> From: Daniel Salvadori <[email protected]>
> Subject: [qooxdoo-devel] How to add "x-webkit-speech" attribute to
>         text    field? (qooxdoo Desktop)
> To: [email protected]
> Message-ID:
>         <
> cafpk_c6rg7st2rg5z9g4mb7k22_qdm-trgn8qfyo16mc8dz...@mail.gmail.com>
> Content-Type: text/plain; charset="iso-8859-1"
>
> Hey,
>
> I'm using qooxdoo Desktop and I want to add the "x-webkit-speech" input
> attribute to a text field.
> How can I do that?
>
> --
> Daniel Salvadori
> -------------- next part --------------
> An HTML attachment was scrubbed...
>
> ------------------------------
>
> Message: 5
> Date: Mon, 10 Sep 2012 10:49:06 -0700 (PDT)
> From: rsantiagopaz <[email protected]>
> Subject: Re: [qooxdoo-devel] question about popup and
>         qx.ui.tree.VirtualTree
> To: [email protected]
> Message-ID: <[email protected]>
> Content-Type: text/plain; charset=us-ascii
>
>
> thank for you time Martin. Work very well.
>
>
> Yesterday I found this solution, work fine for my case too. Until now I
> dont
> get any error, but I dont know if this example have any potential problems.
>
> http://tinyurl.com/ccf7v84
>
>
>
> --
> View this message in context:
> http://qooxdoo.678.n2.nabble.com/question-about-popup-and-qx-ui-tree-VirtualTree-tp7581282p7581296.html
> Sent from the qooxdoo mailing list archive at Nabble.com.
>
>
>
> ------------------------------
>
> Message: 6
> Date: Mon, 10 Sep 2012 20:24:52 -0700 (PDT)
> From: Rafael Chaves <[email protected]>
> Subject: Re: [qooxdoo-devel] TextArea in Double renderer
> To: [email protected]
> Message-ID: <[email protected]>
> Content-Type: text/plain; charset=us-ascii
>
> Done: http://bugzilla.qooxdoo.org/show_bug.cgi?id=6797
>
>
>
> --
> View this message in context:
> http://qooxdoo.678.n2.nabble.com/TextArea-in-Double-renderer-tp7581279p7581297.html
> Sent from the qooxdoo mailing list archive at Nabble.com.
>
>
>
> ------------------------------
>
> Message: 7
> Date: Tue, 11 Sep 2012 08:18:58 +0200
> From: Martin Wittemann <[email protected]>
> Subject: Re: [qooxdoo-devel] TextArea in Double renderer
> To: qooxdoo Development <[email protected]>
> Message-ID: <[email protected]>
> Content-Type: text/plain; charset="us-ascii"
>
> thanks. :)
>
> Am 11.09.2012 um 05:24 schrieb Rafael Chaves <[email protected]>:
>
> > Done: http://bugzilla.qooxdoo.org/show_bug.cgi?id=6797
> >
> >
> >
> > --
> > View this message in context:
> http://qooxdoo.678.n2.nabble.com/TextArea-in-Double-renderer-tp7581279p7581297.html
> > Sent from the qooxdoo mailing list archive at Nabble.com.
> >
> >
> ------------------------------------------------------------------------------
> > Live Security Virtual Conference
> > Exclusive live event will cover all the ways today's security and
> > threat landscape has changed and how IT managers can respond. Discussions
> > will include endpoint security, mobile security and the latest in malware
> > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > _______________________________________________
> > qooxdoo-devel mailing list
> > [email protected]
> > https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
>
>
>
>
> ------------------------------
>
> Message: 8
> Date: Tue, 11 Sep 2012 08:52:14 +0200
> From: Daniel Wagner <[email protected]>
> Subject: Re: [qooxdoo-devel] How to add "x-webkit-speech" attribute to
>         text field? (qooxdoo Desktop)
> To: [email protected]
> Message-ID: <[email protected]>
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
>
> Hi,
>
> you just need to set the attribute on the Content Element:
>
> var tf = new qx.ui.form.TextField();
> tf.getContentElement().setAttribute("x-webkit-speech", true);
>
> Or you can do the same in a derived class:
>
> qx.Class.define("mltest.TextField", {
>    extend : qx.ui.form.TextField,
>    members :
>    {
>      _createContentElement : function()
>      {
>        var el = this.base(arguments);
>        el.setAttribute("x-webkit-speech", true);
>        return el;
>      }
>    }
> });
>
>
> Regards,
> Daniel
>
> On 09/10/2012 06:21 PM, Daniel Salvadori wrote:
> > Hey,
> >
> > I'm using qooxdoo Desktop and I want to add the "x-webkit-speech" input
> > attribute to a text field.
> > How can I do that?
> >
> > --
> > Daniel Salvadori
> >
> >
> >
> ------------------------------------------------------------------------------
> > Live Security Virtual Conference
> > Exclusive live event will cover all the ways today's security and
> > threat landscape has changed and how IT managers can respond. Discussions
> > will include endpoint security, mobile security and the latest in malware
> > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> >
> >
> >
> > _______________________________________________
> > qooxdoo-devel mailing list
> > [email protected]
> > https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
> >
>
>
>
> ------------------------------
>
>
> ------------------------------------------------------------------------------
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond. Discussions
> will include endpoint security, mobile security and the latest in malware
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
>
> ------------------------------
>
> _______________________________________________
> qooxdoo-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
>
>
> End of qooxdoo-devel Digest, Vol 76, Issue 17
> *********************************************
>



-- 
Daniel Salvadori
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to