Subject: What happened to LocaleMatcher (and
Accept-Language header)? - msg#01503
Thread at a glance:
Previous Message by Date:
Joseph Favara/HQ/Corp/OAI is out of the office.
I will be out of the office starting 11/22/2010 and will not return until
11/30/2010.
I will respond to your message when I return. If this is urgnet please
contact Narayanan Pillai at 105986
--
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@xxxxxxxxxxxxxxxxx
To unsubscribe from this group, send email to
google-web-toolkit+unsubscribe@xxxxxxxxxxxxxxxxx
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.
Next Message by Date:
CellTable CSS Styling Not Possible?
I've posted a few questions regarding CellTable and CSS styling but none have been answered. I've looked at the /com/google/gwt/user/theme/standard/public/gwt/standard/standard.css file (I am using the standard theme) but I cannot find selectors that seems related to CellTable. The google docs for CellTable do not indicate the CSS selectors that CellTable uses. Am I to conclude then that it is not possible to style a CellTable using CSS?
-- Jeff Schwartz
--
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@xxxxxxxxxxxxxxxxx
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@xxxxxxxxxxxxxxxxx
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
Previous Message by Thread:
GWT Designer Code Generation Problem
Hello,
I am new to GWT but I've been using java object orientation
programming for quite a long. The problem is that when gwt designer
generates the code for the user interface. It defines the components
directly in the construction which is problem when we try to access
the component outside the constructor.
e.g. This is how gwt designer would generate code for the UI with 1
textbox
public class View()
{
View()
{
TextBox Username= new TextBox();
}
}
I wanted it to generate like this:
public class View()
{
private TextBox Username;
View()
{
Username= new TextBox();
}
}
Like this, the component will be accessible everywhere.
Is this possible for configure the generation of the code else I think
google should implement it this way because it is more dynamic
--
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@xxxxxxxxxxxxxxxxx
To unsubscribe from this group, send email to
google-web-toolkit+unsubscribe@xxxxxxxxxxxxxxxxx
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.
Next Message by Thread:
Re: What happened to LocaleMatcher (and Accept-Language header)?
On 22 nov, 15:05, David BalaÅic <xerc...@xxxxxxxxx> wrote:
> Hi!
>
> I googled around (see below for URLs) and found some info about the
> LocaleMatcher class and how it can be used for detecting the Accept-
> Language request header.
> Was LocaleMatcher dropped in GWT 2.1.0?
It never was part of GWT proper. Have a look at the GWT-Incubator:
http://code.google.com/p/google-web-toolkit-incubator
> Is there a way to read the Accept-Language from client GWT code?
No.
> Or is server-side code (like JSP) the only way?
yes.
--
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@xxxxxxxxxxxxxxxxx
To unsubscribe from this group, send email to
google-web-toolkit+unsubscribe@xxxxxxxxxxxxxxxxx
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.