My favorites | Sign in
Project Logo
                
Details: Show all Hide all

Last 7 days

  • Dec 31, 2009
    issue 30 (Feature request: mouse wheel event) reported by olivier.sallou   -   Hi, I am using Tatami 1.4, and it seems that mousewheel events are not managed in canvas. Could it be added to enable autoscrolling or zoom fonctions help with the wheel? Furthermore, mousewheel can be emulated in multitouch apps (safari webkits), so could be interesting function. Regards
    Hi, I am using Tatami 1.4, and it seems that mousewheel events are not managed in canvas. Could it be added to enable autoscrolling or zoom fonctions help with the wheel? Furthermore, mousewheel can be emulated in multitouch apps (safari webkits), so could be interesting function. Regards

Older

  • Dec 03, 2009
    issue 29 (Assertion fail loading "Tatami_DojoBase.gwt.xml") reported by MarcBerm...@Hotmail.com   -   To reproduce the issue we have to activate by default the -ea parameter in the VM(See image1.png). Then when loading the Tatami_DojoBase.gwt.xml we have the AssertionError: [ERROR] Line 30: Unexpected exception while processing element 'script' java.lang.AssertionError: Bad SourceInfo line number at com.google.gwt.dev.js.JsParser.pushSourceInfo(JsParser.java:1272) at com.google.gwt.dev.js.JsParser.mapBlock(JsParser.java:428) at com.google.gwt.dev.js.JsParser.mapFunction(JsParser.java:708) at com.google.gwt.dev.js.JsParser.map(JsParser.java:281) at com.google.gwt.dev.js.JsParser.mapStatement(JsParser.java:1019) at com.google.gwt.dev.js.JsParser.mapStatements(JsParser.java:1039) at com.google.gwt.dev.js.JsParser.mapStatements(JsParser.java:1053) at com.google.gwt.dev.js.JsParser.parseImpl(JsParser.java:132) ..... (See completeTrace.txt)
    To reproduce the issue we have to activate by default the -ea parameter in the VM(See image1.png). Then when loading the Tatami_DojoBase.gwt.xml we have the AssertionError: [ERROR] Line 30: Unexpected exception while processing element 'script' java.lang.AssertionError: Bad SourceInfo line number at com.google.gwt.dev.js.JsParser.pushSourceInfo(JsParser.java:1272) at com.google.gwt.dev.js.JsParser.mapBlock(JsParser.java:428) at com.google.gwt.dev.js.JsParser.mapFunction(JsParser.java:708) at com.google.gwt.dev.js.JsParser.map(JsParser.java:281) at com.google.gwt.dev.js.JsParser.mapStatement(JsParser.java:1019) at com.google.gwt.dev.js.JsParser.mapStatements(JsParser.java:1039) at com.google.gwt.dev.js.JsParser.mapStatements(JsParser.java:1053) at com.google.gwt.dev.js.JsParser.parseImpl(JsParser.java:132) ..... (See completeTrace.txt)
  • Nov 25, 2009
    issue 28 (Tananmi Dojox.gfx Text issues) reported by brunob54   -   I have found several issue with the Text class 1) Text displayed in small size (e.g.8 pt) is unreadable because, by default, the stroke width is set 1. Setting the stroke with to 0 solves the problem in Firefox and Chrome but not in IE 8. I would suggest that by default, the stroke with should be 0 and there would be no stroke at all, as it is in Dojo. 2) There are no methods to set x (as double) and y (as double) of the text. 3) There are no methods to set align. What steps will reproduce the problem? 1. Create a Text instance 2. Set the font size to 8 3. Look at the output on a browser What is the expected output? What do you see instead? Expected output: readable text Output obtained: almost unreadable text What version of the product are you using? On what operating system? Tanami 1.4 Please provide any additional information below. As a work around, I created a subclass of Text. This ExtendedText class has a new constructor (for x, y, and align parameters). Also, the show()member function is overidden in order to remove the stroke if the strokewith was set 0. I don't claim this is a good solution or that I wrote good Java code (I am new in Java). I just hope that it might be useful. The ExtendedText.java file is attached to this post.
    I have found several issue with the Text class 1) Text displayed in small size (e.g.8 pt) is unreadable because, by default, the stroke width is set 1. Setting the stroke with to 0 solves the problem in Firefox and Chrome but not in IE 8. I would suggest that by default, the stroke with should be 0 and there would be no stroke at all, as it is in Dojo. 2) There are no methods to set x (as double) and y (as double) of the text. 3) There are no methods to set align. What steps will reproduce the problem? 1. Create a Text instance 2. Set the font size to 8 3. Look at the output on a browser What is the expected output? What do you see instead? Expected output: readable text Output obtained: almost unreadable text What version of the product are you using? On what operating system? Tanami 1.4 Please provide any additional information below. As a work around, I created a subclass of Text. This ExtendedText class has a new constructor (for x, y, and align parameters). Also, the show()member function is overidden in order to remove the stroke if the strokewith was set 0. I don't claim this is a good solution or that I wrote good Java code (I am new in Java). I just hope that it might be useful. The ExtendedText.java file is attached to this post.
  • Nov 23, 2009
    issue 27 (too much recursion on Grid example) commented on by gianluca.correndo   -   Hi, thanks for the reply. I've tested without the setWidth() instruction and it gives me the same error. Without SetWidht() and setHeight() it gives me the same behaviour. I don't think there is much left to comment out in order to isolate the error, sorry :(
    Hi, thanks for the reply. I've tested without the setWidth() instruction and it gives me the same error. Without SetWidht() and setHeight() it gives me the same behaviour. I don't think there is much left to comment out in order to isolate the error, sorry :(
  • Nov 23, 2009
    issue 27 (too much recursion on Grid example) changed by vgrassaud   -   Hi, can you test your code without set setWidth() instruction. I will fix this issue as soon as possible.
    Status: Accepted
    Owner: vgrassaud
    Hi, can you test your code without set setWidth() instruction. I will fix this issue as soon as possible.
    Status: Accepted
    Owner: vgrassaud
  • Nov 19, 2009
    issue 27 (too much recursion on Grid example) reported by gianluca.correndo   -   What steps will reproduce the problem? 1. Create an empty project 2. Install tatami 1.4 on the project 3. Insert <inherits name="com.objetdirect.tatami.Tatami"/> in the gwt.xml file 4. Erase the default code on the onModuleLoad and write this instead: public void onModuleLoad() { Grid grid = new Grid(); grid.addColumn("Name"); grid.addColumn("Phone Number"); Object[] row1 = {"John Doe" , "0123456789" }; Object[] row2 = {"Jane Doe" , "9876543210" }; grid.addRow(row1); grid.addRow(row2); grid.setWidth("300px"); grid.setHeight("200px"); RootPanel.get("main").add(grid); grid.updateGrid(); } What is the expected output? The grid? What do you see instead? Nothing, and the log in the Hosted window reports this error: ERROR] ERROR com.google.gwt.core.client.JavaScriptException: (InternalError): too much recursion fileName: http://localhost:8000/testtatami/dojo/dojo.js lineNumber: 16 stack: ("postMixInProperties",(function () {this.inherited(arguments);var _9 = dojo.i18n.getLocalization("dijit", "loading", this.lang);this.loadingMessage = dojo.string.substitute(this.loadingMessage, _9);this.errorMessage = dojo.string.substitute(this.errorMessage, _9);if (this.srcNodeRef && this.srcNodeRef.style.height) {this.height = this.srcNodeRef.style.height;}this._setAutoHeightAttr(this.autoHeight, true);}),[object Object],false)@http://localhost:8000/testtatami/dojo/dojo.js:16 ("postMixInProperties",(function () {this.inherited(arguments);var _9 = dojo.i18n.getLocalization("dijit", "loading", this.lang);this.loadingMessage = dojo.string.substitute(this.loadingMessage, _9);this.errorMessage = dojo.string.substitute(this.errorMessage, _9);if (this.srcNodeRef && this.srcNodeRef.style.height) {this.height = this.srcNodeRef.style.height;}this._setAutoHeightAttr(this.autoHeight, true);}),[object Object],false)@http://localhost:8000/testtatami/dojo/dojo.js:16 ("postMixInProperties",(function () {this.inherited(arguments);var _9 = dojo.i18n.getLocalization("dijit", "loading", this.lang);this.loadingMessage = dojo.string.substitute(this.loadingMessage, _9);this.errorMessage = dojo.string.substitute(this.errorMessage, _9);if (this.srcNodeRef && this.srcNodeRef.style.height) {this.height = this.srcNodeRef.style.height;}this._setAutoHeightAttr(this.autoHeight, true);}),[object Object],false)@http://localhost:8000/testtatami/dojo/dojo.js:16 . . . What version of the product are you using? tatami 1.4 On what operating system? ubuntu 9.10 with GWT 1.7.0 Please provide any additional information below.
    What steps will reproduce the problem? 1. Create an empty project 2. Install tatami 1.4 on the project 3. Insert <inherits name="com.objetdirect.tatami.Tatami"/> in the gwt.xml file 4. Erase the default code on the onModuleLoad and write this instead: public void onModuleLoad() { Grid grid = new Grid(); grid.addColumn("Name"); grid.addColumn("Phone Number"); Object[] row1 = {"John Doe" , "0123456789" }; Object[] row2 = {"Jane Doe" , "9876543210" }; grid.addRow(row1); grid.addRow(row2); grid.setWidth("300px"); grid.setHeight("200px"); RootPanel.get("main").add(grid); grid.updateGrid(); } What is the expected output? The grid? What do you see instead? Nothing, and the log in the Hosted window reports this error: ERROR] ERROR com.google.gwt.core.client.JavaScriptException: (InternalError): too much recursion fileName: http://localhost:8000/testtatami/dojo/dojo.js lineNumber: 16 stack: ("postMixInProperties",(function () {this.inherited(arguments);var _9 = dojo.i18n.getLocalization("dijit", "loading", this.lang);this.loadingMessage = dojo.string.substitute(this.loadingMessage, _9);this.errorMessage = dojo.string.substitute(this.errorMessage, _9);if (this.srcNodeRef && this.srcNodeRef.style.height) {this.height = this.srcNodeRef.style.height;}this._setAutoHeightAttr(this.autoHeight, true);}),[object Object],false)@http://localhost:8000/testtatami/dojo/dojo.js:16 ("postMixInProperties",(function () {this.inherited(arguments);var _9 = dojo.i18n.getLocalization("dijit", "loading", this.lang);this.loadingMessage = dojo.string.substitute(this.loadingMessage, _9);this.errorMessage = dojo.string.substitute(this.errorMessage, _9);if (this.srcNodeRef && this.srcNodeRef.style.height) {this.height = this.srcNodeRef.style.height;}this._setAutoHeightAttr(this.autoHeight, true);}),[object Object],false)@http://localhost:8000/testtatami/dojo/dojo.js:16 ("postMixInProperties",(function () {this.inherited(arguments);var _9 = dojo.i18n.getLocalization("dijit", "loading", this.lang);this.loadingMessage = dojo.string.substitute(this.loadingMessage, _9);this.errorMessage = dojo.string.substitute(this.errorMessage, _9);if (this.srcNodeRef && this.srcNodeRef.style.height) {this.height = this.srcNodeRef.style.height;}this._setAutoHeightAttr(this.autoHeight, true);}),[object Object],false)@http://localhost:8000/testtatami/dojo/dojo.js:16 . . . What version of the product are you using? tatami 1.4 On what operating system? ubuntu 9.10 with GWT 1.7.0 Please provide any additional information below.
  • Oct 09, 2009
    r494 ([No log message]) committed by vgrassaud   -   [No log message]
    [No log message]
  • Oct 09, 2009
    tatamix-1.4.jar (Tatamix-1.4 ) file uploaded by vgrassaud
  • Oct 09, 2009
    tatami-1.4.jar (Tatami-1.4 ) file uploaded by vgrassaud   -  
    Labels: Featured
    Labels: Featured
  • Oct 09, 2009
    r493 ([No log message]) committed by vgrassaud   -   [No log message]
    [No log message]
  • Oct 09, 2009
    r492 (upgrade of the dojo release to the version 1.3.2) committed by vgrassaud   -   upgrade of the dojo release to the version 1.3.2
    upgrade of the dojo release to the version 1.3.2
  • Oct 09, 2009
    issue 26 (Firefox 3.5.2) changed by vgrassaud   -   This bug is a Dojo bug see : http://trac.dojotoolkit.org/ticket/9482. The version 1.4 of Tatami uses a patch to fix the issue. Normally, the issue will be completely fixed with version 1.4 of Dojo .
    Status: Accepted
    Owner: vgrassaud
    This bug is a Dojo bug see : http://trac.dojotoolkit.org/ticket/9482. The version 1.4 of Tatami uses a patch to fix the issue. Normally, the issue will be completely fixed with version 1.4 of Dojo .
    Status: Accepted
    Owner: vgrassaud
  • Oct 09, 2009
    issue 17 (Chart2D dont work properly in IE8 (It works fine in FireFox)) changed by vgrassaud   -   This should be fixed now with the tatami version 1.4.
    Status: Accepted
    Owner: vgrassaud
    This should be fixed now with the tatami version 1.4.
    Status: Accepted
    Owner: vgrassaud
  • Oct 09, 2009
    r491 ([No log message]) committed by vgrassaud   -   [No log message]
    [No log message]
  • Oct 09, 2009
    r490 ([No log message]) committed by vgrassaud   -   [No log message]
    [No log message]
  • Oct 09, 2009
    r489 ([No log message]) committed by vgrassaud   -   [No log message]
    [No log message]
  • Oct 09, 2009
    r488 ([No log message]) committed by vgrassaud   -   [No log message]
    [No log message]
  • Oct 09, 2009
    r487 ([No log message]) committed by vgrassaud   -   [No log message]
    [No log message]
  • Oct 09, 2009
    r486 ([No log message]) committed by vgrassaud   -   [No log message]
    [No log message]
  • Oct 09, 2009
    r485 ([No log message]) committed by vgrassaud   -   [No log message]
    [No log message]
  • Oct 08, 2009
    r484 ([No log message]) committed by vgrassaud   -   [No log message]
    [No log message]
  • Oct 08, 2009
    r483 ([No log message]) committed by vgrassaud   -   [No log message]
    [No log message]
  • Oct 08, 2009
    r482 ([No log message]) committed by vgrassaud   -   [No log message]
    [No log message]
  • Oct 08, 2009
    r481 ([No log message]) committed by vgrassaud   -   [No log message]
    [No log message]
  • Oct 08, 2009
    r480 (adding of the value change handler ) committed by vgrassaud   -   adding of the value change handler
    adding of the value change handler
  • Oct 07, 2009
    r479 (modification of the code in order to fully compliant with GW...) committed by vgrassaud   -   modification of the code in order to fully compliant with GWT 1.7.
    modification of the code in order to fully compliant with GWT 1.7.
  • Oct 07, 2009
    r478 (modification of the code in order to fully compliant with GW...) committed by vgrassaud   -   modification of the code in order to fully compliant with GWT 1.7.
    modification of the code in order to fully compliant with GWT 1.7.
  • Oct 07, 2009
    r477 (modification of the code in order to fully compliant with GW...) committed by vgrassaud   -   modification of the code in order to fully compliant with GWT 1.7.
    modification of the code in order to fully compliant with GWT 1.7.
  • Oct 07, 2009
    r476 (modification of the code in order to fully compliant with GW...) committed by vgrassaud   -   modification of the code in order to fully compliant with GWT 1.7.
    modification of the code in order to fully compliant with GWT 1.7.
  • Oct 07, 2009
    r475 ([No log message]) committed by vgrassaud   -   [No log message]
    [No log message]
  • Oct 07, 2009
    r474 ([No log message]) committed by vgrassaud   -   [No log message]
    [No log message]
  • Oct 07, 2009
    r473 (modification of the code in order to fully compliant with GW...) committed by vgrassaud   -   modification of the code in order to fully compliant with GWT 1.7.
    modification of the code in order to fully compliant with GWT 1.7.
  • Oct 07, 2009
    r472 (modification of the code in order to fully compliant with GW...) committed by vgrassaud   -   modification of the code in order to fully compliant with GWT 1.7.
    modification of the code in order to fully compliant with GWT 1.7.
  • Oct 07, 2009
    r471 (Adding of the project tatami-common. This project is used to...) committed by vgrassaud   -   Adding of the project tatami-common. This project is used to simplify the settings of the development environment of Tatami. The file env.properties define all common properties used in ant files as gwt.sdk etc... and also we can find in this project all extra libraries used like htmlunit or junit.
    Adding of the project tatami-common. This project is used to simplify the settings of the development environment of Tatami. The file env.properties define all common properties used in ant files as gwt.sdk etc... and also we can find in this project all extra libraries used like htmlunit or junit.
  • Oct 07, 2009
    r470 (Adding of the project tatami-common. This project is used to...) committed by vgrassaud   -   Adding of the project tatami-common. This project is used to simplify the settings of the development environment of Tatami. The file env.properties define all common properties used in ant files as gwt.sdk etc... and also we can find in this project all extra libraries used like htmlunit or junit.
    Adding of the project tatami-common. This project is used to simplify the settings of the development environment of Tatami. The file env.properties define all common properties used in ant files as gwt.sdk etc... and also we can find in this project all extra libraries used like htmlunit or junit.
  • Oct 07, 2009
    r469 (Adding of the project tatami-common. This project is used to...) committed by vgrassaud   -   Adding of the project tatami-common. This project is used to simplify the settings of the development environment of Tatami. The file env.properties define all common properties used in ant files as gwt.sdk etc... and also we can find in this project all extra libraries used like htmlunit or junit.
    Adding of the project tatami-common. This project is used to simplify the settings of the development environment of Tatami. The file env.properties define all common properties used in ant files as gwt.sdk etc... and also we can find in this project all extra libraries used like htmlunit or junit.
  • Oct 07, 2009
    r468 (Adding of the project tatami-common. This project is used to...) committed by vgrassaud   -   Adding of the project tatami-common. This project is used to simplify the settings of the development environment of Tatami. The file env.properties define all common properties used in ant files as gwt.sdk etc... and also we can find in this project all extra libraries used like htmlunit or junit.
    Adding of the project tatami-common. This project is used to simplify the settings of the development environment of Tatami. The file env.properties define all common properties used in ant files as gwt.sdk etc... and also we can find in this project all extra libraries used like htmlunit or junit.
  • Oct 07, 2009
    r467 (Adding of the project tatami-common. This project is used to...) committed by vgrassaud   -   Adding of the project tatami-common. This project is used to simplify the settings of the development environment of Tatami. The file env.properties define all common properties used in ant files as gwt.sdk etc... and also we can find in this project all extra libraries used like htmlunit or junit.
    Adding of the project tatami-common. This project is used to simplify the settings of the development environment of Tatami. The file env.properties define all common properties used in ant files as gwt.sdk etc... and also we can find in this project all extra libraries used like htmlunit or junit.
  • Oct 07, 2009
    r466 (Share project "tatami-common" into "https://tatami.googlecod...) committed by vgrassaud   -   Share project "tatami-common" into "https://tatami.googlecode.com/svn/trunk"
    Share project "tatami-common" into "https://tatami.googlecode.com/svn/trunk"
  • Oct 06, 2009
    issue 23 (NumberSpinner.getValue() has wrong return type) Owner changed by vgrassaud   -   Hi, i'm working on this issue. I hope that in a few days an new version Tatami will be available and compliant with GWT 1.7. Vianney
    Owner: vgrassaud
    Hi, i'm working on this issue. I hope that in a few days an new version Tatami will be available and compliant with GWT 1.7. Vianney
    Owner: vgrassaud
  • Sep 23, 2009
    Roadmap (Tatami Roadmap) Wiki page commented on by mohamed....@gmail.com   -   me too
    me too
  • Sep 23, 2009
    issue 23 (NumberSpinner.getValue() has wrong return type) commented on by mohamed....@gmail.com   -   I have the same problem with the GWT 1.7, do you have any patch? thx
    I have the same problem with the GWT 1.7, do you have any patch? thx
  • Sep 16, 2009
    Roadmap (Tatami Roadmap) Wiki page commented on by rniamo   -   me too
    me too
  • Sep 09, 2009
    issue 15 (Error on grid width a specific DateFormatter) commented on by iandgratton   -   This still appears to be an issue on this Widget. If I add a column into the grid like so: DateFormatter dateFormatter = new DateFormatter(DateFormatter.displayTimeAndDate); dateFormatter.setDatePattern("dd/mm/yyyy"); dateFormatter.setTimePattern("kk:mm:ss"); Cell dateColumn = transferResultsGrid.addColumn("Date", fieldlist.DATE, 100); dateColumn.setFormatter(dateFormatter); When my results come back from the Data store into the grid I every single cell just has '...' as its data and I get the following error being thrown: (TypeError): '$wnd.dojo.date.locale' is null or not an object number: -2146823281 description: '$wnd.dojo.date.locale' is null or not an objectDate: Wed Sep 09 11:40:07 BST 2009com.objetdirect.tatami.client.grid.Grid.delegateProcessRows(Native Method)com.objetdirect.tatami.client.grid.Grid.onComplete(Grid.java:837)com.objetdirect.tatami.client.data.DataStorePaginator.notifyCompleteFetchListeners(DataStorePaginator.java:232)com.objetdirect.tatami.client.data.DataStorePaginator.onComplete(DataStorePaginator.java:173)com.objetdirect.tatami.client.data.AbstractDataStore.notifyCompleteFetchListeners(AbstractDataStore.java:896) I've attached a screen shot so you can see. If I don't apply the formatter to the column the grid works as expected although with the default date/time formatting applied to each cell
    This still appears to be an issue on this Widget. If I add a column into the grid like so: DateFormatter dateFormatter = new DateFormatter(DateFormatter.displayTimeAndDate); dateFormatter.setDatePattern("dd/mm/yyyy"); dateFormatter.setTimePattern("kk:mm:ss"); Cell dateColumn = transferResultsGrid.addColumn("Date", fieldlist.DATE, 100); dateColumn.setFormatter(dateFormatter); When my results come back from the Data store into the grid I every single cell just has '...' as its data and I get the following error being thrown: (TypeError): '$wnd.dojo.date.locale' is null or not an object number: -2146823281 description: '$wnd.dojo.date.locale' is null or not an objectDate: Wed Sep 09 11:40:07 BST 2009com.objetdirect.tatami.client.grid.Grid.delegateProcessRows(Native Method)com.objetdirect.tatami.client.grid.Grid.onComplete(Grid.java:837)com.objetdirect.tatami.client.data.DataStorePaginator.notifyCompleteFetchListeners(DataStorePaginator.java:232)com.objetdirect.tatami.client.data.DataStorePaginator.onComplete(DataStorePaginator.java:173)com.objetdirect.tatami.client.data.AbstractDataStore.notifyCompleteFetchListeners(AbstractDataStore.java:896) I've attached a screen shot so you can see. If I don't apply the formatter to the column the grid works as expected although with the default date/time formatting applied to each cell
  • Aug 28, 2009
    issue 26 (Firefox 3.5.2) reported by lisa.angara   -   Hi, Can you provide support to display images in FF 3.5.2? I went to your GFX demo & attempted to draw an image on the canvas/surface by clicking on the image icon but the image isn't showing up. The other components (circles, lines, text) seem to be working fine. Thanks, Lisa
    Hi, Can you provide support to display images in FF 3.5.2? I went to your GFX demo & attempted to draw an image on the canvas/surface by clicking on the image icon but the image isn't showing up. The other components (circles, lines, text) seem to be working fine. Thanks, Lisa
  • Aug 26, 2009
    Roadmap (Tatami Roadmap) Wiki page commented on by jperezcasanova   -   Is this library compatible with GWT 1.7.0? I tried to compile the code using GWT 1.7.0 and I get this error [ERROR] Errors in 'jar:file:/Applications/Development/workspace/TatamiDemo/war/WEB-INF/lib/tatami-1.3.1.jar!/com/objetdirect/tatami/client/NumberSpinner.java' [ERROR] Line 466: The return type is incompatible with TextBoxBase.getValue() Thank you.
    Is this library compatible with GWT 1.7.0? I tried to compile the code using GWT 1.7.0 and I get this error [ERROR] Errors in 'jar:file:/Applications/Development/workspace/TatamiDemo/war/WEB-INF/lib/tatami-1.3.1.jar!/com/objetdirect/tatami/client/NumberSpinner.java' [ERROR] Line 466: The return type is incompatible with TextBoxBase.getValue() Thank you.
  • Jul 21, 2009
    Roadmap (Tatami Roadmap) Wiki page commented on by elicdny   -   I am wondering if this would work for my site http://www.thepromohut.com it is a magento site
    I am wondering if this would work for my site http://www.thepromohut.com it is a magento site
  • Jun 03, 2009
    issue 23 (NumberSpinner.getValue() has wrong return type) commented on by carlparziale   -   Any update on this issue with GWT 1.6.4? Thanks in advance! Carl
    Any update on this issue with GWT 1.6.4? Thanks in advance! Carl
  • May 13, 2009
    issue 25 (ofc(open flash chart) dont work properly in IE7 (It works fi...) reported by doohwan.kwak   -   root panel has many child panel. chart panel has ofc-gwt charts. first time. chart panel show perfect. and chart data update well but when move other panel and return chart panel. it works fault. it only show in iexplore !!! , chrome and firefox work well done. host mode error message : [ERROR] Uncaught exception escaped com.google.gwt.core.client.JavaScriptException: (Error): extend: function(object) { return Object.extend.apply(this, [this, object]); } number: -2147467259 description: at com.rednels.ofcgwt.client.ChartWidget.loadJSON(Native Method) at com.rednels.ofcgwt.client.ChartWidget.setJsonData(ChartWidget.java:430) at com.tmax.client.panels.ActiveChartPanel$9.onSuccess(ActiveChartPanel.java:7 27) at com.google.gwt.user.client.rpc.impl.RequestCallbackAdapter.onResponseReceiv ed(RequestCallbackAdapter.java:215) at com.google.gwt.http.client.Request.fireOnResponseReceivedImpl(Request.java: 264) at com.google.gwt.http.client.Request.fireOnResponseReceivedAndCatch(Request.j ava:236) at com.google.gwt.http.client.Request.fireOnResponseReceived(Request.java:227) panel has ofc chart attach: main panel : MainDash.java chart pael : ActiveChartPanel.java
    root panel has many child panel. chart panel has ofc-gwt charts. first time. chart panel show perfect. and chart data update well but when move other panel and return chart panel. it works fault. it only show in iexplore !!! , chrome and firefox work well done. host mode error message : [ERROR] Uncaught exception escaped com.google.gwt.core.client.JavaScriptException: (Error): extend: function(object) { return Object.extend.apply(this, [this, object]); } number: -2147467259 description: at com.rednels.ofcgwt.client.ChartWidget.loadJSON(Native Method) at com.rednels.ofcgwt.client.ChartWidget.setJsonData(ChartWidget.java:430) at com.tmax.client.panels.ActiveChartPanel$9.onSuccess(ActiveChartPanel.java:7 27) at com.google.gwt.user.client.rpc.impl.RequestCallbackAdapter.onResponseReceiv ed(RequestCallbackAdapter.java:215) at com.google.gwt.http.client.Request.fireOnResponseReceivedImpl(Request.java: 264) at com.google.gwt.http.client.Request.fireOnResponseReceivedAndCatch(Request.j ava:236) at com.google.gwt.http.client.Request.fireOnResponseReceived(Request.java:227) panel has ofc chart attach: main panel : MainDash.java chart pael : ActiveChartPanel.java
  • May 06, 2009
    issue 24 (Please provide proper Javadoc) changed by vgrassaud   -   The javadoc will be available for the next and others release.
    Status: Accepted
    Owner: vgrassaud
    The javadoc will be available for the next and others release.
    Status: Accepted
    Owner: vgrassaud
 
Hosted by Google Code