Hi,
I have this:
Lista_Otes= new qx.ui.form.List();
var model__lista_otes = qx.data.marshal.Json.createModel();
var controller__lista_otes = new qx.data.controller.List(
model__lista_otes, Lista_Otes, "ote");
function _Dame_Otes( empresa)
{
var rpc__Dame_Otes = new qx.io.remote.Rpc(
"http://127.0.0.1:8000/");
rpc__Dame_Otes.setTimeout( 5000);
rpc__Dame_Otes.setCrossDomain( true);
rpc__Dame_Otes.setServiceName( 'qooxdoo.test');
// asynchronous call
var handler_Dame_Otes = function( result_Dame_Otes, exc) {
if (exc == null)
{
controller__lista_otes.setModel(
qx.data.marshal.Json.createModel(
result_Dame_Otes));
}
else
{
alert("Exception during async call --
_Dame_Otes : " + exc+ [
result_Dame_Otes]);
}
};
rpc__Dame_Otes.callAsync( handler_Dame_Otes, "db", 10000,
empresa);//
Solicita el listado de empresas
} // fin function _Dame_Tree_Empresas()
And i need put the cursor in 4 position at init.....How?
Thanks
------------------------------------------------------------------------------
Get 100% visibility into Java/.NET code with AppDynamics Lite
It's a free troubleshooting tool designed for production
Get down to code-level detail for bottlenecks, with <2% overhead.
Download for free and get started troubleshooting in minutes.
http://p.sf.net/sfu/appdyn_d2d_ap2
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel