Git Product home page Git Product logo

smartgwt's People

Watchers

 avatar

smartgwt's Issues

DataSourceField.setType does not accept DataSource IDs

What steps will reproduce the problem?
1. Using DataSourceField.setType() with a DataSource ID to support nested
structures.

What is the expected output? What do you see instead?
DataSourceField.setType should accept DataSource IDs, however in SmartGWT
it only accepts the FieldType enum.

What version of the product are you using? On what operating system?
GWT 1.5.3 and SmartGWT Nightly 12-01-2008 on Windows Vista.

Please provide any additional information below.
Example use of DataSourceField.setType("idOfADataSource") in SmartClient:
http://forums.smartclient.com/showpost.php?p=11320&postcount=8

Original issue reported on code.google.com by [email protected] on 1 Dec 2008 at 3:20

MenuItems in reversed order

> What steps will reproduce the problem?

    public void onModuleLoad() {
        Menu menu = new Menu();
        menu.addItem(new MenuItem("1"));
        menu.addItem(new MenuItem("2"));
        menu.addItem(new MenuItem("3"));
        new MenuButton("Start", menu).draw();
    }

> What is the expected output?
- Start
-- 1
-- 2
-- 3

> What do you see instead?
- Start
-- 3
-- 2
-- 1

> What version of the product are you using ?
nightly 11-24-2008

> On what operating system ?
FireFox / SuSE Linux

Original issue reported on code.google.com by [email protected] on 25 Nov 2008 at 8:47

SC.logWarn lack, needed to log to Developer Console

What steps will reproduce the problem?
1. Try to do a logging call like SC.logWarn("message")
2.
3.

What is the expected output? What do you see instead?
Finding "message" on the developer console

What version of the product are you using? On what operating system?
Nightly build ob 24/11/2008

Please provide any additional information below.
http://www.smartclient.com/docs/6.5.1/a/b/c/go.html#classMethod..isc.logWarn

Original issue reported on code.google.com by [email protected] on 15 Dec 2008 at 10:58

OperationBinding.setDefaultParams has no effect

  I wanted to define a operation binding with some default parameters, but
the parameters have been never sent over the wire:

        OperationBinding fetch = new OperationBinding();
        fetch.setDataFormat(DSDataFormat.XML);
        fetch.setOperationType(DSOperationType.FETCH);
        fetch.setDataProtocol(DSProtocol.POSTMESSAGE);

        HashMap<String, String> params = new HashMap<String, String>();
        params.put("taxonomyKey", id);
        params.put("linkNamespace","http://www.xbrl.org/2003/linkbase");
        params.put("linkLocalname", "calculationLink");
        params.put("lang", "en");
        fetch.setDefaultParams(params);

Predrag

Original issue reported on code.google.com by [email protected] on 14 Dec 2008 at 2:08

DateItem setInputFormat does not affect the value

What steps will reproduce the problem?
1.
2.
3.

What is the expected output? What do you see instead?


What version of the product are you using? On what operating system?


Please provide any additional information below.



Original issue reported on code.google.com by [email protected] on 10 Dec 2008 at 8:39

Maven2 build deployment

Please start using Maven2 for build and deployment.

I believe it will save time in long run.

Thanks,
--MG

Original issue reported on code.google.com by [email protected] on 1 Dec 2008 at 3:49

CellChangedEvent does not contain cell position

I want to perform an action when I edit a cell in a ListGrid, so I add a
listener:

grid.addCellChangedHandler(new CellChangedHandler() {

    public void onCellChanged(CellChangedEvent event) {
        // what here?
    }
});

I need to obtain at least row and column of the cell from the event but
there isn't any.

I see that many Cell... events extend GridRowColEvent, but not the
CellChangedEvent. Information supplied by this class (row, column, record)
would be quite sufficient.

Original issue reported on code.google.com by [email protected] on 2 Dec 2008 at 11:06

Tab and SectionStackSection classes setTitle() don't work after rendering

The setTitle() method is used to set the label for the Tab or the 
SectionStackSection.  But after those are created/rendered, calling 
setTitle() does not change the label.

TabSet.setTabTitle() and SectionStack.setSectionTitle() do change the label 
- but it would be better and more consistent if setTitle did it.

Original issue reported on code.google.com by [email protected] on 8 Dec 2008 at 4:59

CheckBox setTitle doesn'twork after components has benn rendered

What steps will reproduce the problem?
1. Create a textItem with a change handler like in tab showcase example
and use it to change the checkbox title

    textItem.addChangedHandler(new ChangedHandler() {  
        public void onChanged(ChangedEvent event) {
            checkBoxItem.setTitle((event.getValue() == null ? "Text":
event.getValue() + ""));
            checkBoxItem.updateState();
            }  
        });   

What is the expected output? What do you see instead?

CheckBox text has to change but nothing happens


What version of the product are you using? On what operating system?

SmartGwt 1.0b1, Gwt 1.5.3 ,WinXP


Original issue reported on code.google.com by [email protected] on 16 Dec 2008 at 11:01

ListGrid getDrawnRows() & getVisibleRows() returns void

The ListGrid methods getDrawnRows() and getVisibleRows() both return void.  
The Javadoc for those methods talks about the underlying SmartClient 
javascript methods which return an array of integers.

Need getDrawnRows() and getVisibleRows() to return int[] with 2 entries 
like the Javascript method or create two sets of methods:

getFirstDrawnRow()/getLastDrawnRow()
getFirstVisibleRow()/getLastVisibleRow()


Original issue reported on code.google.com by [email protected] on 10 Dec 2008 at 11:02

overriding method transformRequest or transformResponse on RestDataSource is not called

What steps will reproduce the problem?
1. Create your own DataSource class that has RestDataSource as its base.
2. Override the transformRequest method
3. It will not be called before requests are done

What is the expected output? What do you see instead?
It should call my implementation that could change the outgoing event. 
Instead it is never being called.

What version of the product are you using? On what operating system?
Nightly build of 24-11

Please provide any additional information below.



Original issue reported on code.google.com by [email protected] on 3 Dec 2008 at 8:35

Method missing: ListGrid.fetchRelatedData()

What steps will reproduce the problem?
1. Trying to call ListGrid.fetchRelatedData()

What is the expected output? What do you see instead?
This methods exist in SmartClient 7.0beta, however it is not defined in
SmartGWT.

What version of the product are you using? On what operating system?
GWT 1.5.3 and SmartGWT 1.0b1 on Windows Vista.


Original issue reported on code.google.com by [email protected] on 25 Nov 2008 at 9:08

No Canvas get/set title implemented

What steps will reproduce the problem?
1. Canvas canvas = new Canvas();
2. canvas.setTitle("A title");
3. String title = canvas.getTitle();

What is the expected output? What do you see instead?
title = "", while one would expect "A title"

What version of the product are you using? On what operating system?
1.0b1, Windows Vista

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 8 Dec 2008 at 9:24

Page.setTitle() does not accept an argument

What steps will reproduce the problem?
1. Call com.smartgwt.client.util.Page.setTitle()
2. Will not accept any argument

What is the expected output? What do you see instead?
There is no expected output because we couldn't define the title.
The window title ends up being set to "undefined" (without the quotes).

What version of the product are you using? On what operating system?
I'm using GWT 1.5.3 and SmartGWT 1.0b1 on Windows Vista.

Original issue reported on code.google.com by [email protected] on 21 Nov 2008 at 11:59

Differentiate visually between sortable and non sortable columns

Differentiate visually between sortable and non sortable columns.

If we need to disable sorting on some columns how would a user be
able to know (by looking at column headers) which columns allow sorting
and which columns don't allow it?

Thanks,
--MG

see also
http://forums.smartclient.com/showthread.php?t=3110

Original issue reported on code.google.com by [email protected] on 1 Dec 2008 at 3:48

Grid with server side pagination

Without pagination controls it would be hard to migrate 
existing GWT-EXT applications to smartGWT.

Thanks,
--MG

Discussion link:
http://forums.smartclient.com/showthread.php?p=12358



Original issue reported on code.google.com by [email protected] on 1 Dec 2008 at 4:08

TreeNode.find* methods generate ClassCastException

  If you try to use any of TreeNode.find*() methods, you get the following
exception:

Uncaught JavaScript exception [java.lang.ClassCastException:
com.smartgwt.client.widgets.tree.Tree cannot be cast to
com.smartgwt.client.widgets.tree.TreeNode
    at com.smartgwt.client.widgets.tree.Tree.find(Tree.java)

Original issue reported on code.google.com by [email protected] on 17 Dec 2008 at 12:12

Weird effect in group table with sorting

Strange ordering effect in group table.

I'm trying example

http://www.smartclient.com/smartgwt/showcase/#featured_dynamic_grouping

When clinking on 'Government' header it reorders element within groups by
governement,

but for some reason it also reorders groups. Groups started with 'Asia'
and after click they start with 'South America'.

It is very counter intuitive for a user to understand what happens.

Thanks,
--MG

Discussion link here
http://forums.smartclient.com/showthread.php?t=3112

Original issue reported on code.google.com by [email protected] on 1 Dec 2008 at 3:53

Checkbox column for multiple row selection

Checkbox column for multiple row selection.

I understand that it might be too old fashioned but still useful...

For example here I could select whole group with a single click

http://webdev2.sun.com/example/faces/table/groupTable.jsp

Please consider that addition...

Thanks,
--MG

Discussion:
http://forums.smartclient.com/showthread.php?t=3109



Original issue reported on code.google.com by [email protected] on 1 Dec 2008 at 3:58

Uncaught JavaScript exception [com.google.gwt.dev.shell.HostedModeException: Expected primitive type int; actual value was undefined

By invoking TreeGrid.getRecords() occurs the following exception:

Uncaught JavaScript exception
[com.google.gwt.dev.shell.HostedModeException: Expected primitive type int;
actual value was undefined
    at com.google.gwt.dev.shell.JsValueGlue.get(JsValueGlue.java:51)
    at com.google.gwt.dev.shell.ModuleSpace.invokeNativeInt(ModuleSpace.java:206)
    at
com.google.gwt.dev.shell.JavaScriptHost.invokeNativeInt(JavaScriptHost.java:75)
    at
com.smartgwt.client.util.JSOHelper.getJavaScriptObjectArraySize(JSOHelper.java)
    at com.smartgwt.client.util.JSOHelper.toArray(JSOHelper.java:62)
    at
com.smartgwt.client.widgets.grid.ListGrid.convertToListGridRecordArray(ListGrid.
java:5164)
    at com.smartgwt.client.widgets.grid.ListGrid.getRecords(ListGrid.java:4723)

Original issue reported on code.google.com by [email protected] on 17 Dec 2008 at 12:47

setStyleName doesn't seem to work

What steps will reproduce the problem?
1. I've tried to modify the style of a widget, for instance Button, but
without result.

What is the expected output? What do you see instead?
I expected to have the same behaviour than the setPrimaryStyle,
setStyleName, and addStyleName we have in GWT. It could be nice to
homogenize the api.

What version of the product are you using? On what operating system?
1.0.b1

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 19 Nov 2008 at 5:36

Masking like in GWT-EXT

Masking of individual components

More info here

http://forums.smartclient.com/showthread.php?t=3106

Thanks,
--MG

Original issue reported on code.google.com by [email protected] on 1 Dec 2008 at 3:51

popupmenu performance issue

What steps will reproduce the problem?
1. run showcase,right click tabpanel title to show popupmenu
 the popup menu is extremely slow which causing the whole showcase sluggish.

browser: firefox 3.0.4. 
pc: win xp, thinkpad t61


Original issue reported on code.google.com by [email protected] on 26 Nov 2008 at 1:11

Group controls in groupable table

Here is except from discussion about group controls:
http://forums.smartclient.com/showthread.php?t=3107

When we group large table is it possible to have
pagination controls within each group?

Is it possible to add individual controls for each group header?

Something like:

http://www.gwt-ext.com/demo-ux/#gridRowActionsSample

Thanks,
--MG

----------------------------------

Isomorphic  Isomorphic
Administrator

Join Date: May 2006
Posts: 5,125
Default
The built-in grouping behavior doesn't have pagination (all data needs to
be loaded client-side for a purely client-side grouping behavior). Where
did you have in mind placing the pagination controls? As a custom
component, you might built this as a SectionStack of ListGrids..

On controls in the group header, you could do this with an override
getGroupTitle() that produces <img> tags.


----------------------------------

mgrouch  

It would be very difficult to align columns across groups if we
implement it as Stack of ListGrids.

Also client side grouping doesn't make much sense with large tables.
If you ask to group by you would not even end up displaying all groups
available in whole dataset.

With server side grouping and pagination each group has to be paginated
separately so logically pagination control for each group could be
somewhere next to 'minimize/maximize' group control.

Thanks,
--MG


Original issue reported on code.google.com by [email protected] on 1 Dec 2008 at 3:57

FileUpload dialog

How can we replace file upload dialog from GWT-EXT? What is the analogue
in SmartGWT? This is a missing feature which adds to migration pains from 
GWT-EXT.

Thanks,
--MG

http://forums.smartclient.com/showthread.php?t=3102

Original issue reported on code.google.com by [email protected] on 1 Dec 2008 at 4:00

setPlaceHolderProperties() should accept a java.util.Map

What steps will reproduce the problem?
1. Trying to pass a java.util.Map to setPlaceHolderProperties()

What is the expected output? What do you see instead?
I expect it to accept a Map just like setDropLineProperties() but instead
it will only accept a Canvas.

What version of the product are you using? On what operating system?
GWT 1.5.3 and SmartGWT Nightly 12-04-2008 on Windows Vista.

Please provide any additional information below.
setPlaceHolderProperties() accepts either a Canvas or Properties in
SmartClient.

Original issue reported on code.google.com by [email protected] on 7 Dec 2008 at 8:37

SmartGWT does not resolve resources based on module base URL

See discussion in http://forums.smartclient.com/showthread.php?t=3128.

When deploying a SmartGWT application in a different location than the
respective host page, GWT loads SmartGWT relative to the module base URL,
but SmartGWT tries to load resources relative to the context URL.
Example: 
Servlet delivering the host page: /appContext/appController.form
SmartGWT/GWT application resides in : /appContext/gwt-files/...
GWT loads SmartGWT in /appContext/gwt-files/sc/....
SmartGWT tries to locate resources in /appContext/sc/...

Original issue reported on code.google.com by [email protected] on 8 Dec 2008 at 3:33

Setting a FieldValueExtractor on a DataSourceField generates IllegalArgumentException

  Try to add a FieldValueExtractor to a DataSourceField, that basicaly does
nothing:

field.setFieldValueExtractor(new FieldValueExtractor() {

            public Object execute(Object record, Object value,
                return null;
            }

        });

and by starting the application, you will get the following exception;

com.google.gwt.dev.shell.ie.IDispatchImpl$HResultException:
java.lang.IllegalArgumentException: object is not an instance of declaring
class
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.jav
a:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:103)
    at
com.google.gwt.dev.shell.ie.IDispatchImpl.callMethod(IDispatchImpl.java:126)
    at com.google.gwt.dev.shell.ie.IDispatchProxy.invoke(IDispatchProxy.java:155)
    at com.google.gwt.dev.shell.ie.IDispatchImpl.Invoke(IDispatchImpl.java:294)
    at com.google.gwt.dev.shell.ie.IDispatchImpl.method6(IDispatchImpl.java:194)
    at org.eclipse.swt.internal.ole.win32.COMObject.callback6(COMObject.java:117)
    at org.eclipse.swt.internal.ole.win32.COM.VtblCall(Native Method)
    at org.eclipse.swt.internal.ole.win32.IDispatch.Invoke(IDispatch.java:64)
    at org.eclipse.swt.ole.win32.OleAutomation.invoke(OleAutomation.java:493)
    at org.eclipse.swt.ole.win32.OleAutomation.invoke(OleAutomation.java:417)
    at
com.google.gwt.dev.shell.ie.ModuleSpaceIE6.doInvokeOnWindow(ModuleSpaceIE6.java:
67)
    at
com.google.gwt.dev.shell.ie.ModuleSpaceIE6.doInvoke(ModuleSpaceIE6.java:152)
    at com.google.gwt.dev.shell.ModuleSpace.invokeNative(ModuleSpace.java:447)
    at com.google.gwt.dev.shell.ModuleSpace.invokeNativeVoid(ModuleSpace.java:248)
    at
com.google.gwt.dev.shell.JavaScriptHost.invokeNativeVoid(JavaScriptHost.java:107
)
    at
com.smartgwt.client.data.DataSourceField.setFieldValueExtractor(DataSourceField.
java)
    at
com.abzreporting.reportfactory.gwt.client.TaxonomySource.<init>(TaxonomySource.j
ava:42)
    at
com.abzreporting.reportfactory.gwt.client.TaxonomyPanel.<init>(TaxonomyPanel.jav
a:22)
    at
com.abzreporting.reportfactory.gwt.client.TaxonomyExample.onModuleLoad(TaxonomyE
xample.java:46)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.jav
a:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.google.gwt.dev.shell.ModuleSpace.onLoad(ModuleSpace.java:320)
    at
com.google.gwt.dev.shell.BrowserWidget.attachModuleSpace(BrowserWidget.java:329)
    at
com.google.gwt.dev.shell.ie.BrowserWidgetIE6.access$300(BrowserWidgetIE6.java:37
)
    at
com.google.gwt.dev.shell.ie.BrowserWidgetIE6$External.gwtOnLoad(BrowserWidgetIE6
.java:76)
    at
com.google.gwt.dev.shell.ie.BrowserWidgetIE6$External.invoke(BrowserWidgetIE6.ja
va:139)
    at com.google.gwt.dev.shell.ie.IDispatchImpl.Invoke(IDispatchImpl.java:294)
    at com.google.gwt.dev.shell.ie.IDispatchImpl.method6(IDispatchImpl.java:194)
    at org.eclipse.swt.internal.ole.win32.COMObject.callback6(COMObject.java:117)
    at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method)
    at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1925)
    at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2966)
    at com.google.gwt.dev.GWTShell.pumpEventLoop(GWTShell.java:720)
    at com.google.gwt.dev.GWTShell.run(GWTShell.java:593)
    at com.google.gwt.dev.GWTShell.main(GWTShell.java:357)
    at com.google.gwt.dev.shell.ie.IDispatchProxy.invoke(IDispatchProxy.java:187)
    at com.google.gwt.dev.shell.ie.IDispatchImpl.Invoke(IDispatchImpl.java:294)
    at com.google.gwt.dev.shell.ie.IDispatchImpl.method6(IDispatchImpl.java:194)
    at org.eclipse.swt.internal.ole.win32.COMObject.callback6(COMObject.java:117)
    at org.eclipse.swt.internal.ole.win32.COM.VtblCall(Native Method)
    at org.eclipse.swt.internal.ole.win32.IDispatch.Invoke(IDispatch.java:64)
    at org.eclipse.swt.ole.win32.OleAutomation.invoke(OleAutomation.java:493)
    at org.eclipse.swt.ole.win32.OleAutomation.invoke(OleAutomation.java:417)
    at
com.google.gwt.dev.shell.ie.ModuleSpaceIE6.doInvokeOnWindow(ModuleSpaceIE6.java:
67)
    at
com.google.gwt.dev.shell.ie.ModuleSpaceIE6.doInvoke(ModuleSpaceIE6.java:152)
    at com.google.gwt.dev.shell.ModuleSpace.invokeNative(ModuleSpace.java:447)
    at com.google.gwt.dev.shell.ModuleSpace.invokeNativeVoid(ModuleSpace.java:248)
    at
com.google.gwt.dev.shell.JavaScriptHost.invokeNativeVoid(JavaScriptHost.java:107
)
    at
com.smartgwt.client.data.DataSourceField.setFieldValueExtractor(DataSourceField.
java)
    at
com.abzreporting.reportfactory.gwt.client.TaxonomySource.<init>(TaxonomySource.j
ava:42)
    at
com.abzreporting.reportfactory.gwt.client.TaxonomyPanel.<init>(TaxonomyPanel.jav
a:22)
    at
com.abzreporting.reportfactory.gwt.client.TaxonomyExample.onModuleLoad(TaxonomyE
xample.java:46)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.jav
a:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.google.gwt.dev.shell.ModuleSpace.onLoad(ModuleSpace.java:320)
    at
com.google.gwt.dev.shell.BrowserWidget.attachModuleSpace(BrowserWidget.java:329)
    at
com.google.gwt.dev.shell.ie.BrowserWidgetIE6.access$300(BrowserWidgetIE6.java:37
)
    at
com.google.gwt.dev.shell.ie.BrowserWidgetIE6$External.gwtOnLoad(BrowserWidgetIE6
.java:76)
    at
com.google.gwt.dev.shell.ie.BrowserWidgetIE6$External.invoke(BrowserWidgetIE6.ja
va:139)
    at com.google.gwt.dev.shell.ie.IDispatchImpl.Invoke(IDispatchImpl.java:294)
    at com.google.gwt.dev.shell.ie.IDispatchImpl.method6(IDispatchImpl.java:194)
    at org.eclipse.swt.internal.ole.win32.COMObject.callback6(COMObject.java:117)
    at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method)
    at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1925)
    at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2966)
    at com.google.gwt.dev.GWTShell.pumpEventLoop(GWTShell.java:720)
    at com.google.gwt.dev.GWTShell.run(GWTShell.java:593)
    at com.google.gwt.dev.GWTShell.main(GWTShell.java:357)

Original issue reported on code.google.com by [email protected] on 14 Dec 2008 at 12:52

Missing return in ListGrid.hasChanges()

The hasChanges method in the ListGrid class is declared as follows:

public void hasChanges()

In order to be useful, it needs to return something.

What version of the product are you using? On what operating system?
smartgwt-1.0b1

Please provide any additional information below.
Copied from: http://forums.smartclient.com/showthread.php?p=12702#post12702

Original issue reported on code.google.com by [email protected] on 5 Dec 2008 at 1:17

no tooltip spupport !?!

What steps will reproduce the problem?
1. Try to add a "tooltip" to a button
2.
3.

What is the expected output? What do you see instead?

I don;t know the function to do this, 'cause you did override the GWT 
"setTitle" function, which was for tooltip, and changed its semantic.  


What version of the product are you using? On what operating system?
1.0.b1


Please provide any additional information below.



Original issue reported on code.google.com by [email protected] on 19 Nov 2008 at 12:58

addStyleName creates an extra div instead of adding the new style class to a widget

When creating e.g. a label, I want to add a style class (preserving the
default style) for some specific formatting:

VLayout layout = new VLayout(); 
... 
Label l = new Label("foo"); 
l.addStyleName("testLabel");
... 
layout.addMember(l); 
...

But this creates a new div to the bottom of the page and applies the style
to that div instead of applying it to the label. 

This is the "stacktrace":

UIObject::addStyleName -> 
UIObject::getStyleElement -> 
BaseWidget::getElement -> 
BaseWidget::getElement(true) 
-> (div will be drawn)

I think the code intends to call UIObject::getElement, but this method is
overwritten by BaseWidget::getElement causing the issue.

Original issue reported on code.google.com by [email protected] on 8 Dec 2008 at 3:36

Methods missing: ValuesManager.editNewRecord() and DynamicForm.editNewRecord()

What steps will reproduce the problem?
1. Trying to call ValuesManager.editNewRecord() or DynamicForm.editNewRecord()

What is the expected output? What do you see instead?
These methods exist in SmartClient 7.0beta, however they are not defined in
SmartGWT.

What version of the product are you using? On what operating system?
GWT 1.5.3 and SmartGWT 1.0b1 on Windows Vista.




Original issue reported on code.google.com by [email protected] on 22 Nov 2008 at 2:45

VStack should expose SC's getMembers()

What steps will reproduce the problem?
1. Create a VStack and add some members using addMember(...)
2. Get the list of members using getMembers() (described in the SmartClient
API docs)

What is the expected output? What do you see instead?
I expect to get back a list of the members of the stack but the method is
not implemented in SmartGWT.

What version of the product are you using? On what operating system?
4 Dec 2008 nightly build of SmartGWT
GWT 1.5.3
Mac OS X 1.5.5

Original issue reported on code.google.com by [email protected] on 5 Dec 2008 at 7:24

Source code not in SVN

What steps will reproduce the problem?
1. svn co http://smartgwt.googlecode.com/svn/trunk/ smartgwt-read-only
2.
3.

What is the expected output? What do you see instead?
I get an empty trunk directory

What version of the product are you using? On what operating system?

1.0b1

Please provide any additional information below.

The source seems to be in the jar so I will look at it in there for it. 

Original issue reported on code.google.com by [email protected] on 19 Nov 2008 at 5:40

Propose "Ext-Js" themes along the other ones

SmartClient has nice and powerful features, but the look is quite
"different" from what we used to see elsewhere. It is a little bit the same
problemn as the Swing look wrt to the "native" look on Windows or MacOS.
I know that everything is a matter of taste and feel, but it could be
interesting to offer along the other themes a "Ext-JS"-like themes (I know
you have bad expreience with this :) ) in ordre to be able to integrate the
library with GWT-ext for instance, whichquite difficult to do for now.
Homogeneous look is quite mandatory in web development.
Could it be possible to do this without a great effort?
regards
Xavier

Original issue reported on code.google.com by [email protected] on 18 Nov 2008 at 10:18

scrolling bug

What steps will reproduce the problem?
1. go to http://www.smartclient.com/smartgwt/showcase/#featured_gwt_integration
2. make browser window small..
3. schrolers refresh wrong..
4. sometimes scrollers shows sometimes not..
5. finaly it's  looks wired ses the atachment

What is the expected output? What do you see instead?


What version of the product are you using? On what operating system?

latest nigtly build and site showcase.. are the same bug.
Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 11 Dec 2008 at 3:37

Attachments:

CellContextClickEvent does not happen in production mode, only in GWT hosted mode

What steps will reproduce the problem?
treeGrid.addCellContextClickHandler(new CellContextClickHandler() {
    public void onCellContextClick(final CellContextClickEvent event) {
        SC.say("Hi!");
    }
});

What is the expected output? What do you see instead?
Right click on the cell. In GWT hosted mode I see a message "Hi!", as
expected. When I deploy to the production server, I see browser context menu.

What version of the product are you using? On what operating system?
I tried with build from 2008-12-02 and 2008-12-04, both yield the same result.

Please provide any additional information below.

GWT 1.5.3, smartgwt2008-12-04.jar, Eclipse Ganymede, Cypal Studio,
jdk1.6.0_10, Tomcat 6.0.18

Original issue reported on code.google.com by [email protected] on 13 Dec 2008 at 4:35

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.