Tuesday, May 31, 2011
creating war
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
EMF Error
List<Country> list = em.createQuery("select c from Country c").getResultList();
-Pav
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
Re: Action on a ImageResourceCell
stucking with creating a clickable Image Cell
On 31 Mai, 16:16, Sydney <sydney.henr...@gmail.com> wrote:
> I actually followed this tutorial and now it works fine:http://webcentersuite.blogspot.com/2011/03/custom-gwt-clickable-cell-...
--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
Best Practise: Database Java Backend
maybe there were some answers serveral times on this topic but I
couldnt find them.
I am looking for a best practise of gwt project setup with java
backend.
As usual we are setting up our database first and then doing the
object relation mapping afterwards, creating DTOs and client classes.
For now this is a very manual job and we have to do mapping each time
by hand in jpa. This costs a lot of time and its redundant work(db
design and then design it again in orm).
Is there a better way to do this via Spring or Seam automaticaly?
Sorry but now I am a little bit lost what options I could use.
If this is the wrong group to ask please let me know.
Thanks for your help
--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
Re: Action on a ImageResourceCell
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
Re: GWT CellList Drag and Drop
Its working fine now. Because i have missed one jar file in class
path.
If you have time, please create an article about CellList re-order.
Thanks
Jee
On May 31, 6:33 pm, icamts <ica...@gmail.com> wrote:
> Hi,
> add draggable-plugin-1.0.4, remove gquery-dnd-bundle-1.0.3. If you're
> not using Maven move droppable-plugin-1.0.6 before gwt 2.3 library in
> compilation order. Hope it helps.
>
> Cheers,
> Luca
>
> On 31 Mag, 15:16, Jee <sundarra...@gmail.com> wrote:
>
>
>
>
>
>
>
> > Below jars are being used.But facing the issue with "WITH"
>
> > gquery-dnd-bundle-1.0.3
> > gwtquery-1.0.0-2.3.0
> > droppable-plugin-1.0.6
> > gwt 2.3
>
> > $(draggedCell).css(CSS.DISPLAY.with(Display.NONE));
>
> > $(draggedCell).css(CSS.DISPLAY.with(Display.BLOCK));
>
> > please let us know how to proceed.
>
> > Thanks
> > Jee
>
> > On May 31, 5:24 pm, Julien Dramaix <julien.dram...@gmail.com> wrote:
>
> > > You are using an old version of gwtquery.
>
> > > Download the last stable version of GwtQuery compatible with the gwt
> > > version you are using :http://code.google.com/p/gwtquery/wiki/Downloads
> > > The last version of the draggable plugin :http://code.google.com/p/gwtquery-plugins/downloads/detail?name=dragg...
> > > The last version of the droppable plugin compliant with the gwt
> > > version you are using :
> > > - for gwt 2.2 :http://code.google.com/p/gwtquery-plugins/downloads/detail?name=dropp...
> > > - for gwt 2.3 :http://code.google.com/p/gwtquery-plugins/downloads/detail?name=dropp...
>
> > > Put these 3 jars in your classpath and it's should work.
>
> > > Julien
>
> > > On May 31, 12:44 pm, Jee <sundarra...@gmail.com> wrote:
>
> > > > Thanks.
> > > > I tried to implement you given example in eclipse Helios.
> > > > But i got errors in SortableCellDragAndDropHandler Class
> > > > Please guide to solve problems
>
> > > > 1.$(draggedCell).css(CSS.DISPLAY.with(Display.NONE)); --- The method
> > > > with(Style.Display) is undefined for the type DisplayProperty
>
> > > > 2.$(draggedCell).css(CSS.DISPLAY.with(Display.BLOCK)); ---- The
> > > > method with(Style.Display) is undefined for the type DisplayProperty
>
> > > > 3.allCells.isEmpty() --- The method isEmpty() is undefined for the
> > > > type GQuery
>
> > > > public void onDragStart(DragStartEvent event) {
> > > > Element draggedCell = event.getDraggable();
> > > > $(draggedCell).css(CSS.DISPLAY.with(Display.NONE));
> > > > }
>
> > > > public void onDragStop(DragStopEvent event) {
> > > > Element draggedCell = event.getDraggable();
> > > > $(draggedCell).css(CSS.DISPLAY.with(Display.BLOCK));
>
> > > > }
>
> > > > if (allCells.isEmpty()) {
> > > > // no cells, the placeholder should just be added in the begin
> > > > of the cell
> > > > // list
> > > > return null;
> > > > }
>
> > > > Thanks
> > > > Jee
>
> > > > On May 30, 2:18 pm, Julien Dramaix <julien.dram...@gmail.com> wrote:
>
> > > > > Yes you can...
> > > > > I wrote an example on how to use gwtquery drag-and-drop plugin for
> > > > > implementing re-ordering in CellList :
>
> > > > > Example :http://julien-labs.googlecode.com/svn-history/r7/trunk/sortablecellwi...
>
> > > > > Java code :http://code.google.com/p/julien-labs/source/browse/trunk/sortablecell...
>
> > > > > The code is documented and easy to understand. If I found time, I will
> > > > > write an article about how to implement reordering in CellWidget...
>
> > > > > Julien
>
> > > > > On Mon, May 30, 2011 at 8:38 AM, Jee <sundarra...@gmail.com> wrote:
> > > > > > Can we re-order CellList .. using DND. If we have 5 items in the
> > > > > > CellList, can we move 2nd item to 5th Item in the same CellList.
>
> > > > > > Thanks
> > > > > > Jee
>
> > > > > > On May 29, 1:03 am, Julien Dramaix <julien.dram...@gmail.com> wrote:
> > > > > >> Could you explain more what you are looking for ? What do you mean by
> > > > > >> "within CellList" ?
>
> > > > > >> On May 28, 2:11 pm, Jee <sundarra...@gmail.com> wrote:
>
> > > > > >> > Hi Julien,
>
> > > > > >> > thanks.
> > > > > >> > Its great to see your reply. CellList is supporting drag and drop.
> > > > > >> > but i am looking within CellList whether drag and drop is supporting
> > > > > >> > or not.
> > > > > >> > I tried to get about it, but i still failed.
> > > > > >> > Please suggest on this.
>
> > > > > >> > Thanks
> > > > > >> > Jee
>
> > > > > >> > On May 27, 6:47 pm, Julien Dramaix <julien.dram...@gmail.com> wrote:> You can use the drag-and-drop plugins of gqtquery to enbale drag and
> > > > > >> > > drop on any CellWidget.
>
> > > > > >> > > Example :http://gwtquery-plugins.googlecode.com/svn/trunk/droppable/demo/Conta...
> > > > > >> > > Documentation :http://code.google.com/p/gwtquery-plugins/wiki/DragAndDropPluginForGW...
>
> > > > > >> > > Julien
>
> > > > > >> > > On May 27, 10:42 am, Jee <sundarra...@gmail.com> wrote:
>
> > > > > >> > > > Hi,
>
> > > > > >> > > > We would like to replace the old table inside Menu to use cellList.
> > > > > >> > > > However, we
>
> > > > > >> > > > don't know whether GWT cellList support drag and drop or not. Drag and
> > > > > >> > > > drop is
>
> > > > > >> > > > supported using old table inside Menu but we have to make sure this
> > > > > >> > > > feature
>
> > > > > >> > > > still works in cellList before we can replace it.
>
> > > > > >> > > > Thanks,
> > > > > >> > > > Jee
>
> > > > > > --
> > > > > > You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
> > > > > > To post to this group, send email to google-web-toolkit@googlegroups.com.
> > > > > > To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
> > > > > > For more options, visit this group athttp://groups.google.com/group/google-web-toolkit?hl=en.-Hidequotedtext -
>
> > > > - Show quoted text -
--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
Re: SplitLayoutPanel Sizing?
Alternatively you can provide explicit size, see Recipes here:
http://code.google.com/intl/it-IT/webtoolkit/doc/latest/DevGuideUiPanels.html#Recipes
Cheers,
Luca
On 31 Mag, 10:54, Nick Apperley <napper...@gmail.com> wrote:
> In the application (using GWT 2.3) there is a SplitLayoutPanel with a
> widget on the left (East) and one on the right (West). When viewing
> the application in both FF 3.6 and FF 4 the combo box in the left side
> of the SplitLayoutPanel has its end chopped off. No resizing of the
> SplitLayoutPanel with its divider will show the rest of it.
>
> Another issue with the SplitLayoutPanel is that the widget on the
> right side doesn't display in both FF 3.6 and FF4. Initially I thought
> it was because the widget was reporting the incorrect width however
> after fixing the width reporting the issue still occurs.
>
> What is the best way to size SplitLayoutPanel so that it will allocate
> half to one side and half to another anytime its contents changes?
> What might cause SplitLayoutPanel to not display a Widget on a
> particular side?
>
> Below is the contents of the UIBinder file which are relevant to
> SplitLayoutPanel:
>
> ---------------------------------------------------------------------------
> <g:west size="1.0">
> <g:VerticalPanel ui:field="navLayout">
> <g:Label text="Image" ui:field="imageLbl"/>
> <g:ListBox ui:field="zonesCbo"/>
> <g:HTMLPanel ui:field="imageLayout">
> <div id="imageDiv">
> </div>
> <div id="imageMapDiv">
> </div>
> </g:HTMLPanel>
> </g:VerticalPanel>
> </g:west>
> ---------------------------------------------------------------------------
>
> The right side of the SplitLayoutPanel has its contents dynamically
> added/removed. On the left side imageDiv/imageMapDiv have their
> contents dynamically change, depending on what has been selected at
> the time by the user. Since some custom HTML elements is used
> (ImageElement and MapElement) in the left side it could make sizing
> the SplitLayoutPanel very tricky.
--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
Re: Using custom LocalMessages apart from Locales
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
Re: Big Daddy example problems
port is in use
On Tue, May 31, 2011 at 6:07 AM, Adolfo Panizo Touzon
<adolfo.panizo@gmail.com> wrote:
> Can the application runs in other port??
>
> 2011/5/30 Zachariah Young <zpyoung@gmail.com>
>>
>> @bbgott
>> I'm getting the same issue also on Ubuntu. The solutions work just fine
>> on Windows. Could it be that Ubuntu has the 8888 port blocked or something?
>> Also what did u hard code to get the Android application to work.
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Google Web Toolkit" group.
>> To post to this group, send email to google-web-toolkit@googlegroups.com.
>> To unsubscribe from this group, send email to
>> google-web-toolkit+unsubscribe@googlegroups.com.
>> For more options, visit this group at
>> http://groups.google.com/group/google-web-toolkit?hl=en.
>
>
>
> --
> El precio es lo que pagas. El valor es lo que recibes.
> Warren Buffet
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google Web Toolkit" group.
> To post to this group, send email to google-web-toolkit@googlegroups.com.
> To unsubscribe from this group, send email to
> google-web-toolkit+unsubscribe@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>
--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
Re: GWT CellList Drag and Drop
add draggable-plugin-1.0.4, remove gquery-dnd-bundle-1.0.3. If you're
not using Maven move droppable-plugin-1.0.6 before gwt 2.3 library in
compilation order. Hope it helps.
Cheers,
Luca
On 31 Mag, 15:16, Jee <sundarra...@gmail.com> wrote:
> Below jars are being used.But facing the issue with "WITH"
>
> gquery-dnd-bundle-1.0.3
> gwtquery-1.0.0-2.3.0
> droppable-plugin-1.0.6
> gwt 2.3
>
> $(draggedCell).css(CSS.DISPLAY.with(Display.NONE));
>
> $(draggedCell).css(CSS.DISPLAY.with(Display.BLOCK));
>
> please let us know how to proceed.
>
> Thanks
> Jee
>
> On May 31, 5:24 pm, Julien Dramaix <julien.dram...@gmail.com> wrote:
>
>
>
>
>
>
>
> > You are using an old version of gwtquery.
>
> > Download the last stable version of GwtQuery compatible with the gwt
> > version you are using :http://code.google.com/p/gwtquery/wiki/Downloads
> > The last version of the draggable plugin :http://code.google.com/p/gwtquery-plugins/downloads/detail?name=dragg...
> > The last version of the droppable plugin compliant with the gwt
> > version you are using :
> > - for gwt 2.2 :http://code.google.com/p/gwtquery-plugins/downloads/detail?name=dropp...
> > - for gwt 2.3 :http://code.google.com/p/gwtquery-plugins/downloads/detail?name=dropp...
>
> > Put these 3 jars in your classpath and it's should work.
>
> > Julien
>
> > On May 31, 12:44 pm, Jee <sundarra...@gmail.com> wrote:
>
> > > Thanks.
> > > I tried to implement you given example in eclipse Helios.
> > > But i got errors in SortableCellDragAndDropHandler Class
> > > Please guide to solve problems
>
> > > 1.$(draggedCell).css(CSS.DISPLAY.with(Display.NONE)); --- The method
> > > with(Style.Display) is undefined for the type DisplayProperty
>
> > > 2.$(draggedCell).css(CSS.DISPLAY.with(Display.BLOCK)); ---- The
> > > method with(Style.Display) is undefined for the type DisplayProperty
>
> > > 3.allCells.isEmpty() --- The method isEmpty() is undefined for the
> > > type GQuery
>
> > > public void onDragStart(DragStartEvent event) {
> > > Element draggedCell = event.getDraggable();
> > > $(draggedCell).css(CSS.DISPLAY.with(Display.NONE));
> > > }
>
> > > public void onDragStop(DragStopEvent event) {
> > > Element draggedCell = event.getDraggable();
> > > $(draggedCell).css(CSS.DISPLAY.with(Display.BLOCK));
>
> > > }
>
> > > if (allCells.isEmpty()) {
> > > // no cells, the placeholder should just be added in the begin
> > > of the cell
> > > // list
> > > return null;
> > > }
>
> > > Thanks
> > > Jee
>
> > > On May 30, 2:18 pm, Julien Dramaix <julien.dram...@gmail.com> wrote:
>
> > > > Yes you can...
> > > > I wrote an example on how to use gwtquery drag-and-drop plugin for
> > > > implementing re-ordering in CellList :
>
> > > > Example :http://julien-labs.googlecode.com/svn-history/r7/trunk/sortablecellwi...
>
> > > > Java code :http://code.google.com/p/julien-labs/source/browse/trunk/sortablecell...
>
> > > > The code is documented and easy to understand. If I found time, I will
> > > > write an article about how to implement reordering in CellWidget...
>
> > > > Julien
>
> > > > On Mon, May 30, 2011 at 8:38 AM, Jee <sundarra...@gmail.com> wrote:
> > > > > Can we re-order CellList .. using DND. If we have 5 items in the
> > > > > CellList, can we move 2nd item to 5th Item in the same CellList.
>
> > > > > Thanks
> > > > > Jee
>
> > > > > On May 29, 1:03 am, Julien Dramaix <julien.dram...@gmail.com> wrote:
> > > > >> Could you explain more what you are looking for ? What do you mean by
> > > > >> "within CellList" ?
>
> > > > >> On May 28, 2:11 pm, Jee <sundarra...@gmail.com> wrote:
>
> > > > >> > Hi Julien,
>
> > > > >> > thanks.
> > > > >> > Its great to see your reply. CellList is supporting drag and drop.
> > > > >> > but i am looking within CellList whether drag and drop is supporting
> > > > >> > or not.
> > > > >> > I tried to get about it, but i still failed.
> > > > >> > Please suggest on this.
>
> > > > >> > Thanks
> > > > >> > Jee
>
> > > > >> > On May 27, 6:47 pm, Julien Dramaix <julien.dram...@gmail.com> wrote:> You can use the drag-and-drop plugins of gqtquery to enbale drag and
> > > > >> > > drop on any CellWidget.
>
> > > > >> > > Example :http://gwtquery-plugins.googlecode.com/svn/trunk/droppable/demo/Conta...
> > > > >> > > Documentation :http://code.google.com/p/gwtquery-plugins/wiki/DragAndDropPluginForGW...
>
> > > > >> > > Julien
>
> > > > >> > > On May 27, 10:42 am, Jee <sundarra...@gmail.com> wrote:
>
> > > > >> > > > Hi,
>
> > > > >> > > > We would like to replace the old table inside Menu to use cellList.
> > > > >> > > > However, we
>
> > > > >> > > > don't know whether GWT cellList support drag and drop or not. Drag and
> > > > >> > > > drop is
>
> > > > >> > > > supported using old table inside Menu but we have to make sure this
> > > > >> > > > feature
>
> > > > >> > > > still works in cellList before we can replace it.
>
> > > > >> > > > Thanks,
> > > > >> > > > Jee
>
> > > > > --
> > > > > You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
> > > > > To post to this group, send email to google-web-toolkit@googlegroups.com.
> > > > > To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
> > > > > For more options, visit this group athttp://groups.google.com/group/google-web-toolkit?hl=en.-Hidequoted text -
>
> > > - Show quoted text -
--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
Re: GWT CellList Drag and Drop
gquery-dnd-bundle-1.0.3
gwtquery-1.0.0-2.3.0
droppable-plugin-1.0.6
gwt 2.3
$(draggedCell).css(CSS.DISPLAY.with(Display.NONE));
$(draggedCell).css(CSS.DISPLAY.with(Display.BLOCK));
please let us know how to proceed.
Thanks
Jee
On May 31, 5:24 pm, Julien Dramaix <julien.dram...@gmail.com> wrote:
> You are using an old version of gwtquery.
>
> Download the last stable version of GwtQuery compatible with the gwt
> version you are using :http://code.google.com/p/gwtquery/wiki/Downloads
> The last version of the draggable plugin :http://code.google.com/p/gwtquery-plugins/downloads/detail?name=dragg...
> The last version of the droppable plugin compliant with the gwt
> version you are using :
> - for gwt 2.2 :http://code.google.com/p/gwtquery-plugins/downloads/detail?name=dropp...
> - for gwt 2.3 :http://code.google.com/p/gwtquery-plugins/downloads/detail?name=dropp...
>
> Put these 3 jars in your classpath and it's should work.
>
> Julien
>
> On May 31, 12:44 pm, Jee <sundarra...@gmail.com> wrote:
>
>
>
>
>
>
>
> > Thanks.
> > I tried to implement you given example in eclipse Helios.
> > But i got errors in SortableCellDragAndDropHandler Class
> > Please guide to solve problems
>
> > 1.$(draggedCell).css(CSS.DISPLAY.with(Display.NONE)); --- The method
> > with(Style.Display) is undefined for the type DisplayProperty
>
> > 2.$(draggedCell).css(CSS.DISPLAY.with(Display.BLOCK)); ---- The
> > method with(Style.Display) is undefined for the type DisplayProperty
>
> > 3.allCells.isEmpty() --- The method isEmpty() is undefined for the
> > type GQuery
>
> > public void onDragStart(DragStartEvent event) {
> > Element draggedCell = event.getDraggable();
> > $(draggedCell).css(CSS.DISPLAY.with(Display.NONE));
> > }
>
> > public void onDragStop(DragStopEvent event) {
> > Element draggedCell = event.getDraggable();
> > $(draggedCell).css(CSS.DISPLAY.with(Display.BLOCK));
>
> > }
>
> > if (allCells.isEmpty()) {
> > // no cells, the placeholder should just be added in the begin
> > of the cell
> > // list
> > return null;
> > }
>
> > Thanks
> > Jee
>
> > On May 30, 2:18 pm, Julien Dramaix <julien.dram...@gmail.com> wrote:
>
> > > Yes you can...
> > > I wrote an example on how to use gwtquery drag-and-drop plugin for
> > > implementing re-ordering in CellList :
>
> > > Example :http://julien-labs.googlecode.com/svn-history/r7/trunk/sortablecellwi...
>
> > > Java code :http://code.google.com/p/julien-labs/source/browse/trunk/sortablecell...
>
> > > The code is documented and easy to understand. If I found time, I will
> > > write an article about how to implement reordering in CellWidget...
>
> > > Julien
>
> > > On Mon, May 30, 2011 at 8:38 AM, Jee <sundarra...@gmail.com> wrote:
> > > > Can we re-order CellList .. using DND. If we have 5 items in the
> > > > CellList, can we move 2nd item to 5th Item in the same CellList.
>
> > > > Thanks
> > > > Jee
>
> > > > On May 29, 1:03 am, Julien Dramaix <julien.dram...@gmail.com> wrote:
> > > >> Could you explain more what you are looking for ? What do you mean by
> > > >> "within CellList" ?
>
> > > >> On May 28, 2:11 pm, Jee <sundarra...@gmail.com> wrote:
>
> > > >> > Hi Julien,
>
> > > >> > thanks.
> > > >> > Its great to see your reply. CellList is supporting drag and drop.
> > > >> > but i am looking within CellList whether drag and drop is supporting
> > > >> > or not.
> > > >> > I tried to get about it, but i still failed.
> > > >> > Please suggest on this.
>
> > > >> > Thanks
> > > >> > Jee
>
> > > >> > On May 27, 6:47 pm, Julien Dramaix <julien.dram...@gmail.com> wrote:> You can use the drag-and-drop plugins of gqtquery to enbale drag and
> > > >> > > drop on any CellWidget.
>
> > > >> > > Example :http://gwtquery-plugins.googlecode.com/svn/trunk/droppable/demo/Conta...
> > > >> > > Documentation :http://code.google.com/p/gwtquery-plugins/wiki/DragAndDropPluginForGW...
>
> > > >> > > Julien
>
> > > >> > > On May 27, 10:42 am, Jee <sundarra...@gmail.com> wrote:
>
> > > >> > > > Hi,
>
> > > >> > > > We would like to replace the old table inside Menu to use cellList.
> > > >> > > > However, we
>
> > > >> > > > don't know whether GWT cellList support drag and drop or not. Drag and
> > > >> > > > drop is
>
> > > >> > > > supported using old table inside Menu but we have to make sure this
> > > >> > > > feature
>
> > > >> > > > still works in cellList before we can replace it.
>
> > > >> > > > Thanks,
> > > >> > > > Jee
>
> > > > --
> > > > You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
> > > > To post to this group, send email to google-web-toolkit@googlegroups.com.
> > > > To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
> > > > For more options, visit this group athttp://groups.google.com/group/google-web-toolkit?hl=en.-Hide quoted text -
>
> > - Show quoted text -
--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
Re: Using custom LocalMessages apart from Locales
<ui:with field="localMessage" type="net.company.project.common.widgets.client.i18n.LocalMessages" />
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
Re: GWT CellList Drag and Drop
Download the last stable version of GwtQuery compatible with the gwt
version you are using : http://code.google.com/p/gwtquery/wiki/Downloads
The last version of the draggable plugin :
http://code.google.com/p/gwtquery-plugins/downloads/detail?name=draggable-plugin-1.0.4.jar
The last version of the droppable plugin compliant with the gwt
version you are using :
- for gwt 2.2 : http://code.google.com/p/gwtquery-plugins/downloads/detail?name=droppable-plugin-1.0.5.jar
- for gwt 2.3 : http://code.google.com/p/gwtquery-plugins/downloads/detail?name=droppable-plugin-1.0.6.jar
Put these 3 jars in your classpath and it's should work.
Julien
On May 31, 12:44 pm, Jee <sundarra...@gmail.com> wrote:
> Thanks.
> I tried to implement you given example in eclipse Helios.
> But i got errors in SortableCellDragAndDropHandler Class
> Please guide to solve problems
>
> 1.$(draggedCell).css(CSS.DISPLAY.with(Display.NONE)); --- The method
> with(Style.Display) is undefined for the type DisplayProperty
>
> 2.$(draggedCell).css(CSS.DISPLAY.with(Display.BLOCK)); ---- The
> method with(Style.Display) is undefined for the type DisplayProperty
>
> 3.allCells.isEmpty() --- The method isEmpty() is undefined for the
> type GQuery
>
> public void onDragStart(DragStartEvent event) {
> Element draggedCell = event.getDraggable();
> $(draggedCell).css(CSS.DISPLAY.with(Display.NONE));
> }
>
> public void onDragStop(DragStopEvent event) {
> Element draggedCell = event.getDraggable();
> $(draggedCell).css(CSS.DISPLAY.with(Display.BLOCK));
>
> }
>
> if (allCells.isEmpty()) {
> // no cells, the placeholder should just be added in the begin
> of the cell
> // list
> return null;
> }
>
> Thanks
> Jee
>
> On May 30, 2:18 pm, Julien Dramaix <julien.dram...@gmail.com> wrote:
>
>
>
> > Yes you can...
> > I wrote an example on how to use gwtquery drag-and-drop plugin for
> > implementing re-ordering in CellList :
>
> > Example :http://julien-labs.googlecode.com/svn-history/r7/trunk/sortablecellwi...
>
> > Java code :http://code.google.com/p/julien-labs/source/browse/trunk/sortablecell...
>
> > The code is documented and easy to understand. If I found time, I will
> > write an article about how to implement reordering in CellWidget...
>
> > Julien
>
> > On Mon, May 30, 2011 at 8:38 AM, Jee <sundarra...@gmail.com> wrote:
> > > Can we re-order CellList .. using DND. If we have 5 items in the
> > > CellList, can we move 2nd item to 5th Item in the same CellList.
>
> > > Thanks
> > > Jee
>
> > > On May 29, 1:03 am, Julien Dramaix <julien.dram...@gmail.com> wrote:
> > >> Could you explain more what you are looking for ? What do you mean by
> > >> "within CellList" ?
>
> > >> On May 28, 2:11 pm, Jee <sundarra...@gmail.com> wrote:
>
> > >> > Hi Julien,
>
> > >> > thanks.
> > >> > Its great to see your reply. CellList is supporting drag and drop.
> > >> > but i am looking within CellList whether drag and drop is supporting
> > >> > or not.
> > >> > I tried to get about it, but i still failed.
> > >> > Please suggest on this.
>
> > >> > Thanks
> > >> > Jee
>
> > >> > On May 27, 6:47 pm, Julien Dramaix <julien.dram...@gmail.com> wrote:> You can use the drag-and-drop plugins of gqtquery to enbale drag and
> > >> > > drop on any CellWidget.
>
> > >> > > Example :http://gwtquery-plugins.googlecode.com/svn/trunk/droppable/demo/Conta...
> > >> > > Documentation :http://code.google.com/p/gwtquery-plugins/wiki/DragAndDropPluginForGW...
>
> > >> > > Julien
>
> > >> > > On May 27, 10:42 am, Jee <sundarra...@gmail.com> wrote:
>
> > >> > > > Hi,
>
> > >> > > > We would like to replace the old table inside Menu to use cellList.
> > >> > > > However, we
>
> > >> > > > don't know whether GWT cellList support drag and drop or not. Drag and
> > >> > > > drop is
>
> > >> > > > supported using old table inside Menu but we have to make sure this
> > >> > > > feature
>
> > >> > > > still works in cellList before we can replace it.
>
> > >> > > > Thanks,
> > >> > > > Jee
>
> > > --
> > > You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
> > > To post to this group, send email to google-web-toolkit@googlegroups.com.
> > > To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
> > > For more options, visit this group athttp://groups.google.com/group/google-web-toolkit?hl=en.- Hide quoted text -
>
> - Show quoted text -
--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
Re: Using RequestBuilder to communicate with a RESTful API on another port
> If you do not have server-side code in Java, then you can just start the
> DevMode in -noserver- mode and point it to your "Go" server, see http://code.google.com/webtoolkit/doc/latest/DevGuideCompilingAndDebu...
Yep, I guess that's what I need. Thx!
-Alex
--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
Re: Using RequestBuilder to communicate with a RESTful API on another port
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
Using RequestBuilder to communicate with a RESTful API on another port
problem is that the backend code (server) is written in Go and can't
run on the same port as GWT's dev server (port 8888 & 9997).
Due to XMLHttpRequest's (the underlying class behind RequestBuilder)
security restrictions I can't communicate with anything that isn't
running on the same port of the same host? Of course I can write GWT
frontend code, compile it and run it on the same host&port but this
dev approach isn't really feasible as I can't test anything while I'm
in dev mode.
So is there a way to make REST calls (via RequestBuilder or
XMLHttpRequest) to a server that isn't running on the same host&port?
-Alex
--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
Re: how do i add a tooltip to a column header in a celltable ?
public void onBrowserEvent(Cell.Context context,
Element elem,
DemandeBean object,
NativeEvent event) { ...}
However the method is called only if i click in the column.
It is not called if i just move over the mouse.
That's one thing.
Another thing is that I want the tool tip only when the user moves the mouse over the column header, not the entire column.
Any idea ?
Thanks
Do you suggest something like this ? It's not firing any event when I move the mouse over ....
Column<myDTO, String> utilisateurVerrouColumn = new Column<myDTO, String>(
new ClickableTextCell(blablaRender)) {
public String getValue(myDTO d) {
return "something";
}
protected void onBrowserEvent(Event event) {
//super.onBrowserEvent(event);switch(DOM.eventGetType(event)) {
String eventType = event.getType();
boolean isMouseover = "mouseover".equals(eventType);
boolean isMouseout = "mouseout".equals(eventType);
// Get the event target.
EventTarget eventTarget = event.getEventTarget();
if (!Element.is(eventTarget)) {
return;
}
case Event.ONMOUSEOVER:
Window.alert("Mouseover");
break;
case Event.ONMOUSEOUT:
Window.alert("Mouseout");
break;
default:
break;
}
}
};
On Tue, May 31, 2011 at 1:23 PM, Juan Pablo Gardella <gardellajuanpablo@gmail.com> wrote:For example in your column.2011/5/31 Celinio <cel975@gmail.com>thanks for your answer.
I had already explored that onBrowserEvent(...) possibility.
Where do i add that OnBrowserEvent(...) method to exactly ?On Tue, May 31, 2011 at 2:31 AM, Juan Pablo Gardella <gardellajuanpablo@gmail.com> wrote:
You must do a event handler (overwrite onBrowserEvent2), CellTable in gwt 2.3.0 doesn't support events. See this example:--@Overrideprotected void onBrowserEvent2(Event event) {super.onBrowserEvent2(event);String eventType = event.getType();boolean isMouseover = "mouseover".equals(eventType);boolean isMouseout = "mouseout".equals(eventType);// Get the event target.EventTarget eventTarget = event.getEventTarget();if (!Element.is(eventTarget)) {return;}final Element target = event.getEventTarget().cast();You can overwrite this method and can open a tooltip.2011/5/30 Celinio <cel975@gmail.com>--hello,
i just have a simple question :
how do i add a tooltip to a column header in a celltable ?
Thanks for helping.
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
Scroller
of it there are two check boxes which are added to a normal panel and
which inturn is added to a multifieldpanel.
Now for grid panel i have set auto scroll is true.
But when i want scroll the grid i want the checkboxes to be moved
along with instead of being static on the multifieldpanel.
I need your help.
Thanks in adv..
--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
Re: how do i add a tooltip to a column header in a celltable ?
Column<myDTO, String> utilisateurVerrouColumn = new Column<myDTO, String>(
new ClickableTextCell(blablaRender)) {
public String getValue(myDTO d) {
return "something";
}
protected void onBrowserEvent(Event event) {
//super.onBrowserEvent(event);
String eventType = event.getType();
boolean isMouseover = "mouseover".equals(eventType);
boolean isMouseout = "mouseout".equals(eventType);
// Get the event target.
EventTarget eventTarget = event.getEventTarget();
if (!Element.is(eventTarget)) {
return;
}
switch(DOM.eventGetType(event)) {
case Event.ONMOUSEOVER:
Window.alert("Mouseover");
break;
case Event.ONMOUSEOUT:
Window.alert("Mouseout");
break;
default:
break;
}
}
};
For example in your column.2011/5/31 Celinio <cel975@gmail.com>thanks for your answer.
I had already explored that onBrowserEvent(...) possibility.
Where do i add that OnBrowserEvent(...) method to exactly ?On Tue, May 31, 2011 at 2:31 AM, Juan Pablo Gardella <gardellajuanpablo@gmail.com> wrote:
You must do a event handler (overwrite onBrowserEvent2), CellTable in gwt 2.3.0 doesn't support events. See this example:--@Overrideprotected void onBrowserEvent2(Event event) {super.onBrowserEvent2(event);String eventType = event.getType();boolean isMouseover = "mouseover".equals(eventType);boolean isMouseout = "mouseout".equals(eventType);// Get the event target.EventTarget eventTarget = event.getEventTarget();if (!Element.is(eventTarget)) {return;}final Element target = event.getEventTarget().cast();You can overwrite this method and can open a tooltip.2011/5/30 Celinio <cel975@gmail.com>--hello,
i just have a simple question :
how do i add a tooltip to a column header in a celltable ?
Thanks for helping.
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
Re: how do i add a tooltip to a column header in a celltable ?
thanks for your answer.
I had already explored that onBrowserEvent(...) possibility.
Where do i add that OnBrowserEvent(...) method to exactly ?On Tue, May 31, 2011 at 2:31 AM, Juan Pablo Gardella <gardellajuanpablo@gmail.com> wrote:
You must do a event handler (overwrite onBrowserEvent2), CellTable in gwt 2.3.0 doesn't support events. See this example:--@Overrideprotected void onBrowserEvent2(Event event) {super.onBrowserEvent2(event);String eventType = event.getType();boolean isMouseover = "mouseover".equals(eventType);boolean isMouseout = "mouseout".equals(eventType);// Get the event target.EventTarget eventTarget = event.getEventTarget();if (!Element.is(eventTarget)) {return;}final Element target = event.getEventTarget().cast();You can overwrite this method and can open a tooltip.2011/5/30 Celinio <cel975@gmail.com>--hello,
i just have a simple question :
how do i add a tooltip to a column header in a celltable ?
Thanks for helping.
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
Re: GWT CellList Drag and Drop
I tried to implement you given example in eclipse Helios.
But i got errors in SortableCellDragAndDropHandler Class
Please guide to solve problems
1.$(draggedCell).css(CSS.DISPLAY.with(Display.NONE)); --- The method
with(Style.Display) is undefined for the type DisplayProperty
2.$(draggedCell).css(CSS.DISPLAY.with(Display.BLOCK)); ---- The
method with(Style.Display) is undefined for the type DisplayProperty
3.allCells.isEmpty() --- The method isEmpty() is undefined for the
type GQuery
public void onDragStart(DragStartEvent event) {
Element draggedCell = event.getDraggable();
$(draggedCell).css(CSS.DISPLAY.with(Display.NONE));
}
public void onDragStop(DragStopEvent event) {
Element draggedCell = event.getDraggable();
$(draggedCell).css(CSS.DISPLAY.with(Display.BLOCK));
}
if (allCells.isEmpty()) {
// no cells, the placeholder should just be added in the begin
of the cell
// list
return null;
}
Thanks
Jee
On May 30, 2:18 pm, Julien Dramaix <julien.dram...@gmail.com> wrote:
> Yes you can...
> I wrote an example on how to use gwtquery drag-and-drop plugin for
> implementing re-ordering in CellList :
>
> Example :http://julien-labs.googlecode.com/svn-history/r7/trunk/sortablecellwi...
>
> Java code :http://code.google.com/p/julien-labs/source/browse/trunk/sortablecell...
>
> The code is documented and easy to understand. If I found time, I will
> write an article about how to implement reordering in CellWidget...
>
> Julien
>
>
>
>
>
>
>
> On Mon, May 30, 2011 at 8:38 AM, Jee <sundarra...@gmail.com> wrote:
> > Can we re-order CellList .. using DND. If we have 5 items in the
> > CellList, can we move 2nd item to 5th Item in the same CellList.
>
> > Thanks
> > Jee
>
> > On May 29, 1:03 am, Julien Dramaix <julien.dram...@gmail.com> wrote:
> >> Could you explain more what you are looking for ? What do you mean by
> >> "within CellList" ?
>
> >> On May 28, 2:11 pm, Jee <sundarra...@gmail.com> wrote:
>
> >> > Hi Julien,
>
> >> > thanks.
> >> > Its great to see your reply. CellList is supporting drag and drop.
> >> > but i am looking within CellList whether drag and drop is supporting
> >> > or not.
> >> > I tried to get about it, but i still failed.
> >> > Please suggest on this.
>
> >> > Thanks
> >> > Jee
>
> >> > On May 27, 6:47 pm, Julien Dramaix <julien.dram...@gmail.com> wrote:> You can use the drag-and-drop plugins of gqtquery to enbale drag and
> >> > > drop on any CellWidget.
>
> >> > > Example :http://gwtquery-plugins.googlecode.com/svn/trunk/droppable/demo/Conta...
> >> > > Documentation :http://code.google.com/p/gwtquery-plugins/wiki/DragAndDropPluginForGW...
>
> >> > > Julien
>
> >> > > On May 27, 10:42 am, Jee <sundarra...@gmail.com> wrote:
>
> >> > > > Hi,
>
> >> > > > We would like to replace the old table inside Menu to use cellList.
> >> > > > However, we
>
> >> > > > don't know whether GWT cellList support drag and drop or not. Drag and
> >> > > > drop is
>
> >> > > > supported using old table inside Menu but we have to make sure this
> >> > > > feature
>
> >> > > > still works in cellList before we can replace it.
>
> >> > > > Thanks,
> >> > > > Jee
>
> > --
> > You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
> > To post to this group, send email to google-web-toolkit@googlegroups.com.
> > To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
> > For more options, visit this group athttp://groups.google.com/group/google-web-toolkit?hl=en.
--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
Re: Big Daddy example problems
@bbgottI'm getting the same issue also on Ubuntu. The solutions work just fine on Windows. Could it be that Ubuntu has the 8888 port blocked or something?Also what did u hard code to get the Android application to work.--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
--
El precio es lo que pagas. El valor es lo que recibes.
Warren Buffet
--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
Re: Overriding a css style loclly
<ui:style field='reportStyle'>
@external gwt-Label;
.gwt-Label{ color: #000 !Important; }
</ui:style>
I have a lot of labels in my application.I have overriding the style
as most of the place, I need the new style and it works fines. the
overridden style is
.gwt-Label {
font-size: 15px;
font-weight: bold;
color: #fff;
float: inherit;
}
However at one particular place I need the color of label to be black,
so I was trying to override the style in that ui.xml locally like
<ui:style field='reportStyle'>
@external gwt-Label;
.gwt-Label{ color: #000; }
</ui:style>
However this impacts the style of label at other places also. Is there
a way to override the standard style in a ui.xm so that it impacts the
widgets of only in that ui binder.
thanks in advance,
--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
--
El precio es lo que pagas. El valor es lo que recibes.
Warren Buffet
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
Re: Canvas dimensions
GetOffsetWidth I think is one of them.
Can it be?
Hi,
I have a canvas in a hidden panel. It is created before the panel is
made visible. The problem I'd like to set its DOM width to 100% but I
have a problem with the setCoordinateSpaceWidth then as I cannot get
the canvas dimension via getOffsetWidth as the canvas is not visible.
I don't even think I can add a resizeevent to Canvas nor is there a
VisibleEvent. Would appreciate if anybody had an idea as to how to
circumvent the problem?
Cheers,
Thomas
--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
--
El precio es lo que pagas. El valor es lo que recibes.
Warren Buffet
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
Re: gwt servlet thread, timer,reload
On 31 Mai, 11:13, khiem nguyen <khi...@googlemail.com> wrote:
> you can start your timer-process from something which starts with your
> webapp, for example in a ServletContextListener-implementations init method
>
> HTH
>
> On Tue, May 31, 2011 at 10:43 AM, ArnoNyhm <etechniker....@googlemail.com>wrote:
>
> > Thx.
> > i have created my timertask class, but where in the servlet i make the
> > call?
>
> > On 31 Mai, 07:41, "J.Ganesan" <j.gane...@datastoregwt.com> wrote:
> > > Since the servlet runs under J2SE, you can go for java.util.Timer and
> > > java.util.TimerTask.
>
> > > J.Ganesanwww.DataStoreGwt.com
>
> > > On May 31, 5:08 am, Juan Pablo Gardella <gardellajuanpa...@gmail.com>
> > > wrote:
>
> > > > See Quartz <http://www.quartz-scheduler.org/>
>
> > > > 2011/5/30 ArnoNyhm <etechniker....@googlemail.com>
>
> > > > > Hi,
>
> > > > > my gwt servlet loads data from a database, handle it and store it in
> > > > > an embedded apche derby database. what i want is, that this process
> > is
> > > > > repeated every 45min automatically.
> > > > > i don´t know how to do this?
>
> > > > > regards arno
>
> > > > > --
> > > > > You received this message because you are subscribed to the Google
> > Groups
> > > > > "Google Web Toolkit" group.
> > > > > To post to this group, send email to
> > google-web-toolkit@googlegroups.com.
> > > > > To unsubscribe from this group, send email to
> > > > > google-web-toolkit+unsubscribe@googlegroups.com.
> > > > > For more options, visit this group at
> > > > >http://groups.google.com/group/google-web-toolkit?hl=en.
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Google Web Toolkit" group.
> > To post to this group, send email to google-web-toolkit@googlegroups.com.
> > To unsubscribe from this group, send email to
> > google-web-toolkit+unsubscribe@googlegroups.com.
> > For more options, visit this group at
> >http://groups.google.com/group/google-web-toolkit?hl=en.
--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
Re: gwt servlet thread, timer,reload
I would recommend that you take a look at Timer.
I hope it's what you want.
you can start your timer-process from something which starts with your webapp, for example in a ServletContextListener-implementations init method
HTH--On Tue, May 31, 2011 at 10:43 AM, ArnoNyhm <etechniker.ali@googlemail.com> wrote:
Thx.
i have created my timertask class, but where in the servlet i make the
call?
On 31 Mai, 07:41, "J.Ganesan" <j.gane...@datastoregwt.com> wrote:
> Since the servlet runs under J2SE, you can go for java.util.Timer and
> java.util.TimerTask.
>
> J.Ganesanwww.DataStoreGwt.com
>
> On May 31, 5:08 am, Juan Pablo Gardella <gardellajuanpa...@gmail.com>
> wrote:
>
> > See Quartz <http://www.quartz-scheduler.org/>
>
> > 2011/5/30 ArnoNyhm <etechniker....@googlemail.com>
>
> > > Hi,
>
> > > my gwt servlet loads data from a database, handle it and store it in
> > > an embedded apche derby database. what i want is, that this process is
> > > repeated every 45min automatically.
> > > i don´t know how to do this?
>
> > > regards arno
>
> > > --
> > > You received this message because you are subscribed to the Google Groups
> > > "Google Web Toolkit" group.
> > > To post to this group, send email to google-web-toolkit@googlegroups.com.
> > > To unsubscribe from this group, send email to
> > > google-web-toolkit+unsubscribe@googlegroups.com.
> > > For more options, visit this group at
> > >http://groups.google.com/group/google-web-toolkit?hl=en.
--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
--
El precio es lo que pagas. El valor es lo que recibes.
Warren Buffet
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.