Can search engines index GWT based web sites ?

2009-01-02 Thread haimke

I have created a site which is ALL based on GWT.
The HTML is very basic, and contains one DIV element.
All the content of the site is generated by GWT and data comes from
the server using JSON.

How can google (and others search engines) index my web site ?
(isnt for them it looks like the site is just empty ?)

I have added google adsense, but how will adsense knows what adv fit
my web content ?

--~--~-~--~~~---~--~~
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 hosted mode is extremly slow

2010-08-26 Thread haimke
I am using GWT 2.0.3, firefox 3.6.8, gwt plugin, Eclipse Galileo,
embedded Jetty

gwt compilation time ~1minute and its the app running speed is "ok"

but using hosted mode in firefox (or IE) is terribly slow and
unpredictable.
sometimes firefox is stuck for 30 seconds, sometimes for 8 minutes
usually no less than 3 minutes until I see some response.
It is impossible to keep developing like that.

I could not find any helpull information in the newsgroups

how can I know where exactly it is stuck ?
what could I do wrong ?
any other helpull information ?

thankyou
haim

-- 
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: GWT hosted mode is extremly slow

2010-08-26 Thread haimke

I don't knows what ClientBundles are, and I am not using images so I
probably don't have it at all. I find it awkward how could Google
develop Gmail and Wave using GWT when it works so slow using hosted
mode.

-- 
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 get "id" of the new inserted row, issued by RequestFactory "persist()"

2010-12-09 Thread haimke
I am using RequestFactory.

I create new instance of a proxy:

EmployeeProxy newEmployee =
request.create(EmployeeProxy.class);

Then I do persist:

request.persist().using(newEmployee).fire()

* How do I get the DATABASE new created ID of "newEmployee" ?

* How do I read "newEmployee" properties that the server set while
persisting ?

   for example:String createdDate =
newEmployee.getCreatedDate();

?

-- 
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: some of the CSS of my project are not working in firefox higher versions

2010-12-09 Thread haimke

try to add "!important;"

example:
 p { color: #ff !important; }


On Dec 9, 11:07 am, sam  wrote:
> I Developed a project for marketing.it was deployed into weblogic
> server .Everthing is working fine is IE all versions
> But CSS are not working in firefox3.5 versions.
> Please suggest me what i have to do to make it work in firefox
> versions.
> 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-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 could I overwrite padding margin properties in standard.css style?

2010-12-09 Thread haimke

try to use css keyword:  !important

example:
#main {
   width:600px !important;
   width:800px;
}



On Dec 9, 10:03 am, vkrejcirik  wrote:
> I use Standard GWT style, so my buttons have .gwt-Buttons style. I
> create my css file, where I add for example this:
>
> .gwt-Button-activeJob {
>         padding: 0.2em;
>         margin-top: 1.5em;
>         margin-right: 0.2em;
>         margin-left: 0.3em;
>         margin-bottom: 0.3em;
>         padding-left: 1em;
>         padding-right: 1em;
>
> }
>
> In java code:
>
> cancelButton.addStyleDependentName("activeJob");
>
> But properties margin and padding are set in .gwt-Button in
> Standard.css file. So button ignores my definitions of padding and
> margin. Is there any solution how could I overwrite these properties?
>
> 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-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.