Re: [schema.org] Can I use itemprop="image" inside ?

2023-04-05 Thread Axel R.
hello
is it possible to delete this post ?
thanks

On Friday, 24 August 2012 at 15:39:57 UTC-5 regnoult axel wrote:

> Cool ! That is the first time I rate an issue :D 
> Indeed, it would be nice to manage the meta tag inside UI binder like an 
> HTML Page.
>
> In my webapp, I talk about movies, and I do not know if it will works well 
> with crawling :(
> Indeed, the information of the movie will appear in a POPUP. It exists 
> meta tag for events, but how will the crawler will read the information 
> inside a popup (that appears when the mouse is over the movie) ?
>
> In other terms, I have understood that the server give a SNAPSHOT of the 
> HTML page of my application, but in this HTML page, all the popup does not 
> appear, so my question is : 
>
>  - Will the crawler see that their is a clickEvent and then a popup and 
> then it will read the information of the event's meta tag ?
>
> Thanks you, 
> Axel
>
>
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/e515f527-b9df-4ba7-b8ff-1a5d2ba8308dn%40googlegroups.com.


Re: What is the minimum Internet speed connexion that the GWT team is considering when testing their GWT application ?

2023-04-05 Thread Axel R.
hello,
is it possible to delete this post ?
thanks you

On Thursday, 5 July 2012 at 07:20:19 UTC-5 regnoult axel wrote:

> Thanks a lot Jens, this discussion gave me enought information to go 
> futher...
>
> Cheers,
> Axel.
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/69b50c43-a69a-4a06-a711-3b8fccea0e68n%40googlegroups.com.


Re: help to understand uiRenderer

2023-04-05 Thread Axel R.
hello,
is it possible to delete this post ? 

thanks you

On Tuesday, 8 January 2013 at 09:52:55 UTC-5 Axel REGNOULT wrote:

> ok, I close this topic, my error was the importance to use the same 
> parameter name Contact in the render method. 
>
>
> void render(SafeHtmlBuilder sb, Contact *contact*);
>
> field='*contact*'
>   type='com.MS.client.core.MODEL.admin.Contact_database.Contact' />
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/59b2615f-a935-4c29-9998-90921519998dn%40googlegroups.com.


Touchevent vs ClickEvent (+ phonegap help)

2014-02-21 Thread Axel R
Hi,

I am trying to port my desktop app to mobile...

1 - I would like to understand a detail...I have clickEvents, and I am 
asking what would be the advantage or interest to implement a touchEvent 
instead (for mobile) ?
Does TouchEvent will be faster than ClickEvent ? (TouchStartEvent is more 
precise I think...but the sense of my question remains the same)
How could I avoid to be less memory efficient implementing both ClickEvent 
and TouchEvent (my widget implement MouseDownHandler, and the only idea I 
have is to create another view for mobile implementing TouchStartHandler...) 
?

2 - I am asking myself if I would have 'a lot' of benefit to use GWT + 
phonegap ? Will my application run faster (responding to click events for 
exemple) when using phonegap ?

3 - I do not understand well the advantage of the 'mobile application VS 
mobile website' ? 
I just think that there is 2 advantages but correct me if I am missing 
something: 
 - be found on the store (appStore, google play...)
 - maybe the mobile application is faster than the mobile website at 
startup, because of less code to download ?
 - Would it be more complicated to update an application in the store ? )

Thanks you for the help, 
Axel


-- 
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/groups/opt_out.


Re: Event Bubbling

2014-02-13 Thread Axel R

>
> Hi Ed,
>
I am looking for a  simple exemple of 'event bubbling'...Just like the one 
you were talking about...an HTMLPanel that has various buttons and I want 
to intercept the clickEvent of each of them...Maybe you could post a little 
of code illustrating how you did it ?

I have tried to find informations but GWT event bubbling is poorly 
documented I think...

Thanks you,
Axel


-- 
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/groups/opt_out.


Re: Help to create Lightweight widgets

2014-02-08 Thread Axel R

>
> For #2, I have tried both case and have the following errors :
>

extend Widget
11:58:03.274 [ERROR] [MS] Error injecting 
com.MS.client.application.widget.poster.Poster_Tooltip$Binder: Unable to 
create or inherit binding: No @Inject or default constructor found for 
com.MS.client.application.widget.poster.Poster_Tooltip$Binder 

extend Composite
This UIObject's element is not set; you may be missing a call to either 
Composite.initWidget() or UIObject.setElement() 


-- 
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/groups/opt_out.


Help to create Lightweight widgets

2014-02-07 Thread Axel R
Hi,
I know there is a lot of doc in the web, but I cannot understand well many 
things...please feel free to help me:

#1 Does addClickListener() and addClickHandler() does the exact same thing 
(listener is just deprecated) ?

#2 I have created the following widget:

public class AreaPlaceHolder__TA_heavy extends TextArea 
{...
addFocusHandler(new FocusHandler() ...
addBlurHandler(new BlurHandler() ...
...}

BecauseI just have a onBlur and onFocus events to intercept, so I would 
like to optimise this widget such as :

public class AreaPlaceHolder__TA_light extends AreaElement implements 
BlurHandler, FocusHandler
{...
public void onFocus(FocusEvent event)...
public void onBlur(BlurEvent event)...
}...

- Is it the good/best way to have a lighter version of  
AreaPlaceHolder__TA_heavy  (and to always be able to use it in UI Binder)?

#3 When I create my own widget, I do not know 
 - when to extend Widget ?
 - when to extend Composite ?
 - when I am free to extend neither of them ? (I do not know if I need to 
at least extend one of them)

#4 Finally, I really would like to use event Bubbling, there is a lot of 
'little' code on the net, but nothing satisfy me...I mean, I would like to 
write a little class where a HTMLPanel has 3 differents ButtonElement and the 
HTMLPanel intercepts :
 - a clickEvent on button1 and say "hello 1" 
 - a clickEvent on button2 and say "hello 2" 
 - a clickEvent on button3 and say "hello 3"

I just see complicated all theses DOM manipulation, sink event so if you 
can give me the little example I need, I think I will be able to replace a 
lot of widgets by there Elements and reduce a lot my code (useful for the 
mobile version).

Thanks you a lot,
Axel


 





-- 
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/groups/opt_out.


Re: gwt date B U G

2013-11-01 Thread Axel R
Thanks you. 
:)

-- 
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/groups/opt_out.


Re: gwt date B U G

2013-11-01 Thread Axel R
Ok, I will try to debug it, maybe do a mini app. read doc etc... and think 
a little more etc... but now I also have other pending things to do...
Quickly, here is my context :
.
//FUNCTIONS
*public static Date set___Str___To___Date(String s) // convert STRING 
(format ENGLISH = EN = 2013-08-15)  to DATE*
*{*
*  String y = s.substring(0, 4); String m = s.substring(5, 7); String d = 
s.substring(8, 10);*
*  Date date = new Date();*
*  date.setYear(Integer.valueOf(y) - 1900);*
*  date.setMonth(Integer.valueOf(m) - 1);   
  // month start at 0 (HORRIBLE to debug ;(   )*
*  date.setDate(Integer.valueOf(d));*
*  return date; *
*}*

*public static String setDateToStr(Date date)   
 // convert DATE to STRING
*
*{**return  **DateTimeFormat.getFormat("-MM-dd").format(date);**}**
 // EN = 2013-08-15 *

//CODE
*String str_dateHoyEN = "2013-11-02";*
*Date  date_tomorrow = 
set___Str___To___Date(str_dateHoyEN);   // *
*date_2m.setDate(date_2m.getDate() + 1);   
  // I increment +1 (so I have the 
'tomorrow' date)*
final String  str_*date_tomorrow *EN   = 
setDateToStr(*date_tomorrow 
 *);   *
*
*.*
*
*
*
*
What I have seen, is that, I have *various call to the method **
set___Str___To___Date()*It works the first time (when my initial page 
is loading), but the second time (when I use the datepicker to go to the 
2nd NOV, 2013), then I have precisely see the 'crazy*' behavior... 
Yesturday, I was not able to explain well what was happening (and today, I 
just do not want to see theses line of code, so sorry if it is not clear 
where the error is...), but I suspect one of the 2 red lines to be 
responsible for the error.*
*
*
*regards,*

@Jens: "SuperDevMode works entirely inside the browser while DevMode works 
in a JVM."
So I suppose that in production, it should works in a JVM (if I upload a 
version without using SUPER dev)but the paradox was that the error in 
production mode was similar to SUPER DEV MODE...the only way it was working 
fine, was in dev mode, in LOCALHOST.




-- 
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/groups/opt_out.


HTMLPanel cannot remove DivElement inside its node ?

2013-11-01 Thread Axel R
Hi,

*HTMLPanel panel = new HTMLPanel("");// class attribute*
*
*
*public void function()*
*{*
* panel.clear();
*
* Element d3 = DOM.createDiv(); 
  d3.setClassName(N.NN.N().resultSearch_category_title());   
d3.setInnerHTML(name);*
* panel.getElement().appendChild(d3);
*
*}*

The issue is that *panel *will not remove the divElement...The only thing I 
am happy with is that, if I use another HTMLPanel instead of the 
divElement, so then YES, .clear() will remove it.
So this involve that I use a lot of HTMLPanel instead of DivElement and I 
am sure it costs me (the DOM or code will be heavier).

Is it possible that the clear() method REALLY remove all child elements 
(and not only others HTMLPanel) ? Which alternative I have ?

Thanks you,




-- 
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/groups/opt_out.


gwt date B U G

2013-11-01 Thread Axel R
Hi,

Yesturday, Oct 31th, 2013, I had a bug with "gwt date" (I do not understand 
if the java.util.date has something to do with GWT but well...).

I have an 'event application', and when I was using the gwt datepicker to 
go the the *2nd NOV, 2013*, my application has also to calculate the date 
of the following day.
In this example, the "tomorrow" date was indicating 3rd *DEC* 2013 instead 
of 3rd *NOV* 2013... (so the issue is that the date is giving me *one month 
more*).

This error was in *production *mode. Then I try to debug it in local mode. 
And I can observe something strange:
 - with SUPER DEV MODE: I have the same error than in production.
 - *withOUT *SUPER DEV MODE (normal debug): I can see that the "tomorrow" 
date is OK (cf. 3rd NOV 2013)

Then I go home to sleep, sooo frustrated to lose time debuging incoherent 
thing, and most of all, not allowing my team to update events in production 
due to the bug...I weak up this morning, and well, everything seems 
alright. I mean, the "tomorrow" date is well calculated, without a month 
more...

So where this bug comes from ? Is it my fault or not ? I think that GWT can 
do great thing, but for example, or sometime, it is bad in doing simple 
things...Which serious EVENT / CALENDAR application could we develop 
without a COOL and BUGGYLESS way of maniplating dates in the client side ? 
Moreover, the GWT datepicker widget has bugs that have not been corrected 
for 3 years...I have to do some ugly hack for this. Frustating answers are 
talking about using JODA or Calendar, but it does not work in the client 
side, and in my country the internet connexion is very slow, I do not want 
to do an RPC just to do some date calculations each time I need it. 

Now, which garantee I have that the bug that happened yesturday will not 
happen another day ? 

Axel,

-- 
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/groups/opt_out.


Help with Source Map

2013-10-23 Thread Axel R
Hi,

I use GWT 2.5.1
I have at least theses configurations : 

 
 -->

- I would like to know if Source Map should work with the *online*application 
(the website in production) ?
Because, I succeed to see the java files in local developement mode...but I 
didn t succeed to see the java files with my website online. (and I have 
used the same *.gwt.xml file)

- Is it mandatory to use Super Dev Mode to have Source Map working in local 
dev ? In other terms, is it mandatory to set :
 
Because, in local dev, if I set the previous line with: value="*false*", 
then I cannot see the source map.

Thanks you,

-- 
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/groups/opt_out.


[UML] [reverse engineering] [plugin Eclipse]

2013-10-14 Thread Axel R
Hi,

I would like to generate the UML (*class diagram*) of my GWT / GAE project. 
But I need some *reverse engineering*...

Is there a 'free' *eclipse *plugin (or any other 'free' tool) that you r 
using in order to generate (reverse engineering) the UML ?

I have searched, but there is many options (and also a lot of old 
posts)...some are not free, or some tools that seem to not work with GWT, 
for example the moDisco plugin - http://www.eclipse.org/MoDisco/ cannot 
'discover' my gwt project)

Thanks you,

-- 
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/groups/opt_out.


Re: How to have a form which autocomplete name and password (in order to log in) ?

2013-10-11 Thread Axel R
Hi Thomas,
I have search and met this "old" document. I tried it and did not succeed
to implement the solution, maybe I have not passed not enough time or maybe
I am too bad. I do not understand, reading the post if this method will
works in ALL RECENT browser... But thanks for the answer, I will try again.



2013/10/11 Thomas Broyer 

> You haven't search the group's archives enough:
> https://groups.google.com/d/msg/google-web-toolkit/KyzgtqqoJGE/5bqvG8pBSRYJ
>
>
> On Thursday, October 10, 2013 10:44:03 PM UTC+2, Axel R wrote:
>>
>> Hi,
>> I would like to implement a form with autocompletion in order that the
>> user does not have to rewrite its mail and password each time he wants to
>> log in.
>> How could I achieve that ? I do not need a special page to login before
>> the user can enter in the sitethe user can log in when he wants...
>>
>> Thanks you,
>>
>  --
> You received this message because you are subscribed to a topic in the
> Google Groups "Google Web Toolkit" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/google-web-toolkit/JxHLx74f3qI/unsubscribe
> .
> To unsubscribe from this group and all its topics, 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/groups/opt_out.
>



-- 
--
REGNOULT Axel

65 65 00 30
Sopocachi
LA PAZ - BOLIVIA

-- 
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/groups/opt_out.


How to have a form which autocomplete name and password (in order to log in) ?

2013-10-10 Thread Axel R
Hi,
I would like to implement a form with autocompletion in order that the user 
does not have to rewrite its mail and password each time he wants to log in.
How could I achieve that ? I do not need a special page to login before the 
user can enter in the sitethe user can log in when he wants...

Thanks you,

-- 
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/groups/opt_out.