Hi Mustafa,

It gives me the willies. I thought I have a little bit knowledge in HTML,
PHP, mySQL and Javascript. And now nothing. I'm to stupid to for this
framework. 

I think I will leave it. I can cry.

This day only testing such a thing like table and datahandling. I copied
this from the qooxdoo site about remotetable. I changed the classname form
the example to custom....

qx.Class.define("custom.table.RemoteDataModel",
{
  extend : qx.ui.table.model.Remote,
 
  members :
  {
     // overloaded - called whenever the table requests the row count
    _loadRowCount : function()
  {
    // Call the backend service (example) - using XmlHttp 
    var url  =
"http://localhost/qooximkerei/source/test.php";//getTableCount.php";; //here
my phpsite
      var req = new qx.io.remote.Request(url, "POST", "application/json");
    ......
Than I created my tablemodel with

var tableModel= this._tableModel=new custom.table.RemoteDataModel();
tableModel.setColumns([ "ID", "Standortname", "Standortbeschreibung",
"Wanderstand" ]);

Than the table

var table = this._table = new qx.ui.table.Table(tableModel);
table.set({width: 600,height: 400,decorator : null});

Than I tested various variants to get datas to the model. for example

tableModel._onRowDataLoaded();

and others. Nothing helps. I see by debugging(my firebug goes lost by this
tests; now I use safari) that the test.php with the array is loaded.

But how can I get the datas to this remotetable. I have to understand such a
datahandling.

A normal application is full of datahandling functions (Save datas, edit or
insert datas, print datas, ect.).

With this problems at beginning I think I will stop now. 
I will go back to my manually app building (creating divs, ect. give some
functions to this elements, send and recieve datas with a form tag to my php
site, ect.

Thanks again and good luck for you.

Josef 
-- 
View this message in context: 
http://qooxdoo.678.n2.nabble.com/I-m-frustrated-tp5975196p5982370.html
Sent from the qooxdoo mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)!
Finally, a world-class log management solution at an even better price-free!
Download using promo code Free_Logger_4_Dev2Dev. Offer expires 
February 28th, so secure your free ArcSight Logger TODAY! 
http://p.sf.net/sfu/arcsight-sfd2d
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to