<?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://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel">
    <title>gmane.comp.lang.javascript.qooxdoo.devel</title>
    <link>http://permalink.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/18539"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18538"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18537"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18536"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18535"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18534"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18533"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18532"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18531"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18530"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18529"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18528"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18527"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18526"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18525"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18524"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18523"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18522"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18521"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18520"/>
      </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/18539">
    <title>Re: single/atomic setter for group properties?</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18539</link>
    <description>Hi Martin,

I don't know if property system is good for drawing pixels. Isn't
there a simplest way ? For example you can create method drawPixel(x,
y) that will do what you need.

Maybe I not understand your question and core developers will help you
much more:)

Cheers
- Petr

2008/12/3 Lars Martin &lt;lars.martin&lt; at &gt;itemis.de&gt;:

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/
</description>
    <dc:creator>Petr Kobalíček</dc:creator>
    <dc:date>2008-12-03T21:34:34</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18538">
    <title>single/atomic setter for group properties?</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18538</link>
    <description>Hi,

I newly subscribed the list because I'm currently developing a RAP 
custom widget and I do have some problems with the JavaScript 
counterpart of my Java implementation. This question is regarding 
qooxdoos property system. I'm sure I missed some important points.

My RAP widget passes an int[] named "pixel" to qooxdoo and the property 
system automatically call "setX" and "setY" to set the members from 
incoming int[] as below:

properties : {

x : {
apply : "_drawPixel",
init : null
},

y : {
apply : "_drawPixel",
init : null
},

pixel : {
check : "Array",
group : [ "x", "y" ]
}
},

members : {
_drawPixel : function(value, old) {
// draw a pixel at [x,y]
},
...
}

My question is: how can I ensure a single or atomic setter for grouped 
properties? If I want to draw a point at [x,y] how can I ensure that the 
_drawPixel method is called only once. Better said: is called only when 
property x AND y is initialized? Is there something like?

pixel : {
check : "Array",
group :</description>
    <dc:creator>Lars Martin</dc:creator>
    <dc:date>2008-12-03T21:26:58</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18537">
    <title>request.setFormField question</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18537</link>
    <description>Hi,

I'm using io.request.setFormField to pass couple of key/value to the  
backend.
It work fine for simple value like name of a person.

Now, I have to pass the equivalent of an HTML multiple select, how do  
I use (encode ?) that using the request ?
Should I use setFormField method ? If yes, what is the convention for  
the key (vId) or the value (vValue) ?

Thanks !


-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/
</description>
    <dc:creator>Jean-Baptiste BRIAUD -- Novlog</dc:creator>
    <dc:date>2008-12-03T20:53:51</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18536">
    <title>Re: Creating a printable page</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18536</link>
    <description>Hi Stefan,

I thought of doing something like that but that would require
duplicating some logic on the backend (in C++) which is already on the
browser side (in javascript) to generate the report.  I am most likely
going to be going that route in the future but I was hoping to avoid
doing this initially as it would require more time than I really have to
work on this app.

Thanks

Eric

On 12/3/2008 11:24 AM, Stefan Volbers wrote:
results.
in
afraid



-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/
</description>
    <dc:creator>Dacquay, Eric</dc:creator>
    <dc:date>2008-12-03T19:07:50</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18535">
    <title>[PATCH] Minor documentation issues in Remote table model</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18535</link>
    <description>
Few minor documentation fixes for legacy branch:

 * Introduction paragraph slightly rewritten
   * Idea was to make the somehow confuse text a bit more but of course this
is arguable
 * Typo: "asynchroniously" --&gt; "asynchronously" (fixed during paragraph
rework)
 * Typo: "resently" --&gt; "recently"
 * Apparently deceiving information: "clearCacheOnRemove" property
   * "If false the rows are removed"... --&gt; "If true the rows are
removed"...
   * I've looked into the code before changing this but please confirm if I
missed something
 * Typo: "removeRow" method
   * "Removes a rows from the model." --&gt; "Removes a row from the model."

http://www.nabble.com/file/p20817355/Remote-FewDocumentationIssues.patch
Remote-FewDocumentationIssues.patch 

Although this was created from the legacy (0.7.x) branch, just checked that
the trunk also shares this code, although I haven't attempted to apply the
patch there (it may not apply cleanly to the trunk, specially because folder
structure is different).

Hope this helps,
</description>
    <dc:creator>Helder Magalhães</dc:creator>
    <dc:date>2008-12-03T17:17:45</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18534">
    <title>Re: Creating a printable page</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18534</link>
    <description>Hi Eric,

not quite the same thing but somewhat comparable:
having to produce a printable report out of my qooxdoo app, I have an 
event listener on a clickable button which opens an external native 
browser window with the location of a (PHP-) script like

var reportbutton = new qx.ui.form.Button("Create report");
reportbutton.addListener("execute", function() {
   var url = "http://" + location.host + reportpath +
     "report.php?target=" + target;
   window.open(url, "_blank");
}, this);

This in turn (mis-)uses my RPC classes to retrieve the database 
information needed in the report and thus creates a PDF from the results.

So I'm creating the external page not with qooxdoo, but with PHP, and 
the result is not HTML, but PDF. Nonetheless I get printable results in 
an external page.
I am sure anything similar could be achieved with any server scripting 
language like Perl or Java or Ruby or whatever.

If you definitely need to create the page with qooxdoo means, I'm afraid 
I can't help you there - I a</description>
    <dc:creator>Stefan Volbers</dc:creator>
    <dc:date>2008-12-03T16:24:47</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18533">
    <title>Creating a printable page</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18533</link>
    <description>-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel&lt; at &gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
</description>
    <dc:creator>Dacquay, Eric</dc:creator>
    <dc:date>2008-12-03T15:29:26</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18532">
    <title>Re: Retrieving Properties "check" value</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18532</link>
    <description>Hi Guilherme,

Guilherme Aiolfi wrote:
In the build version you'll get the same result. What I meant is that in 
the build version these checks aren't executed. So you won't get any 
warning/error if you hand in an integer value to a property which only 
accepts strings. These warnings will only be displayed in the source 
version. Nevertheless, the keys of the properties are present.

I've tested it :)

cheers,
   Alex



-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/
</description>
    <dc:creator>Alexander Back</dc:creator>
    <dc:date>2008-12-03T14:33:41</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18531">
    <title>Re: 0.7 to 0.8 corresponding classes and methods!!</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18531</link>
    <description>Gaurav Jauhri schrieb:
The functionality of the TreeRowStructure has been merged into the 
TreeItem class. Please take a look at the "Tree columns" demo in the 
demo browser how to use it 
&lt;http://demo.qooxdoo.org/current/demobrowser/#widget~Tree_Columns.html&gt;. 
This is pretty much like the old TreeRowStructure.

Best Fabian




</description>
    <dc:creator>Fabian Jakobs</dc:creator>
    <dc:date>2008-12-03T14:29:28</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18530">
    <title>Re: Retrieving Properties "check" value</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18530</link>
    <description>-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel&lt; at &gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
</description>
    <dc:creator>Guilherme Aiolfi</dc:creator>
    <dc:date>2008-12-03T14:11:16</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18529">
    <title>Re: Selenium</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18529</link>
    <description>Hi again,

So, no one has successfully used Selenium RC on Mac (all locally) ?

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/
</description>
    <dc:creator>Jean-Baptiste BRIAUD -- Novlog</dc:creator>
    <dc:date>2008-12-03T12:20:34</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18528">
    <title>Re: No fancy table structure in qooxdoo?</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18528</link>
    <description>
Thx, Jean-Baptiste. Hmmm. I forgot to mention that this table has a 
Remote data model behind it, so I need the table to automatically map 
from JSON data to table cells where I can specify variable numbers of 
rows/columns.

Or punt and have the data model serve HTML as data to a one-column table 
with an HTML Cell renderer.

But you have given me an hybrid idea: JSON data, custom cell renderer to 
  build a grid... ah, maybe not: looks like the only candidate is 
Abstract and that wants me to generate HTML and qx.HTML does not do tables.

Send in the long snapper. :)

cheers, kenny

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/
</description>
    <dc:creator>Kenny Tilton</dc:creator>
    <dc:date>2008-12-03T11:21:03</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18527">
    <title>Re: Events - stopPropogation() not working as it should</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18527</link>
    <description>Hi Amit,

First of all "stopPropagation" is only supposed to be used in events, 
which bubble up the widget hierarchy, like mouse and key events. Many 
events like property change or selection events don't bubble. 
"changeSelected" is one of those non bubbling events.  Even if it was 
bubbling, "stopPropagation()" would not do what you describe. Even if 
you call it, it will run all event listeners on the current event 
target. Only event target up the widget hierarchy will be skipped. This 
is how "stopPropagation()" works natively in the browser as well.

Quote from the W3C event spec:
&lt;http://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-flow-bubbling&gt;

"Any event handler may choose to prevent further event propagation by 
calling the stopPropagation method of the Event interface. If any 
EventListener calls this method, all additional EventListeners on the 
current EventTarget will be triggered but bubbling will cease at that 
level. Only one call to stopPropagation is required to prevent further 
</description>
    <dc:creator>Fabian Jakobs</dc:creator>
    <dc:date>2008-12-03T10:59:09</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18526">
    <title>Events - stopPropogation() not working as it should</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18526</link>
    <description>Hi,

I am using the "changeSelected" event on qx.ui.tabview.TabView.
Now, when I write e.stopPropagation(); in my event listener function, 
Firebug gives an error stating :
Assertion error! Cannot stop propagation on a non bubbling event: 
changeSelected: Called assertTrue with 'false'

I made my event as a bubbling event as e.setBubbles(true); and then 
called e.stopPropagation();. Now, I don't get any error but my event 
lister gets called twice.

My tabview initially has 2 tabs - Actual and dummy. The eventlistener is 
set on Tabview and the Actual tab is selected by default. When the dummy 
tab is clicked, my eventlistener checks which tab is clicked (based on 
page label). If dummy is clicked, it deletes the dummy tab, adds a new 
tab and then inserts dummy to its end (functionality similar to that in 
IE7).

If I write e.stopPropagation(), I get the desired functionality but with 
errors in Firebug. If I don't write e.stopPropagation() or I write 
e.setBubbles(true); e.stopPropagation();, then on click</description>
    <dc:creator>Amit Rana</dc:creator>
    <dc:date>2008-12-03T09:43:13</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18525">
    <title>Re: Retrieving Properties "check" value</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18525</link>
    <description>Hi Guilherme,

my first answer fast obviously too fast. There is a possibility to get 
the value of the "check" key.

This

--snip--
qx.ui.basic.Label.$$properties.content.check
--snip--

will the value of the "check" key of the "content" property of the label 
class.
One thing is important: the "$$properties" is attached at the class not 
at the instance of a label. If you want to get the value having an 
instance you need to use

--snip--
myLabelInstance.constructor.$$properties.content.check
--snip--

since the class is accessible through the "constructor" key of the instance.

cheers,
   Alex

Alexander Back wrote:

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/
</description>
    <dc:creator>Alexander Back</dc:creator>
    <dc:date>2008-12-03T08:51:43</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18524">
    <title>Re: Retrieving Properties "check" value</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18524</link>
    <description>Hi Guilherme,

Guilherme Aiolfi wrote:
The "check" value of a property gets transformed into a check within the 
setter of the property. So there is no possibility to get the type the 
property accepts - as least I do not know about one.

For example the setter of the "content" property at "qx.ui.basic.Label" 
will incorporate the following

--snip--
var msg = "Invalid incoming value for property 'content' of class 
'qx.ui.basic.Label'";
if (value !== null)
{
   if (!(qx.core.Assert.assertString(value, msg) || true))
   {
      prop.error(this, 5, "content", "set", value);
    }
}
--snip--

if the check will have the value "String".

Important: These checks are only added in the source version.

cheers,
   Alex

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the wo</description>
    <dc:creator>Alexander Back</dc:creator>
    <dc:date>2008-12-03T08:31:49</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18523">
    <title>Re: No fancy table structure in qooxdoo?</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18523</link>
    <description>Hi Kenny,

I'm not sure if it is exactly what you want but have a look to  
GridLayout :
http://demo.qooxdoo.org/current/demobrowser/#layout~Grid_Simple.html
http://demo.qooxdoo.org/current/demobrowser/#layout~Grid_Complex.html
http://demo.qooxdoo.org/current/demobrowser/#layout~Grid_Alignment.html

On 3 Dec 2008, at 05:46, Kenny Tilton wrote:



-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/
</description>
    <dc:creator>Jean-Baptiste BRIAUD -- Novlog</dc:creator>
    <dc:date>2008-12-03T08:01:02</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18522">
    <title>No fancy table structure in qooxdoo?</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18522</link>
    <description>Straight HTML tables (and other JS frameworks) allow one to have a 
little fun and get away from straight columns/rows. For example, a 
single data cell can take up two columns and three rows, while the other 
fields on those three rows all just use a row each (but may vary in how 
many columns are used (columns just being a specified width). Picture a 
photoID alongside a grid of personal information.

It seems I can do that with a one-column table and an HTML cell 
renderer, but I thought I would check to make sure I was not missing 
something in qooxdoo.

cheers, kenny

</description>
    <dc:creator>Kenny Tilton</dc:creator>
    <dc:date>2008-12-03T04:46:03</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18521">
    <title>Re: New Properties' Validation and Data binding</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18521</link>
    <description>Hi Martin,

yes, you are right that I talkem mainly about form validation:)

Explanation:

Form validation is very similar to model validation for me. In form
its probably everything that is changeable in model, so if you want to
validate something, you will do it in the form (or some external
validator) and you set validated data to the model.

What I'm talking about server side validation is fact, that in some
cases, valid model in the client can be non-valid on the server. Let
me explain it:
- In ajax applications you are usually working with some data. Model
is usually table and instance of model is usually row, connections
between data is usually created using selectbox, listbox and similar
widgets. Imagine that you have selected valid category for the product
and that category was deleted by somebody else. When saving data to
the server, it should be able to tell you where is the problem and in
client you should be able to load new category data.
- This was example from my life, it's rare, but it's pos</description>
    <dc:creator>Petr Kobalíček</dc:creator>
    <dc:date>2008-12-02T17:54:45</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18520">
    <title>Retrieving Properties "check" value</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18520</link>
    <description>-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel&lt; at &gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
</description>
    <dc:creator>Guilherme Aiolfi</dc:creator>
    <dc:date>2008-12-02T17:28:29</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18519">
    <title>Re: theme sharing ?</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.javascript.qooxdoo.devel/18519</link>
    <description>Hi Alex,

I will cleanup the theme and finish some thinks and then I will
contact you about contrib. I think that I'm able to add it there, but
I'm afraid that I will create directory in bad location:)

Cheers
- Petr

2008/12/2 Alexander Back &lt;alexander.back&lt; at &gt;1und1.de&gt;:
-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/
</description>
    <dc:creator>Petr Kobalíček</dc:creator>
    <dc:date>2008-12-02T17:21:36</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>
