Craig, this is awesome! I watched all of your videos, and I think they're
wonderful. We were talking about something like this just recently. Thank
you! They really can give you a head start developing applications with
qooxdoo, from both the side of the programming model (classes, methods,
propert
Hey,
thanks for sharing your work, which I really like by the way. We recently spoke
about making such beginner videos too so its a nice coincidence that you up
with exactly that. :)
Thank you very much,
Martin
Am 11.02.2011 um 04:26 schrieb Craig Johnston:
I have a small team of programmers I
Hi,
qx.data.store.Json marshals [1] the loaded Json into qooxdoo objects.
Let's assume your Json contains a top-level Array "items". In your example you
would then access this array with data.getItems(). You get back a qx.data.Array
which you can for example convert to an ordinary array to work
I have a small team of programmers I need to get up to speed quickly on
qooxdoo. Since many of these developers have little time or patience for
learning new frameworks I figure it would be easier to just give them some
very short and simple videos to watch.
I made a set of 8 beginner videos and t
Hi
How can I search through the JSON object?
var store = new qx.data.store.Json("...url");
store.addListener("loaded", function(e)
{
var data = e.getData();
},this);
Thanks
--
View this message in context:
http://qooxdoo.678.n2.nabble.com/qx-data-store-Json-tp6013256p6013256.html
Sent from
Hi
ToolTipTable was a new class created in the application.
All I had to do was to add the class in the funtion :
Selenium.prototype.getQxTableValue = function(locator, eventParams)
Before add:
if (qxObject) {
if (!(this.isQxInstanceOf(qxObject, "qx.ui.table.Table"))){
throw new Sel
Hi,
what's a ToolTipTable? If it's a widget inheriting from
qx.ui.table.Table then the isQxInstanceOf check shouldn't fail and it
would be a bug in the user extensions if it did.
If it's not, then the qxTable methods probably won't work on it since
they depend on qx.ui.table.Table's interface.
Hi
I wrote some automated tests for a qooxdoo application, in which I use this
method (from user-extensions-qooxdoo.js):
Selenium.prototype.getQxTableValue = function(locator, eventParams)
{
var qxObject = this.getQxWidgetByLocator(locator);
if (qxObject) {
if (!this.isQxInstanceOf(qxO