Re: Cannot change CSS in dev mode

2014-03-17 Thread Kiarash
Maybe to late for you to answer this but maybe others looking for the 
answer. This helped me in Intellij 13. In the menu choose
> Run
> Edit Configuration
> Select "Update resources on frame deactivation"

Good luck.

Den fredagen den 4:e mars 2011 kl. 14:40:53 UTC+1 skrev Андрей Миногин:
>
> When running GWT app in dev mode static web resources such as css- 
> files cannot be changed. 
> To change a line in css I must stop server, change and run again. 
> That's really inconvenient. 
>
> Is there any workaround? 
>
> Thanks!

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Looking for a gwt tutorial

2011-03-20 Thread Kiarash
thank you Y2i

On Mar 20, 5:24 pm, Y2i  wrote:
> Take a look at this 
> sectionhttp://code.google.com/webtoolkit/doc/latest/DevGuideMvpActivitiesAnd...
>
> At the top it has two links that were very helpful to me
>
> http://code.google.com/webtoolkit/articles/mvp-architecture.htmlhttp://code.google.com/webtoolkit/articles/mvp-architecture-2.html
>
> But it takes some effort to make this approach work right.

-- 
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.



Looking for a gwt tutorial

2011-03-19 Thread Kiarash
Hi everybody,

I am looking for a gwt tutorial not as simple as the StockWatcher
tutorial at the gwt homepage with a single page. I have been reviewing
the tutorial and I am missing nice approaches and guidelines about
creating a website with many pages... approaches as when to use whole
new html pages and when to load panels by ajax... Do you have any idea
where do find some other tutorials?
thanks!

-- 
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.



Cannot install gwt plugin in Eclipse with Windows 7 64-bit

2011-01-28 Thread Kiarash
I'm trying to install Eclipse plugin for GWT and follow the
instructions step by step as following:

- Download and install Eclipse 3.6 Helios
- Choosing >Help >Install new software... adding the address
http://dl.google.com/eclipse/plugin/3.6
- Here I see GWT plugins and >Select all, and >Next

Then I get the following message:
Cannot complete the install because one or more required items could
not be found.
  Software being installed: Google Plugin for Eclipse 3.6
1.4.2.v201012211742
(com.google.gdt.eclipse.suite.e36.feature.feature.group
1.4.2.v201012211742)
  Missing requirement: Google Plugin for Eclipse 3.6
1.4.2.v201012211742
(com.google.gdt.eclipse.suite.e36.feature.feature.group
1.4.2.v201012211742) requires
'org.eclipse.wst.common.project.facet.core 0.0.0' but it could not be
found

My computer is a Windows 7 Enterpise, 64-bit and it feels likes this
might be the problem and I am sure there is solution. Do you know how
to get GWT working here? Many thanks.

-- 
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.



How to add a widget to a CaptionPanel?

2010-09-07 Thread Kiarash
CaptionPanel panel = new CaptionPanel(myWidget) which is not
possible... only String and HTML is possible.
How can I add a widget as a CheckBox to a caption of a CaptionPanel?

Thank you for any suggestion

-- 
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-tool...@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: How to add a widget as a Panel on top of the MapPanel

2010-09-05 Thread Kiarash
thanx Chad. I got it now.


On 30 Aug, 16:42, Chad  wrote:
> Kiarash,
>
> What are you trying to accomplish? You want to cover the map with a
> panel, but still have the map work? If the panel contains an image
> that you are simply trying to overlay on the map, use the
> map.addOverlay method. With that, you can put images or just about
> anything else you want right on the map and it becomes part of the map
> so that the map keeps all of its functionality. If that's not what
> you're after, please try to explain what you want a bit more clearly.
>
> HTH,
> Chad
>
> On Aug 29, 8:37 am, Kiarash  wrote:
>
> > I successfully have been implementing the gwt google maps. I am trying
> > to add a Panel on the top of the Map, but when I add a panel on top of
> > the Map so the map loose its functionality... I cannot move the map or
> > zoom etc... What I do is that adding the map to the LayoutPanel
> > "myMapPanel", next myMapPanel.add(googleMap), next
> > myMapPanel.add(mySmalPanelOnTop)... and the map loose its
> > functionality. Is there a way working around this??? Thanx!!!

-- 
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-tool...@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.



How to add a widget to a CaptionPanel?

2010-09-05 Thread Kiarash
I am trying to add a widget to a caption of a CaptionPanel. The
problem is that CaptionPanel takes only:
CaptionPanel(String str)
CaptionPanel(HTML html)

and not a widget as a gwt-Checkbox e t c.

How can I add a gwt-widget to a caption of CaptionPanel?
thanx for any suggestions

-- 
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-tool...@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.



How to add a widget as a Panel on top of the MapPanel

2010-08-30 Thread Kiarash
I successfully have been implementing the gwt google maps. I am trying
to add a Panel on the top of the Map, but when I add a panel on top of
the Map so the map loose its functionality... I cannot move the map or
zoom etc... What I do is that adding the map to the LayoutPanel
"myMapPanel", next myMapPanel.add(googleMap), next
myMapPanel.add(mySmalPanelOnTop)... and the map loose its
functionality. Is there a way working around this??? Thanx!!!

-- 
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-tool...@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: Problem with UTF-8

2010-08-03 Thread Kiarash
Thank you David,

I just did what you wrote and deleted the Java file and paste the code
in the new Java file again and the same with the HTML file. I checked
the properties and both had UTF-8 already but without success. On
the browser the Swedish letters still replaced with other
characters... My browser settings is on UTF-8 too!

Do you have any other suggestions?

//Kiarash

On 3 Aug, 09:02, "david.herv...@gmail.com" 
wrote:
> Hi,
>
> Have you specified theUTF-8before creating file or just change it
> while your files were created ?
> I've just copy paste your Label in a project where .java file areUTF-8encoded 
> and everything works fine.
> Just check on one of your file the properties that is attributed to it
> (contextual menu on one of the incriminated java file): here you must
> haveUTF-8.
>
> On Aug 2, 9:38 pm, Kiarash  wrote:
>
> > I have a problem with Swedish letters coded in Java files as when I
> > make a Label with Swedish letters,
> > Label myLabel = new Label("här är något på Svenska");
> > the Swedish letters changes to strange characters in the HTML file.
>
> > I am using Eclipse.I made sure that:
> > the html file has 
> > the text file >properties areUTF-8
> > the >project >properties areUTF-8
> > the >edit >set encoding areUTF-8
>
> > Anybody facing the same problem or have a solution... thanx!

-- 
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-tool...@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: UTF-8 Encoding Problem

2010-08-02 Thread Kiarash
Hi Amed,

I am facing the same problem with UTF-8. Did you find a solution?



On Jul 20, 9:37 am, Ahmed Shoeib 
wrote:
> Welcome all  ,
>
> now i face a problem withUTF-8Encoding Problem
>
> how to support it in GWT project 

-- 
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-tool...@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.



Problem with UTF-8

2010-08-02 Thread Kiarash
I have a problem with Swedish letters coded in Java files as when I
make a Label with Swedish letters,
Label myLabel = new Label("här är något på Svenska");
the Swedish letters changes to strange characters in the HTML file.

I am using Eclipse.I made sure that:
the html file has 
the text file >properties are UTF-8
the >project >properties are UTF-8
the >edit >set encoding are UTF-8


Anybody facing the same problem or have a solution... thanx!

-- 
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-tool...@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.