Generalizing DoubleClickHandler

2012-06-19 Thread SigmaBlu
I'm building an application with several types of tables/models, and based 
on these tables, I want to generalize the DoubleClickHandler in such a way 
that it will execute a particular section of code depending on the type of 
model, table, or row is clicked on.  What i'm saying is that 
the executed code will be totally dependant on what type of DBModel is 
clicked on and/or what table is being clicked and/or what row that's being 
clicked on.  

For starters will I extend, implement, or interface DoubleClickHandler? I 
almost want to say that i would extend DoubleClickHandler and then pass it 
the DBModel or Table type when creating my new instance of my created 
class. Any guidance would be greatly appreciated.

Regards,
Sigma

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/9-NE59X9aMQJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



GWT + Vector Drawing Tools

2012-03-22 Thread SigmaBlu
I have the following questions:

1) I was wondering if there were any examples out there that displayed
vector objects models in a table/list type of format and also the
vector images themselves? I know there is Raphael, but i dont see any
examples that match my criteria.  Raphael objects dont like being put
inside of other panels beside a RootPanel.

2) Can I have 3 RootPanels.  1 that holds the list i spoke about above
and 1 that holds the Raphael objects and 1 that holds both and have
all three 'speak' to one another?

3)  Are there other vector drawing tools out there that will
accomplish what i am seeking to do?

Thanks,

Sigma

-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



GWT SplitLayoutPanel + Velocity

2012-01-05 Thread SigmaBlu
I have a GWT application that renders a Velocity .vm file and displays
links within its panel. The .vm displays search results after the API
call is made.  Whenever the search is first made the .vm file comes
back as desired. But whenever you click on any of the links it looses
the GWT application and displays the results without the application
that first held the results.  I can see how and why, but im wondering
how can i maintain the .vm file within the application with each
hyperlink click?  As im writing this im thinking i should put it in a
frame...? Maybe that might work.  Either way does anyone have any
suggestions?

Regards,

Sigma

-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



SplitLayoutPanel and Widgets using UiBinder

2011-10-26 Thread SigmaBlu
I currently have a SplitLayoutPanel (north, west, center, and south).
I am trying to remove and add a widget based on the users interaction
with the centers widget.

For example, when the user clicks on a tables cell, it will remove the
current widget and replace it with another widget. Unfortunately, im
running into an error and it says that i cant add another widget after
the center.  Can someone please point me to right source.  Thanks.

Regards,
SigmaBlu

-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: UiBinder CSS URL

2011-10-17 Thread SigmaBlu
Sudhakar,

I have messed around with the Chrome.css, Clean.css and Standard.css
styles that can be changed by changing the following tags in
the .gwt.xml file: , , and .

Whenever you deploy the war folder you can access these .css files in
the following directory: renamedModuleName/gwt/standard,
renamedModuleName/gwt/clean, and renamedModuleName/gwt/chrome.
By changing these .css files (Chrome.css) I have assumed the
following:
•   It seems that my xyz.css thats being referenced by my UiBinder is
being compiled and turned into JavaScript.• Chrome.css, Standard.css,
and Clean.css seems to be read first and then overwritten by my
xyz.css’s compiled version  (i.e. if my compiled css had made changes
then it "wins" and those changes are used).


Are my assumptions correct?

Regards,
Sigma
On Oct 14, 8:17 am, Sudhakar Abraham 
wrote:
> You can't access the css file from outside package within uibinder.
> However, there are two ways to access the css file within uibinder.
> 1. Using inline style sheet within uibinder (...)
> 2. Using 
>
> S. Abrahamwww.DataStoreGwt.com
> Persist objects directly in Google App Engine
>
> On Oct 13, 7:00 pm, SigmaBlu  wrote:
>
>
>
>
>
>
>
> > Is there a way to use a URL to access CSS when using UiBinder? I
> > already know that you can access this with in your package hierarchy.
> > Unfortunately, I don't have any idea how i can reference outside of
> > the package.
>
> > Regards,
> > Sigma

-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: UiBinder CSS URL

2011-10-17 Thread SigmaBlu
Sudhakar,

I noticed that I can make changes to the Chrome.css, Standard.css, or
the Clean.css and the changes will be accepted.
>From my understanding, those .css files are a result of changing the
settings in the .gwt.xml file
(i.e. etc..).  Can you tell me the order in which the .css files are
being read?
For example, does my .css thats referenced in the  get referenced and compiled?  Does the Chrome.css,
Standard.css, and Clean.css
get referenced first and my "xyz.css" overwrites that?  This seems to
be the case.

Regards,
Sigma


On Oct 14, 8:17 am, Sudhakar Abraham 
wrote:
> You can't access the css file from outside package within uibinder.
> However, there are two ways to access the css file within uibinder.
> 1. Using inline style sheet within uibinder (...)
> 2. Using 
>
> S. Abrahamwww.DataStoreGwt.com
> Persist objects directly in Google App Engine
>
> On Oct 13, 7:00 pm, SigmaBlu  wrote:
>
>
>
>
>
>
>
> > Is there a way to use a URL to access CSS when using UiBinder? I
> > already know that you can access this with in your package hierarchy.
> > Unfortunately, I don't have any idea how i can reference outside of
> > the package.
>
> > Regards,
> > Sigma

-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



UiBinder CSS URL

2011-10-13 Thread SigmaBlu
Is there a way to use a URL to access CSS when using UiBinder? I
already know that you can access this with in your package hierarchy.
Unfortunately, I don't have any idea how i can reference outside of
the package.


Regards,
Sigma

-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



UiBinder and CSS located locally

2011-10-11 Thread SigmaBlu
Is there a way to link a css file to the ui.xml file?

For example, I am able to link it by doing the following:


The css is located within the same directory as my UiBinder Class and
my ui.xml file; so it picks up that css in its root directory.



Lets say that the source of my css file is located..here C:\Program
Files\Users\MyUserName\Desktop\Poject\CSS\xyz.css

How can i let the ui.xml file know that its source () is located in the above directory (C:\Program Files
\Users\MyUserName\Desktop\Poject\CSS\xyz.css)?

Regards,
Sigma

-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



UiBinder and CSS located locally

2011-10-11 Thread SigmaBlu
Is there a way to link a css file to the ui.xml file?

For example, I am able to link it by doing the following:


The css is located within the same directory as my UiBinder Class and
my ui.xml file; so it picks up that css in its root directory.



Lets say that the source of my css file is located..here C:\Program
Files\Users\MyUserName\Desktop\Poject\CSS\xyz.css

How can i let the ui.xml file know that its source () is located in the above directory (C:\Program Files
\Users\MyUserName\Desktop\Poject\CSS\xyz.css)?

Regards,
Sigma

-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.