Hi,

would you please provide us with an playground example? See 
http://demo.qooxdoo.org/current/playground/#Table-ria


Gruß
Mustafa Sak

Applications & Integration

1&1 Internet AG
Ernst-Frey-Straße 10
DE-76135 Karlsruhe

Von: NachoGarcia [mailto:[email protected]]
Gesendet: Donnerstag, 27. Februar 2014 11:59
An: [email protected]
Betreff: [qooxdoo-devel] Issues related with tables on IE8 using qooxdoo-3.5

Hi. I have done a short example with qooxdoo-3.5 just for showing a simple 
table for testing some of table options, based on table example contained in 
demo browser. All is working fine on IE10 and Chrome browsers, but not in IE8, 
because you can´t edit fields on the table, select rows, errors when scrolling, 
etc... I have checked with 8.0.6001.18702 and 8.0.7600.16385 versions and 
changed compatibility options, but it doesn`t work anyway. Has anyone seen some 
issues related with tables in IE8 using qooxdoo-3.5? I can't find any about 
browser configuration on IE8, and demo browser example it's working fine. 
Attached the code, but is just a table model with some data. Thanks in advance 
Regards qx.Class.define("tabletest.Application", { extend : 
qx.application.Standalone, /* 
***************************************************************************** 
MEMBERS 
***************************************************************************** 
*/ members : { /** * This method contains the initial application code and gets 
called * during startup of the application * * @lint ignoreDeprecated(alert) */ 
main : function() { // Call super class this.base(arguments); // Enable logging 
in debug variant if (qx.core.Environment.get("qx.debug")) { // support native 
logging capabilities, e.g. Firebug for Firefox qx.log.appender.Native; // 
support additional cross-browser console. Press F7 to toggle visibility 
qx.log.appender.Console; } /* 
------------------------------------------------------------------------- Below 
is your actual application code... 
------------------------------------------------------------------------- */ // 
Create a button var button1 = new qx.ui.form.Button("First Button", 
"tabletest/test.png"); // Document is the application root var doc = 
this.getRoot(); // Add button to document at fixed coordinates doc.add(button1, 
{left: 100, top: 50}); // Add an event listener button1.addListener("execute", 
function(e) { alert("Hello World!"); }); // table model var tableModel = new 
qx.ui.table.model.Simple(); tableModel.setColumns(["ID1", "DESC1", "ID2", 
"DESC2" ]); //tableModel.setData(rowData); tableModel.setData([[1,"Venta por 
tienda sin impuestos",1,"ECONOMICO"],[2,"Venta por tienda sin 
impuestos",1,"ECONOMICO"],[3,"Venta por tienda sin 
impuestos",1,"ECONOMICO"],[4,"Venta por tienda sin 
impuestos",1,"ECONOMICO"],[5,"Venta por tienda sin 
impuestos",1,"ECONOMICO"],[6,"Venta por tienda sin 
impuestos",1,"ECONOMICO"],[7,"Venta por tienda sin 
impuestos",1,"ECONOMICO"],[8,"Venta por tienda sin 
impuestos",1,"ECONOMICO"],[9,"Venta por tienda sin 
impuestos",1,"ECONOMICO"],[10,"Venta por tienda sin 
impuestos",1,"ECONOMICO"],[11,"Venta por tienda sin 
impuestos",1,"ECONOMICO"],[12,"Venta por tienda sin 
impuestos",1,"ECONOMICO"],[13,"Venta por tienda sin 
impuestos",1,"ECONOMICO"],[14,"Venta por tienda sin 
impuestos",1,"ECONOMICO"],[15,"Venta por tienda sin 
impuestos",1,"ECONOMICO"],[16,"Venta por tienda sin 
impuestos",1,"ECONOMICO"],[17,"Venta por tienda sin 
impuestos",1,"ECONOMICO"],[18,"Venta por tienda sin 
impuestos",1,"ECONOMICO"],[19,"Venta por tienda sin 
impuestos",1,"ECONOMICO"],[20,"Venta por tienda sin 
impuestos",1,"ECONOMICO"],[21,"Venta por tienda sin 
impuestos",1,"ECONOMICO"],[22,"Venta por tienda sin 
impuestos",1,"ECONOMICO"],[23,"Venta por tienda sin 
impuestos",1,"ECONOMICO"],[24,"Venta por tienda sin 
impuestos",1,"ECONOMICO"],[25,"Venta por tienda sin 
impuestos",1,"ECONOMICO"],[26,"Venta por tienda sin 
impuestos",1,"ECONOMICO"],[27,"Venta por tienda sin 
impuestos",1,"ECONOMICO"],[28,"Venta por tienda sin 
impuestos",1,"ECONOMICO"],[29,"Venta por tienda sin 
impuestos",1,"ECONOMICO"],[30,"Venta por tienda sin 
impuestos",1,"ECONOMICO"]]); tableModel.setColumnEditable(1, true); 
tableModel.setColumnEditable(2, true); tableModel.setColumnSortable(3, false); 
// table var table = new qx.ui.table.Table(tableModel); table.set({ width: 600, 
height: 400, decorator : null }); 
//table.getSelectionModel().setSelectionMode(qx.ui.table.selection.Model.MULTIPLE_INTERVAL_SELECTION);
 
table.getSelectionModel().setSelectionMode(qx.ui.table.selection.Model.NO_SELECTION);
 var tcm = table.getTableColumnModel(); // Display a checkbox in column 3 
//tcm.setDataCellRenderer(3, new qx.ui.table.cellrenderer.Boolean()); // use a 
different header renderer tcm.setHeaderCellRenderer(2, new 
qx.ui.table.headerrenderer.Icon("icon/16/apps/office-calendar.png", "A date")); 
doc.add(table, {left: 100, top: 100}); } } }); 
/////////////////////////////////////////////////////////////////////////////////////////////
________________________________
View this message in context: Issues related with tables on IE8 using 
qooxdoo-3.5<http://qooxdoo.678.n2.nabble.com/Issues-related-with-tables-on-IE8-using-qooxdoo-3-5-tp7585395.html>
Sent from the qooxdoo mailing list archive<http://qooxdoo.678.n2.nabble.com/> 
at Nabble.com.
------------------------------------------------------------------------------
Flow-based real-time traffic analytics software. Cisco certified tool.
Monitor traffic, SLAs, QoS, Medianet, WAAS etc. with NetFlow Analyzer
Customize your own dashboards, set traffic alerts and generate reports.
Network behavioral analysis & security monitoring. All-in-one tool.
http://pubads.g.doubleclick.net/gampad/clk?id=126839071&iu=/4140/ostg.clktrk
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to