<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://blog.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel">
    <title>gmane.comp.lang.javascript.qooxdoo.devel</title>
    <link>http://blog.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41878"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41877"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41876"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41875"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41874"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41873"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41872"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41871"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41870"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41869"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41868"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41867"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41866"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41865"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41864"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41863"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41862"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41861"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41860"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41859"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41878">
    <title>Re: Grid colspan does not allocate space properly</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41878</link>
    <description>&lt;pre&gt;Hello Daniel,


I think I didn't explain very well.

Initially, in your example:
w1 = 150
w2 = 50
w3 = 200
-&amp;gt; so (columns 1 + column 2) widths = 200   = max(w1 + w2, w3)

If you set w3 = 400, you should have  (columns 1 + column 2) widths =
400   = max(w1 + w2, w3)
BUT YOU STILL HAVE 200

Is that right ?

If you put the following code in the playground, there is your initial
example, plus one for the rowspan.
Concerning the rowspan, if you augment height of w6, row1+row2 height augment.

So the behaviour between colspan and rowspan differs.

I hope I have being clear now ?

/////////////////////////////////

var container = new qx.ui.container.Composite(new qx.ui.layout.VBox());
this.getRoot().add(container);

var cont1 = new qx.ui.container.Composite(new qx.ui.layout.Grid());
container.add(cont1);

var w1 = new qx.ui.core.Widget();
w1.set({
  backgroundColor: "red",
  width: 150
});
cont1.add(w1, {row: 0, column: 0});

var w2 = new qx.ui.core.Widget();
w2.set({
  backgroundColor: "green",
  width: 50
});
cont1.add(w2, {row: 0, column: 1});

var w3 = new qx.ui.core.Widget();
w3.set({
  backgroundColor: "blue",
  width: 400
});
cont1.add(w3, {row: 1, column: 0, colSpan: 2});

// rowspan
//
var cont2 = new qx.ui.container.Composite(new qx.ui.layout.Grid());
container.add(cont2);

var w4 = new qx.ui.core.Widget();
w4.set({
  backgroundColor: "red",
  width: 50,
  height: 50
});
cont2.add(w4, {row: 0, column: 0});

var w5 = new qx.ui.core.Widget();
w5.set({
  backgroundColor: "green",
  width: 50,
  height: 50
});
cont2.add(w5, {row: 1, column: 0});

var w6 = new qx.ui.core.Widget();
w6.set({
  backgroundColor: "blue",
  width: 50,
  height: 100
});
cont2.add(w6, {row: 0, column: 1, rowSpan: 2});

/////////////////////////////////

regards,

Cyrille

On Thu, May 24, 2012 at 5:00 PM, Daniel Wagner &amp;lt;daniel.wagner&amp;lt; at &amp;gt;1und1.de&amp;gt; wrote:

------------------------------------------------------------------------------
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/
&lt;/pre&gt;</description>
    <dc:creator>cyrille rigault</dc:creator>
    <dc:date>2012-05-24T15:22:10</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41877">
    <title>Re: Grid colspan does not allocate space properly</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41877</link>
    <description>&lt;pre&gt;Hi,

no matter what I change the width of w3 to, it stretches to fill out the 
row.

Regards,
Daniel

On 05/23/2012 07:29 PM, cyrille rigault wrote:

------------------------------------------------------------------------------
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/
&lt;/pre&gt;</description>
    <dc:creator>Daniel Wagner</dc:creator>
    <dc:date>2012-05-24T15:00:15</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41876">
    <title>Re: Question about fixating columns in a table</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41876</link>
    <description>&lt;pre&gt;Super, thank you for the quick reply

Best regards,
Jeroen

From: thron7 [mailto:thomas.herchenroeder&amp;lt; at &amp;gt;1und1.de]
Sent: Thursday, May 24, 2012 3:54 PM
To: qooxdoo Development
Subject: Re: [qooxdoo-devel] Question about fixating columns in a table

You are looking for meta-columns [1][2].

T.

[1] http://manual.qooxdoo.org/1.6.x/pages/widget/table.html?highlight=meta
[2] http://demo.qooxdoo.org/1.6.x/apiviewer/#qx.ui.table

On 05/24/2012 03:00 PM, Jeroen Smit wrote:
Hi,

I was wondering if it is possible to fixate a column in a table  so when scrolling horizontally all columns up and including to that column stay in place.
Like in Excel for example.

Best regards,
Jeroen






------------------------------------------------------------------------------

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

qooxdoo-devel&amp;lt; at &amp;gt;lists.sourceforge.net&amp;lt;mailto:qooxdoo-devel&amp;lt; at &amp;gt;lists.sourceforge.net&amp;gt;

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
qooxdoo-devel&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
&lt;/pre&gt;</description>
    <dc:creator>Jeroen Smit</dc:creator>
    <dc:date>2012-05-24T14:37:29</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41875">
    <title>Re: Question about fixating columns in a table</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41875</link>
    <description>&lt;pre&gt;You are looking for meta-columns [1][2].

T.

[1] http://manual.qooxdoo.org/1.6.x/pages/widget/table.html?highlight=meta
[2] http://demo.qooxdoo.org/1.6.x/apiviewer/#qx.ui.table

On 05/24/2012 03:00 PM, Jeroen Smit wrote:
------------------------------------------------------------------------------
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
qooxdoo-devel&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
&lt;/pre&gt;</description>
    <dc:creator>thron7</dc:creator>
    <dc:date>2012-05-24T13:53:43</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41874">
    <title>Question about fixating columns in a table</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41874</link>
    <description>&lt;pre&gt;Hi,

I was wondering if it is possible to fixate a column in a table  so when scrolling horizontally all columns up and including to that column stay in place.
Like in Excel for example.

Best regards,
Jeroen

------------------------------------------------------------------------------
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
qooxdoo-devel&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
&lt;/pre&gt;</description>
    <dc:creator>Jeroen Smit</dc:creator>
    <dc:date>2012-05-24T13:00:17</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41873">
    <title>Re: Error in documentation</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41873</link>
    <description>&lt;pre&gt;Hey,
Thanks for the pointer. Fixed that right away.
Martin

Am 23.05.2012 um 20:06 schrieb fprijate:


------------------------------------------------------------------------------
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
qooxdoo-devel&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
&lt;/pre&gt;</description>
    <dc:creator>Martin Wittemann</dc:creator>
    <dc:date>2012-05-24T06:09:20</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41872">
    <title>Re: "built" version not acting like "source" version. Parent sub-element not found.</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41872</link>
    <description>&lt;pre&gt;Hey,
The problem is in the application code, as you can see in the following lines:

You are accessing a variable starting with two underscores. That means that its a private variable of your parent object. In the source version, there is no way to prevent such a call, even if it should not be possible to access privates at all. Using the build version, an optimization step reduces the names in length to save some byte in the code and with that, the original name is gone and can not be accessed anymore.

Regards,
Martin
------------------------------------------------------------------------------
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/
&lt;/pre&gt;</description>
    <dc:creator>Martin Wittemann</dc:creator>
    <dc:date>2012-05-24T06:06:51</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41871">
    <title>"built" version not acting like "source" version. Parent sub-element not found.</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41871</link>
    <description>&lt;pre&gt;I think I found a juicy bug!

I filed a bug for this.  http://bugzilla.qooxdoo.org/show_bug.cgi?id=6442

Here's my code snippet, in a handler for a cellClick in a table:
      var handleCellClick = function(e) {
        if (e.getColumn() == 2) {
          var group_task_id = tableModel.getRowData(e.getRow())[0];
          var mainTabs = qx.core.Init.getApplication().getUserData("mainTabs");
          mainTabs.openOrSelectGroupTaskDetailTab(group_task_id);
        }
        if (e.getColumn() == 7) {
          var group_task_id = tableModel.getRowData(e.getRow())[0];
          var req = new qx.io.request.Xhr("/group_task/"+group_task_id);
          req.setMethod("DELETE");
          req.addListener("success", function(e) {
            this.resetSelection();
            this.setFocusedCell();
              var parent = this.getLayoutParent();
              console.log('point a');
              parent.__GroupsQueuedTasksTable.kickReload();
              console.log('point b');
              parent.__GroupsCompletedTasksTable.kickReload();
            }, this);
          req.send();
        }
      };
When I hit the source area, the kickReload between "point a" and "point b"
works fine.
After I do a generate.py build, the kickReload generates an error on the
console:
Uncaught TypeError: Cannot call method 'kickReload' of undefined

This happens on Windows 7 and Ubuntu 10.04 in Firefox 12.0 and Chrome
19.0.1084.46 m.

Am I missing anything?
"It just ain't right!"

Scott
------------------------------------------------------------------------------
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
qooxdoo-devel&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
&lt;/pre&gt;</description>
    <dc:creator>Scott Chapman</dc:creator>
    <dc:date>2012-05-23T23:56:53</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41870">
    <title>Re: Memory Management Questions</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41870</link>
    <description>&lt;pre&gt;Well, I fail at gmail too apparently. I hit "Send" too quickly and forgot
to specify the subject.

Thanks for the reply. I have modified my code to hide rather than destroy
standard dialog boxes.

On Tue, May 22, 2012 at 5:53 PM, Tobias Oetiker &amp;lt;tobi&amp;lt; at &amp;gt;oetiker.ch&amp;gt; wrote:

------------------------------------------------------------------------------
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
qooxdoo-devel&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
&lt;/pre&gt;</description>
    <dc:creator>Gary Daniels</dc:creator>
    <dc:date>2012-05-23T22:59:50</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41869">
    <title>Re: qx.io.request.Xhr() empty responseContent</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41869</link>
    <description>&lt;pre&gt;Hello,

i have found my problem:

var req = new qx.bom.request.Xhr();
req.open ...

The problem was:

You need in the response header from the server on every Method:

Access-Control-Allow-Origin *
Access-Control-Allow-Methods POST, GET, OPTIONS
Access-Control-Allow-Headers content-type

If you return this on every method, it will be successfully.

Thanks.

Am 2012-05-22 19:54, schrieb Open Infrastructure Manager:

------------------------------------------------------------------------------
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/
&lt;/pre&gt;</description>
    <dc:creator>Open Infrastructure Manager</dc:creator>
    <dc:date>2012-05-23T21:17:16</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41868">
    <title>Error in documentation</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41868</link>
    <description>&lt;pre&gt;Hi

In API documentation for qx.data.SingleValueBinding 
options map  has following options:

{ converter,
  onUpdate,
  onSetFail
} 

In manual : 

{ converter,
  onSetOk,        &amp;lt;----- ERROR
  onSetFail
} 

Franček

--
View this message in context: http://qooxdoo.678.n2.nabble.com/Error-in-documentation-tp7573939.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
qooxdoo-devel&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
&lt;/pre&gt;</description>
    <dc:creator>fprijate</dc:creator>
    <dc:date>2012-05-23T18:06:41</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41867">
    <title>Re: Grid colspan does not allocate space properly</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41867</link>
    <description>&lt;pre&gt;Hello Daniel,

I think any browser reproduces the problem (In my case, last version
of Chomium and Firefox on Linux). I tested the problem on qooxdoo 2.0,
1.6, 1.5 and 1.4.

On your example, just change w3 width to 300 or 400 for instance.
Nothing changes, as it could.

Tell me if you are able to reproduce the problem. I think I fix the
bug on Grid.js.

Best regards,

Cyrille

On Wed, May 23, 2012 at 5:36 PM, Daniel Wagner &amp;lt;daniel.wagner&amp;lt; at &amp;gt;1und1.de&amp;gt; wrote:

------------------------------------------------------------------------------
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/
&lt;/pre&gt;</description>
    <dc:creator>cyrille rigault</dc:creator>
    <dc:date>2012-05-23T17:29:01</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41866">
    <title>Re: Grid colspan does not allocate space properly</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41866</link>
    <description>&lt;pre&gt;Hi Cyrille,

I can't reproduce the problem in the GridComplex demo in either qooxdoo 
1.6 or devel. Which qooxdoo version and browser are you using?

I've created a simplified Playground example:

http://tinyurl.com/7t5e3gc

Are you seeing the same issue here?


Regards,
Daniel

On 05/22/2012 08:53 AM, cyrille rigault wrote:

------------------------------------------------------------------------------
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/
&lt;/pre&gt;</description>
    <dc:creator>Daniel Wagner</dc:creator>
    <dc:date>2012-05-23T15:36:37</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41865">
    <title>Re: Conditional compiles</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41865</link>
    <description>&lt;pre&gt;Well, that's nice.
Thank you.
Connor

Am 23.05.2012 09:55, schrieb Daniel Wagner:


------------------------------------------------------------------------------
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/
&lt;/pre&gt;</description>
    <dc:creator>Connor</dc:creator>
    <dc:date>2012-05-23T15:05:10</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41864">
    <title>Re: Using a qx.ui.basic.Atom as a widget for the UploadMgr</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41864</link>
    <description>&lt;pre&gt;Hi Omni,

I'm not 100% but I don't think so because of security concerns in the
browser, i.e. the user must explicitly select any file which is to be
uploaded and the only mechanism to allow selection is by having an
input[file].  

Re restricting selected files to *.pdf or similar: in theory, the input
element has an "accept" attribute that allows you to filter based on MIME
type, but AIUI this is only supported on Opera.

John

On 23/05/2012 07:58, "omrihar" &amp;lt;omrihar&amp;lt; at &amp;gt;gmail.com&amp;gt; wrote:





------------------------------------------------------------------------------
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/
&lt;/pre&gt;</description>
    <dc:creator>John Spackman</dc:creator>
    <dc:date>2012-05-23T12:03:54</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41863">
    <title>Re: Question about datefield, dateFormat and invalid state</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41863</link>
    <description>&lt;pre&gt;Hi Benjamin,

validation isn't handled by the form widgets themselves, you'll need a 
form validation manager for that. See the demo for an example:

http://demo.qooxdoo.org/current/demobrowser/#ui~FormValidator.html

For a DateField, the validator function simply needs to check that the 
value isn't null.


Regards,
Daniel

On 05/22/2012 04:19 PM, Benjamin Dreux wrote:

------------------------------------------------------------------------------
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/
&lt;/pre&gt;</description>
    <dc:creator>Daniel Wagner</dc:creator>
    <dc:date>2012-05-23T09:20:29</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41862">
    <title>Re: Conditional compiles</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41862</link>
    <description>&lt;pre&gt;Hi Connor,

yes, the feature is named "variant optimization" and works on 
environment settings. In the framework classes, you'll frequently see 
code like this:

if (qx.core.Environment.get("qx.debug")) {
   // debugging code
}

For the build version, the key "qx.debug" is set to false in the 
configuration, so the generator will remove the entire block. This also 
works for user-defined environment settings.

See the manual for details:
http://manual.qooxdoo.org/current/pages/tool/generator_optimizations.html#variants


Regards,
Daniel

On 05/23/2012 09:35 AM, Connor wrote:

------------------------------------------------------------------------------
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/
&lt;/pre&gt;</description>
    <dc:creator>Daniel Wagner</dc:creator>
    <dc:date>2012-05-23T07:55:47</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41861">
    <title>Re: Conditional compiles</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41861</link>
    <description>&lt;pre&gt;http://manual.qooxdoo.org/1.6.x/pages/core/environment.html#removal-of-code

You can utilize the qx.debug environment key.

T.

On 05/23/2012 09:35 AM, Connor wrote:

------------------------------------------------------------------------------
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/
&lt;/pre&gt;</description>
    <dc:creator>thron7</dc:creator>
    <dc:date>2012-05-23T07:55:20</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41860">
    <title>Conditional compiles</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41860</link>
    <description>&lt;pre&gt;Hi,

Does qooxdoo support something like conditional compiles ?
If I have for example some debug code, that I don't want to see in my
final build.

Connor.


------------------------------------------------------------------------------
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/
&lt;/pre&gt;</description>
    <dc:creator>Connor</dc:creator>
    <dc:date>2012-05-23T07:35:29</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41859">
    <title>Re: Strange binding</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41859</link>
    <description>&lt;pre&gt;Hi

Thanks
You are right.

It works if different properties have different names ( no need for changeX
name)

properties :
{  p1: {
       init : "P1",
      event  : "bla"
   },

  p2: {
       init : "P2",
       event  : "tra"
   }
}

It works even if two poperties have same event name :

properties :
{  p1: {
       init : "P1",
      event  : "bla"
   },

  p2: {
       init : "P2",
       event  : "bla"
   }
}

In that case the order of assignement is important

Franček




   


--
View this message in context: http://qooxdoo.678.n2.nabble.com/Strange-binding-tp7571696p7572897.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
qooxdoo-devel&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
&lt;/pre&gt;</description>
    <dc:creator>fprijate</dc:creator>
    <dc:date>2012-05-23T07:33:24</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41858">
    <title>Re: Using a qx.ui.basic.Atom as a widget for theUploadMgr</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/41858</link>
    <description>&lt;pre&gt;Hi John,

Is there a way to simply launch the file browse dialog without any button? I
don't mind using my Atom and in the click event simply calling something
like uploader.getFile() or something similar... 
That way, there is no need to solve the input[type=file] browser
incompatibility problem. 

Thanks,
Omri

P.S - perhaps this can also allow to limit the file upload to certain
filetypes (if it is possible to implement), using uploader.getFile("PDF
Files|*.pdf") or something similar...

--
View this message in context: http://qooxdoo.678.n2.nabble.com/Using-a-qx-ui-basic-Atom-as-a-widget-for-the-UploadMgr-tp7569013p7572874.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/
&lt;/pre&gt;</description>
    <dc:creator>omrihar</dc:creator>
    <dc:date>2012-05-23T06:58:12</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.lang.javascript.qooxdoo.devel">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.lang.javascript.qooxdoo.devel</link>
  </textinput>
</rdf:RDF>

