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

Last 30 days

  • Dec 07, 2009
    issue 40 (The function getValue() of GridNumericFilter & GridDateFilte...) commented on by AkShukla04   -   Can you please help me in getting GWT-EXT-UX 0.4 jar file, i am not able to get it. I want to use GridFilter functionality from that jar. Kindly advice.
    Can you please help me in getting GWT-EXT-UX 0.4 jar file, i am not able to get it. I want to use GridFilter functionality from that jar. Kindly advice.
  • Dec 07, 2009
    issue 46 (Grid with filter source missing) commented on by AkShukla04   -   Do we have filter code in any of Jar, Please guide me so that i can use Filter functionality in grid.
    Do we have filter code in any of Jar, Please guide me so that i can use Filter functionality in grid.

Earlier this year

  • Oct 17, 2009
    issue 15 (can not import gwtextux) commented on by isongoo   -   I added the <inherits ...>,but the error is still here.;(
    I added the <inherits ...>,but the error is still here.;(
  • Oct 06, 2009
    SlideZone (SlideZone - Project page for gwt-ext bindings to Ext.ux.Slid...) Wiki page commented on by rdrozdoff   -   Please, put modified SlideZone.js. I did all above, but does not work with panel
    Please, put modified SlideZone.js. I did all above, but does not work with panel
  • Sep 21, 2009
    issue 60 (gwtext-ux summaryplugin reconfigure) reported by bhaddhika   -   What steps will reproduce the problem? 1. 2. 3. What is the expected output? What do you see instead? after grid reconfigure with new columns, gwtextux summary plugin also should be reconfigure but not appear summary row. is there any way to do this? What version of the product are you using? On what operating system? gwtextux 0.3 Please provide any additional information below. here is my code Panel panel = new Panel(); panel.setBorder(false); panel.setPaddings(15); final GridPanel grid = new GridPanel(); Object[][] data =new Object[][]{}; MemoryProxy proxy = new MemoryProxy(data); ArrayReader reader = new ArrayReader(new RecordDef(new FieldDef[]{})); Store store = new Store(proxy, reader); store.load(); grid.setStore(store); BaseColumnConfig[] columns = new BaseColumnConfig[]{}; ColumnModel columnModel = new ColumnModel(columns); grid.setColumnModel(columnModel); summaryPlugin = new GridSummaryPlugin(); grid.addPlugin(summaryPlugin); grid.setFrame(true); grid.setStripeRows(true); grid.setHeight(350); grid.setWidth(400); grid.setTitle("Grid with Summary Footer"); Toolbar topToolbar = new Toolbar(); topToolbar.addButton(new ToolbarButton("Toggle Summary", new ButtonListenerAdapter() { public void onClick(Button button, EventObject e) { RecordDef recordDef = new RecordDef( new FieldDef[]{ new StringFieldDef("company"), new FloatFieldDef("price"), new FloatFieldDef("change"), new FloatFieldDef("pctChange"), new DateFieldDef("lastChanged", "n/j h:ia"), new StringFieldDef("symbol"), new StringFieldDef("industry") }); MemoryProxy proxy = new MemoryProxy(getCompanyData()); ArrayReader reader = new ArrayReader(recordDef); Store store = new Store(proxy, reader); store.load(); BaseColumnConfig[] columnsnew = new BaseColumnConfig[]{ new SummaryColumnConfig( SummaryColumnConfig.COUNT, new ColumnConfig("Company", "company", 200, true, null, "Company"), new Renderer() { // summary renderer public String render(Object value, CellMetadata cellMetadata, Record record, int rowIndex, int colNum, Store store) { if(value != null) { int intValue = ((Integer)value).intValue(); if(intValue == 0 || intValue > 0) { return "(" + intValue + " Companies)"; } else { return "(1 Company)"; } } else { return ""; } } } ), new SummaryColumnConfig( SummaryColumnConfig.SUM, new ColumnConfig("Price", "price", 75) { { setEditor(new GridEditor(new NumberField() { { setAllowDecimals(true); } })); } } ), new SummaryColumnConfig( SummaryColumnConfig.AVERAGE, new ColumnConfig("Change", "change", 100), new Renderer() { // summary renderer public String render(Object value, CellMetadata cellMetadata, Record record, int rowIndex, int colNum, Store store) { return value == null ? "" : ("Average:&#160;" + ((Float)value).floatValue()); } } ), new ColumnConfig("% Change", "pctChange", 75) }; ColumnModel columnModelnw =new ColumnModel(columnsnew); grid.reconfigure(store, columnModelnw); grid.doLayout(); } })); topToolbar.addFill(); grid.setTopToolbar(topToolbar); GridView gv=new GridView(); grid.setView(gv); panel.add(grid); RootPanel.get().add(panel); } private Object[][] getCompanyData() { return new Object[][]{ new Object[]{"3m Co", new Double(71.72), new Double(0.02), new Double(0.03), "9/1 12:00am", "MMM", "Manufacturing"}, new Object[]{"Alcoa Inc", new Double(29.01), new Double(0.42), new Double(1.47), "9/1 12:00am", "AA", "Manufacturing"}, new Object[]{"Altria Group Inc", new Double(83.81), new Double(0.28), new Double(0.34), "9/1 12:00am", "MO", "Manufacturing"}, new Object[]{"American Express Company", new Double(52.55), new Double(0.01), new Double(0.02), "9/1 12:00am", "AXP", "Finance"}, new Object[]{"American International Group, Inc.", new Double(64.13), new Double(0.31), new Double(0.49), "9/1 12:00am", "AIG", "Services"}, new Object[]{"AT&T Inc.", new Double(31.61), new Double(- 0.48), new Double(-1.54), "9/1 12:00am", "T", "Services"}, new Object[]{"Boeing Co.", new Double(75.43), new Double(0.53), new Double(0.71), "9/1 12:00am", "BA", "Manufacturing"}, new Object[]{"Caterpillar Inc.", new Double(67.27), new Double(0.92), new Double(1.39), "9/1 12:00am", "CAT", "Services"}, new Object[]{"Citigroup, Inc.", new Double(49.37), new Double(0.02), new Double(0.04), "9/1 12:00am", "C", "Finance"}, new Object[]{"E.I. du Pont de Nemours and Company", new Double(40.48), new Double(0.51), new Double(1.28), "9/1 12:00am", "DD", "Manufacturing"} }; }
    What steps will reproduce the problem? 1. 2. 3. What is the expected output? What do you see instead? after grid reconfigure with new columns, gwtextux summary plugin also should be reconfigure but not appear summary row. is there any way to do this? What version of the product are you using? On what operating system? gwtextux 0.3 Please provide any additional information below. here is my code Panel panel = new Panel(); panel.setBorder(false); panel.setPaddings(15); final GridPanel grid = new GridPanel(); Object[][] data =new Object[][]{}; MemoryProxy proxy = new MemoryProxy(data); ArrayReader reader = new ArrayReader(new RecordDef(new FieldDef[]{})); Store store = new Store(proxy, reader); store.load(); grid.setStore(store); BaseColumnConfig[] columns = new BaseColumnConfig[]{}; ColumnModel columnModel = new ColumnModel(columns); grid.setColumnModel(columnModel); summaryPlugin = new GridSummaryPlugin(); grid.addPlugin(summaryPlugin); grid.setFrame(true); grid.setStripeRows(true); grid.setHeight(350); grid.setWidth(400); grid.setTitle("Grid with Summary Footer"); Toolbar topToolbar = new Toolbar(); topToolbar.addButton(new ToolbarButton("Toggle Summary", new ButtonListenerAdapter() { public void onClick(Button button, EventObject e) { RecordDef recordDef = new RecordDef( new FieldDef[]{ new StringFieldDef("company"), new FloatFieldDef("price"), new FloatFieldDef("change"), new FloatFieldDef("pctChange"), new DateFieldDef("lastChanged", "n/j h:ia"), new StringFieldDef("symbol"), new StringFieldDef("industry") }); MemoryProxy proxy = new MemoryProxy(getCompanyData()); ArrayReader reader = new ArrayReader(recordDef); Store store = new Store(proxy, reader); store.load(); BaseColumnConfig[] columnsnew = new BaseColumnConfig[]{ new SummaryColumnConfig( SummaryColumnConfig.COUNT, new ColumnConfig("Company", "company", 200, true, null, "Company"), new Renderer() { // summary renderer public String render(Object value, CellMetadata cellMetadata, Record record, int rowIndex, int colNum, Store store) { if(value != null) { int intValue = ((Integer)value).intValue(); if(intValue == 0 || intValue > 0) { return "(" + intValue + " Companies)"; } else { return "(1 Company)"; } } else { return ""; } } } ), new SummaryColumnConfig( SummaryColumnConfig.SUM, new ColumnConfig("Price", "price", 75) { { setEditor(new GridEditor(new NumberField() { { setAllowDecimals(true); } })); } } ), new SummaryColumnConfig( SummaryColumnConfig.AVERAGE, new ColumnConfig("Change", "change", 100), new Renderer() { // summary renderer public String render(Object value, CellMetadata cellMetadata, Record record, int rowIndex, int colNum, Store store) { return value == null ? "" : ("Average:&#160;" + ((Float)value).floatValue()); } } ), new ColumnConfig("% Change", "pctChange", 75) }; ColumnModel columnModelnw =new ColumnModel(columnsnew); grid.reconfigure(store, columnModelnw); grid.doLayout(); } })); topToolbar.addFill(); grid.setTopToolbar(topToolbar); GridView gv=new GridView(); grid.setView(gv); panel.add(grid); RootPanel.get().add(panel); } private Object[][] getCompanyData() { return new Object[][]{ new Object[]{"3m Co", new Double(71.72), new Double(0.02), new Double(0.03), "9/1 12:00am", "MMM", "Manufacturing"}, new Object[]{"Alcoa Inc", new Double(29.01), new Double(0.42), new Double(1.47), "9/1 12:00am", "AA", "Manufacturing"}, new Object[]{"Altria Group Inc", new Double(83.81), new Double(0.28), new Double(0.34), "9/1 12:00am", "MO", "Manufacturing"}, new Object[]{"American Express Company", new Double(52.55), new Double(0.01), new Double(0.02), "9/1 12:00am", "AXP", "Finance"}, new Object[]{"American International Group, Inc.", new Double(64.13), new Double(0.31), new Double(0.49), "9/1 12:00am", "AIG", "Services"}, new Object[]{"AT&T Inc.", new Double(31.61), new Double(- 0.48), new Double(-1.54), "9/1 12:00am", "T", "Services"}, new Object[]{"Boeing Co.", new Double(75.43), new Double(0.53), new Double(0.71), "9/1 12:00am", "BA", "Manufacturing"}, new Object[]{"Caterpillar Inc.", new Double(67.27), new Double(0.92), new Double(1.39), "9/1 12:00am", "CAT", "Services"}, new Object[]{"Citigroup, Inc.", new Double(49.37), new Double(0.02), new Double(0.04), "9/1 12:00am", "C", "Finance"}, new Object[]{"E.I. du Pont de Nemours and Company", new Double(40.48), new Double(0.51), new Double(1.28), "9/1 12:00am", "DD", "Manufacturing"} }; }
  • Sep 02, 2009
    r264 (new DatetimePicker widget) committed by q8e192   -   new DatetimePicker widget
    new DatetimePicker widget
  • Sep 02, 2009
    r263 (uses TextAlign.LEFT now) committed by q8e192   -   uses TextAlign.LEFT now
    uses TextAlign.LEFT now
  • Aug 01, 2009
    issue 42 (Line 81: Cannot reduce the visibility of the inherited metho...) commented on by webrendezvous   -   I have the same issue <gwtextux-0.3.0>
    I have the same issue <gwtextux-0.3.0>
  • Jul 23, 2009
    issue 42 (Line 81: Cannot reduce the visibility of the inherited metho...) commented on by nvijayap   -   I still face this issue. Version of UX used - gwtextux-0.3.0
    I still face this issue. Version of UX used - gwtextux-0.3.0
  • Jun 28, 2009
    1 issue changed by piste.shredder   -   Issue 58
    Issue 58
  • Jun 28, 2009
    1 issue changed by piste.shredder   -   Issue 58
    Issue 58
  • Jun 26, 2009
    issue 58 (ToastWindow enhance - allow configurable hide delay and size) commented on by piste.shredder   -   Working cur of this created - patch, new versions of sources, and new JAR are all attached. Note though, that the way ToastWindow works currently is pretty much hard wired around all windows being the same height, to ensure proper stacking, and having the same delay to ensure they disappear in same order. For this reason a simple approach has been taking, albeit this should work in most cases. The size and delay are configured globally using new static methods on ToastWindow: public static native void setToastHeight(int height) public static native void setToastWidth(int width) public static native void setToastHideDelay(int hideDelay) Most applications will only want to set a good size / delay for them once, so this should be quite convenient. Dynamic changes are also possible, and they will change new windows created after that point. Stacking could be a little unpredictable if changed whilst statuses are "in flight" though - this seems a bit of a boundary case though. Enjoy - and feedback any observations. -- Rob
    Working cur of this created - patch, new versions of sources, and new JAR are all attached. Note though, that the way ToastWindow works currently is pretty much hard wired around all windows being the same height, to ensure proper stacking, and having the same delay to ensure they disappear in same order. For this reason a simple approach has been taking, albeit this should work in most cases. The size and delay are configured globally using new static methods on ToastWindow: public static native void setToastHeight(int height) public static native void setToastWidth(int width) public static native void setToastHideDelay(int hideDelay) Most applications will only want to set a good size / delay for them once, so this should be quite convenient. Dynamic changes are also possible, and they will change new windows created after that point. Stacking could be a little unpredictable if changed whilst statuses are "in flight" though - this seems a bit of a boundary case though. Enjoy - and feedback any observations. -- Rob
  • Jun 26, 2009
    issue 59 (Build looks broken) commented on by piste.shredder   -   The attached patch cures the build error. Can't say for sure it won't cause runtime errors - although from a code inspection, it seems a pretty simple substitution. Guessing that at some stage in GWT (maybe 2.0.6) the new TextAlign class replaced String values for text alignment cases, and that GWT-Ext-UX hadn't been upgraded for this.
    The attached patch cures the build error. Can't say for sure it won't cause runtime errors - although from a code inspection, it seems a pretty simple substitution. Guessing that at some stage in GWT (maybe 2.0.6) the new TextAlign class replaced String values for text alignment cases, and that GWT-Ext-UX hadn't been upgraded for this.
  • Jun 26, 2009
    issue 59 (Build looks broken) reported by piste.shredder   -   Following error occurs on build: compile: [mkdir] Created dir: E:\MiscProjs\gwtext\gwt-ext-ux\build\out\samples\Showcase2\bin [gwt.javac] Compiling 63 source files to E:\MiscProjs\gwtext\gwt-ext-ux\build\out\samples\Showcase2\bin [gwt.javac] E:\MiscProjs\gwtext\gwt-ext-ux\samples\showcase2\src\com\gwtextux\sample\showcase2\client\grid\GridCellActionsSample.jav a:100: cannot find symbol [gwt.javac] symbol : constructor GridCellActionsPlugin(java.lang.String,<nulltype>) [gwt.javac] location: class com.gwtextux.client.widgets.grid.plugins.GridCellActionsPlugin [gwt.javac] GridCellActionsPlugin cellActionsPlugin = new GridCellActionsPlugin("left", null); [gwt.javac] ^ [gwt.javac] E:\MiscProjs\gwtext\gwt-ext-ux\samples\showcase2\src\com\gwtextux\sample\showcase2\client\grid\RowActionsSample.java:89: setAlign(com.gwtext.client.core.TextAlign) in com.gwtextux.client.widgets.grid.plugins.GroupAction cannot be applied to (java.lang. String) [gwt.javac] groupAction.setAlign("left"); [gwt.javac] ^ Unless I'm doing something wrong - it looks like either the API changed to use a TextAlign object rather than a String, or some convenience constructor that takes a String has been added locally but not checked in.
    Following error occurs on build: compile: [mkdir] Created dir: E:\MiscProjs\gwtext\gwt-ext-ux\build\out\samples\Showcase2\bin [gwt.javac] Compiling 63 source files to E:\MiscProjs\gwtext\gwt-ext-ux\build\out\samples\Showcase2\bin [gwt.javac] E:\MiscProjs\gwtext\gwt-ext-ux\samples\showcase2\src\com\gwtextux\sample\showcase2\client\grid\GridCellActionsSample.jav a:100: cannot find symbol [gwt.javac] symbol : constructor GridCellActionsPlugin(java.lang.String,<nulltype>) [gwt.javac] location: class com.gwtextux.client.widgets.grid.plugins.GridCellActionsPlugin [gwt.javac] GridCellActionsPlugin cellActionsPlugin = new GridCellActionsPlugin("left", null); [gwt.javac] ^ [gwt.javac] E:\MiscProjs\gwtext\gwt-ext-ux\samples\showcase2\src\com\gwtextux\sample\showcase2\client\grid\RowActionsSample.java:89: setAlign(com.gwtext.client.core.TextAlign) in com.gwtextux.client.widgets.grid.plugins.GroupAction cannot be applied to (java.lang. String) [gwt.javac] groupAction.setAlign("left"); [gwt.javac] ^ Unless I'm doing something wrong - it looks like either the API changed to use a TextAlign object rather than a String, or some convenience constructor that takes a String has been added locally but not checked in.
  • Jun 26, 2009
    issue 58 (ToastWindow enhance - allow configurable hide delay and size) reported by piste.shredder   -   ToastWindow provides a very handy way to show user status, but the window size and hide delay cannot be configured. The default delay is rather short, and the window size will be too small for many uses. Will take a look at the code today and see if I can craft a patch - doesn't seem that tricky a one.
    ToastWindow provides a very handy way to show user status, but the window size and hide delay cannot be configured. The default delay is rather short, and the window size will be too small for many uses. Will take a look at the code today and see if I can craft a patch - doesn't seem that tricky a one.
  • Jun 22, 2009
    issue 57 (Cannot find Spinner Class in gwtextux.jar) reported by kinjal.khandhar   -   What steps will reproduce the problem? I downloaded the latest gwtextux.jar,but there is no Spinner class available in that. What is the expected output? What do you see instead? I want to add a spinner to my panel. What version of the product are you using? On what operating system? Please provide any additional information below.
    What steps will reproduce the problem? I downloaded the latest gwtextux.jar,but there is no Spinner class available in that. What is the expected output? What do you see instead? I want to add a spinner to my panel. What version of the product are you using? On what operating system? Please provide any additional information below.
  • Apr 08, 2009
    issue 56 (GroupActionListeners dont work when giving same icon-cls to ...) commented on by saravanan.mrg   -   One more thing is, in the execute method of GroupActionListener I am getting the iconCls value for the action argument. (in the above case action='folder-icon') Am I missing something or is it actually wrong?
    One more thing is, in the execute method of GroupActionListener I am getting the iconCls value for the action argument. (in the above case action='folder-icon') Am I missing something or is it actually wrong?
  • Apr 08, 2009
    issue 56 (GroupActionListeners dont work when giving same icon-cls to ...) commented on by saravanan.mrg   -   In the above code if I provide the iconCls for second GroupAction as 'folder-icon' then the second one's execute method is called for the first GroupAction too.
    In the above code if I provide the iconCls for second GroupAction as 'folder-icon' then the second one's execute method is called for the first GroupAction too.
  • Apr 08, 2009
    issue 56 (GroupActionListeners dont work when giving same icon-cls to ...) commented on by saravanan.mrg   -   In the above code if I provide the iconCls for second GroupAction as folder-icon then only the second one's execute method is called for the first GroupAction too.
    In the above code if I provide the iconCls for second GroupAction as folder-icon then only the second one's execute method is called for the first GroupAction too.
  • Apr 08, 2009
    issue 56 (GroupActionListeners dont work when giving same icon-cls to ...) reported by saravanan.mrg   -   What steps will reproduce the problem? 1. Create two GroupAction with same iconCls 2. Add a GroupActionListener and add different actions on execute 3. Add them to a ColumnWithRowActionsConfig What is the expected output? What do you see instead? Instead of different actions for each GroupAction only the last GroupAction's execute method gets called for all GroupActions What version of the product are you using? On what operating system? gwt-ext-ux-0.4 Please provide any additional information below. Code snippet: <code> GroupAction selectGroupAction = new GroupAction("folder-icon","Select all systems in group",new GroupActionListener() { public boolean execute(GridPanel grid, Record[] records, String action, String groupId) { if(records!=null?records.length>0:false) { chkSelectionModel.selectRecords(records); } return false; } }); selectGroupAction.setAlign("left"); GroupAction deselectGroupAction = new GroupAction("folder1-icon","DeSelect all systems in group",new GroupActionListener() { public boolean execute(GridPanel grid, Record[] records, String action, String groupId) { chkSelectionModel.clearSelections(); return false; } }); deselectGroupAction.setAlign("left"); actionsColumn.setGroupRowActions(new GroupAction[] {selectGroupAction,deselectGroupAction}); </code>
    What steps will reproduce the problem? 1. Create two GroupAction with same iconCls 2. Add a GroupActionListener and add different actions on execute 3. Add them to a ColumnWithRowActionsConfig What is the expected output? What do you see instead? Instead of different actions for each GroupAction only the last GroupAction's execute method gets called for all GroupActions What version of the product are you using? On what operating system? gwt-ext-ux-0.4 Please provide any additional information below. Code snippet: <code> GroupAction selectGroupAction = new GroupAction("folder-icon","Select all systems in group",new GroupActionListener() { public boolean execute(GridPanel grid, Record[] records, String action, String groupId) { if(records!=null?records.length>0:false) { chkSelectionModel.selectRecords(records); } return false; } }); selectGroupAction.setAlign("left"); GroupAction deselectGroupAction = new GroupAction("folder1-icon","DeSelect all systems in group",new GroupActionListener() { public boolean execute(GridPanel grid, Record[] records, String action, String groupId) { chkSelectionModel.clearSelections(); return false; } }); deselectGroupAction.setAlign("left"); actionsColumn.setGroupRowActions(new GroupAction[] {selectGroupAction,deselectGroupAction}); </code>
  • Apr 01, 2009
    issue 44 (record.getId() does not work properly when GWTProxy) commented on by nietzold   -   to avoid the auto id for your record creation. use ArrayReader(int id, RecordDef recordDef) to specify a column index with your own id.
    to avoid the auto id for your record creation. use ArrayReader(int id, RecordDef recordDef) to specify a column index with your own id.
  • Apr 01, 2009
    issue 44 (record.getId() does not work properly when GWTProxy) commented on by nietzold   -   but note this pitfall: if you load your records with this id but later you add new records with myRecordDef.createRecord( Object[] rowData ) then you dont have a id and it uses the autoid starting with 1000. this then can mixed with the "normal" id previously readed. solution: use myRecordDef.createRecord( String id , Object[] rowData ) with your own id.
    but note this pitfall: if you load your records with this id but later you add new records with myRecordDef.createRecord( Object[] rowData ) then you dont have a id and it uses the autoid starting with 1000. this then can mixed with the "normal" id previously readed. solution: use myRecordDef.createRecord( String id , Object[] rowData ) with your own id.
  • Apr 01, 2009
    issue 44 (record.getId() does not work properly when GWTProxy) commented on by nietzold   -   i investigate it and found this out: i you use the GWTProxy then you can also use a custom reader / ArrayReader. if you specify a id column then this column is used. otherwise the autoid code is used for the id. here are the codesnippets which are used for the auto id: Ext.data.Record = function(data, id){ this.id = (id || id === 0) ? id : ++Ext.data.Record.AUTO_ID; this.data = data; }; Ext.data.Record.AUTO_ID = 1000; this record create is caleld from this (look at the marked lines): Ext.data.ArrayReader = Ext.extend(Ext.data.JsonReader, { readRecords : function(o){ var sid = this.meta ? this.meta.id : null; // <------------------- var recordType = this.recordType, fields = recordType.prototype.fields; var records = []; var root = o; for(var i = 0; i < root.length; i++){ var n = root[i]; var values = {}; var id = ((sid || sid === 0) && n[sid] !== undefined && n[sid] !== "" ? n[sid] : null); // <------------------- for(var j = 0, jlen = fields.length; j < jlen; j++){ var f = fields.items[j]; var k = f.mapping !== undefined && f.mapping !== null ? f.mapping : j; var v = n[k] !== undefined ? n[k] : f.defaultValue; v = f.convert(v, n); values[f.name] = v; } var record = new recordType(values, id); // <------------------- record.json = n; records[records.length] = record; } return { records : records, totalRecords : records.length }; } });
    i investigate it and found this out: i you use the GWTProxy then you can also use a custom reader / ArrayReader. if you specify a id column then this column is used. otherwise the autoid code is used for the id. here are the codesnippets which are used for the auto id: Ext.data.Record = function(data, id){ this.id = (id || id === 0) ? id : ++Ext.data.Record.AUTO_ID; this.data = data; }; Ext.data.Record.AUTO_ID = 1000; this record create is caleld from this (look at the marked lines): Ext.data.ArrayReader = Ext.extend(Ext.data.JsonReader, { readRecords : function(o){ var sid = this.meta ? this.meta.id : null; // <------------------- var recordType = this.recordType, fields = recordType.prototype.fields; var records = []; var root = o; for(var i = 0; i < root.length; i++){ var n = root[i]; var values = {}; var id = ((sid || sid === 0) && n[sid] !== undefined && n[sid] !== "" ? n[sid] : null); // <------------------- for(var j = 0, jlen = fields.length; j < jlen; j++){ var f = fields.items[j]; var k = f.mapping !== undefined && f.mapping !== null ? f.mapping : j; var v = n[k] !== undefined ? n[k] : f.defaultValue; v = f.convert(v, n); values[f.name] = v; } var record = new recordType(values, id); // <------------------- record.json = n; records[records.length] = record; } return { records : records, totalRecords : records.length }; } });
  • Mar 11, 2009
    issue 55 (Can you provide a builded release ?) reported by warmax   -   Can you provide a builded release ? Thank you.
    Can you provide a builded release ? Thank you.
  • Feb 23, 2009
    issue 14 (Maven repository for gwt-ext-ux) commented on by aleksander.adamowski   -   I think the project would first have to migrate from Ant to Maven2 for build management (which should be pretty straightfoward thanks to Maven AntRun Plugin: http://maven.apache.org/plugins/maven-antrun-plugin/) before the publishing of releases would be easily managed in an automated fashion.
    I think the project would first have to migrate from Ant to Maven2 for build management (which should be pretty straightfoward thanks to Maven AntRun Plugin: http://maven.apache.org/plugins/maven-antrun-plugin/) before the publishing of releases would be easily managed in an automated fashion.
  • Feb 23, 2009
    issue 14 (Maven repository for gwt-ext-ux) commented on by aleksander.adamowski   -   Proposed Maven artifact naming scheme for gwt-ext-ux: <project> <modelVersion>4.0.0</modelVersion> <groupId>com.google.gwt</groupId> <artifactId>gwt-ext-ux</artifactId> <version>0.3</version> </project>
    Proposed Maven artifact naming scheme for gwt-ext-ux: <project> <modelVersion>4.0.0</modelVersion> <groupId>com.google.gwt</groupId> <artifactId>gwt-ext-ux</artifactId> <version>0.3</version> </project>
  • Feb 15, 2009
    issue 54 (fail to override sorting method for a grid comuln) reported by anuradhaarora   -   What steps will reproduce the problem? I need to override the sorting method for the grid store. how can I achive that ?
    What steps will reproduce the problem? I need to override the sorting method for the grid store. how can I achive that ?
  • Feb 12, 2009
    issue 53 (cannot add spinner to fieldset) reported by marsgirl   -   What steps will reproduce the problem? 1. FieldSet fd = new FieldSet("test"); 2. Spinner spinner = new Spinner(); 3. fd.add(spinner); What is the expected output? What do you see instead? Assumed the spinner would be added to the fieldset, but instead the page was broken, nothing displayed on the page What version of the product are you using? On what operating system? gwtextus-0.3, latest build downloaded on 2/11/2009 Please provide any additional information below.
    What steps will reproduce the problem? 1. FieldSet fd = new FieldSet("test"); 2. Spinner spinner = new Spinner(); 3. fd.add(spinner); What is the expected output? What do you see instead? Assumed the spinner would be added to the fieldset, but instead the page was broken, nothing displayed on the page What version of the product are you using? On what operating system? gwtextus-0.3, latest build downloaded on 2/11/2009 Please provide any additional information below.
  • Feb 11, 2009
    issue 14 (Maven repository for gwt-ext-ux) commented on by cyril.lakech   -   I need to... but the project seems to be definitly DEAD !
    I need to... but the project seems to be definitly DEAD !
  • Jan 26, 2009
    issue 51 (LovCombo doesn't highlight the values for selected items in ...) reported by chandrajeet   -   What steps will reproduce the problem? 1. See LovComboSample 2. Select few items from the drop down 3. it doesn't highlight the selected values in the list What is the expected output? What do you see instead? It Should highlight the selected ones. What version of the product are you using? On what operating system? Latest gwt-ext-ux Showcase demo Please provide any additional information below.
    What steps will reproduce the problem? 1. See LovComboSample 2. Select few items from the drop down 3. it doesn't highlight the selected values in the list What is the expected output? What do you see instead? It Should highlight the selected ones. What version of the product are you using? On what operating system? Latest gwt-ext-ux Showcase demo Please provide any additional information below.
  • Jan 19, 2009
    issue 46 (Grid with filter source missing) commented on by P.MacRaz   -   Unfortunately the the source has not been added yet. It's a sshame because I think a lot of people would like to see how to get the filter plugin up and working.
    Unfortunately the the source has not been added yet. It's a sshame because I think a lot of people would like to see how to get the filter plugin up and working.
  • Jan 15, 2009
    issue 14 (Maven repository for gwt-ext-ux) commented on by wbabachan   -   I need too...
    I need too...
  • Jan 12, 2009
    issue 43 (There are no classes listed below in gwtextux-0.3) commented on by denspbru   -   Hi, I had the same problem. My workaround was: - download libriry from http://www.gwt-ext.com/builds/gwt-ext-ux/2008-09-24/gwtextux-0.4-dev.zip - extract gwtextux.jar from this archive and use it in the project
    Hi, I had the same problem. My workaround was: - download libriry from http://www.gwt-ext.com/builds/gwt-ext-ux/2008-09-24/gwtextux-0.4-dev.zip - extract gwtextux.jar from this archive and use it in the project

Older

  • Dec 29, 2008
    issue 35 (GridSearchPlugin does not search Date type fields) commented on by sunnyhnl   -   I'd just like to confirm this defect. In my case the grid column is coming from an ArrayReader's DateFieldDef field. The field is then rendered by a custom Renderer that uses GWT's DateTimeFormat to format the java.util.Date object. As above, I cannot get search results by typing in dates for a search.
    I'd just like to confirm this defect. In my case the grid column is coming from an ArrayReader's DateFieldDef field. The field is then rendered by a custom Renderer that uses GWT's DateTimeFormat to format the java.util.Date object. As above, I cannot get search results by typing in dates for a search.
  • Dec 12, 2008
    r262 (Removed features that doesn't work. Added some enhacements.) committed by k...@o2.pl   -   Removed features that doesn't work. Added some enhacements.
    Removed features that doesn't work. Added some enhacements.
  • Nov 19, 2008
    issue 49 (Set field value in GridSearch) reported by p.simonazzi   -   I noticed there is a method to get the search field value in the GridSearchPlugin, I think it would be useful to have also a method to set that value externally. The code could be: public native void setSearchValue(String value) /*-{ var plugin = this.@com.gwtext.client.core.JsObject::getJsObj()(); if (plugin.field) plugin.field.setValue(value); }-*/;
    I noticed there is a method to get the search field value in the GridSearchPlugin, I think it would be useful to have also a method to set that value externally. The code could be: public native void setSearchValue(String value) /*-{ var plugin = this.@com.gwtext.client.core.JsObject::getJsObj()(); if (plugin.field) plugin.field.setValue(value); }-*/;
  • Nov 17, 2008
    issue 48 (Small render problem with menus) reported by keidson   -   What steps will reproduce the problem? 1. Just show any menu on screen What is the expected output? What do you see instead? When the menu is rendered, a small blue point appears in the top left corner of that menu, and that blue point disappear when the mouse leave that menu area. What version of the product are you using? On what operating system? gwt-ext 2.0.5 on fedora 9 linux with mozilla firefox 3.0.4 browser.
    What steps will reproduce the problem? 1. Just show any menu on screen What is the expected output? What do you see instead? When the menu is rendered, a small blue point appears in the top left corner of that menu, and that blue point disappear when the mouse leave that menu area. What version of the product are you using? On what operating system? gwt-ext 2.0.5 on fedora 9 linux with mozilla firefox 3.0.4 browser.
  • Nov 11, 2008
    issue 47 (Grid's added plugin is deleted after reconfigure) reported by itmo.spb   -   Steps to reproduce the problem. 1. Create grid panel. GridPanel grid = new GridPanel(); 2. Add plugin grid.addPlugin(somePlugin); 3. reconfigure grid with new column model and store grid.reconfigure(newColumnModel, newStore) Oh, God Added plugin is not visible
    Steps to reproduce the problem. 1. Create grid panel. GridPanel grid = new GridPanel(); 2. Add plugin grid.addPlugin(somePlugin); 3. reconfigure grid with new column model and store grid.reconfigure(newColumnModel, newStore) Oh, God Added plugin is not visible
  • Nov 08, 2008
    issue 46 (Grid with filter source missing) commented on by jantekb   -   ..and javadoc is also missing... please upload these files! this widget is awesome but bit hard to use without the documentation.
    ..and javadoc is also missing... please upload these files! this widget is awesome but bit hard to use without the documentation.
  • Nov 08, 2008
    issue 46 (Grid with filter source missing) reported by jantekb   -   Please include the "Grid with Filter" source into the showcase! Show code button returns: "HTTP Status 404 - /demo-ux/source/grid/GridFilterSample.java.html"
    Please include the "Grid with Filter" source into the showcase! Show code button returns: "HTTP Status 404 - /demo-ux/source/grid/GridFilterSample.java.html"
  • Nov 06, 2008
    r261 (throws errors during checkout. possibly due to the uppercase...) committed by abhijeet.maharana   -   throws errors during checkout. possibly due to the uppercase extension. I will delete this file, checkout, add file with lowercase and commit.
    throws errors during checkout. possibly due to the uppercase extension. I will delete this file, checkout, add file with lowercase and commit.
  • Nov 05, 2008
    r260 (Updated build file to include RowExpander file.) committed by k...@o2.pl   -   Updated build file to include RowExpander file.
    Updated build file to include RowExpander file.
  • Nov 05, 2008
    r259 (Updated paths to RowExpander plugin files. ) committed by k...@o2.pl   -   Updated paths to RowExpander plugin files.
    Updated paths to RowExpander plugin files.
  • Nov 04, 2008
    issue 34 (GWT-Ext 2.0.5 and GWT-Ext-UX 0.3 incompatibility) commented on by pfromb...@hotmail.com   -   It would be nice, if you put the latest version on the download page. Peter
    It would be nice, if you put the latest version on the download page. Peter
  • Nov 04, 2008
    issue 34 (GWT-Ext 2.0.5 and GWT-Ext-UX 0.3 incompatibility) commented on by pfromberg@hotmail.com   -   It would be nice, if you put the latest version on the download page. Peter
    It would be nice, if you put the latest version on the download page. Peter
  • Nov 03, 2008
    ExtensionList (GWT-Ext-UX user extensions list) Wiki page edited by justin.t.riley
  • Nov 03, 2008
    ExtensionList (GWT-Ext-UX user extensions list) Wiki page edited by justin.t.riley
  • Oct 24, 2008
    issue 45 (GridSummaryPlugin works wrong) reported by sergey.ov   -   GridSummaryPlugin in Showcase http://www.gwt-ext.com:8080/demo-ux/#gridSummarySample summarize wrong after editing 'Price' field
    GridSummaryPlugin in Showcase http://www.gwt-ext.com:8080/demo-ux/#gridSummarySample summarize wrong after editing 'Price' field
  • Oct 18, 2008
    ExtensionList (GWT-Ext-UX user extensions list) Wiki page edited by justin.t.riley
 
Hosted by Google Code