Re: Material Design with GWT(Polymer wrapper)

2015-02-26 Thread Blagoja Chavkoski
Tnx for the good words. We see what singular will bring out when it becomes production candidate, and then I can do something. This one is pretty much tested, we use it in one of our inhouse projects with almost no problems at all. On Sun, Feb 22, 2015 at 2:02 PM, Alexander Zbiek

Re: To smart GWT or not

2010-12-04 Thread Blagoja Chavkoski
Hi, Just small overview I have used Gwt, Gwt ext and Smart Gwt...all are pretty ok for the power used to be developed, they are produced by very small number of programmers and we all know that, so we are not talking for JAVA core libs or C# core libs or something like that.. and they have bugs

Re: GWT-EXT Store is not working in server side

2010-11-22 Thread Blagoja Chavkoski
You cant use a JS classes on a server side..server side is just a normal Java-servlet all this classes must and can be used just in the translatable part of the gwt application. regards, B On Tue, Nov 23, 2010 at 12:18 AM, Shawn Brown big.coffee.lo...@gmail.comwrote: I am using GWT-EXT. I am

Re: How to keep row selected after pagination grid refresh?

2010-11-20 Thread Blagoja Chavkoski
This question is for ext gwt forum, but i had implemented some code close to this one, and I had the same problem!! Its interesting that I notised the problem is on adding the html css style for the selected row..its just not showing, the related model row is correct and all related listeners are

Re: How to get the next day of week date?

2010-11-16 Thread Blagoja Chavkoski
Hi, Just use now= new Date(), and then from this date do what ever u like to do one day after... new Date ( new Date().getTime() + 24 * 60 * 60 * 1000) one day before... new Date ( new Date().getTime() - 24 * 60 * 60 * 1000) one week after ...new Date ( new Date().getTime() + 7 * 24 * 60 * 60 *

Re: How to get the next day of week date?

2010-11-16 Thread Blagoja Chavkoski
:) On Tue, Nov 16, 2010 at 4:38 PM, Lothar Kimmeringer j...@kimmeringer.dewrote: Am 16.11.2010 16:30, schrieb Blagoja Chavkoski: Just use now= new Date(), and then from this date do what ever u like to do one day after... new Date ( new Date().getTime() + 24 * 60 * 60 * 1000) one day

Re: Why does Google not support Maps V3 on GWT?

2010-11-10 Thread Blagoja Chavkoski
Hi, I have asked also the same question but no answer till now!!! Its not that they not supported the api it self, the maps images look different(not updated also) at list this should be a easy to do...!!! If you got some answer, please mail it here. Thanks, B On Wed, Nov 10, 2010 at 9:49 PM,

Re: Route animation in google maps with GWT

2010-11-01 Thread Blagoja Chavkoski
, nothing happens. That means, start and endmarker of the polyline are coming, but not the polyline.. Do you see an error? Thanks for your help. Jan On 29 Okt., 14:00, Blagoja Chavkoski baze...@gmail.com wrote: I just want to say that for the statment (and no way that can be done) im wrong

Re: Route animation in google maps with GWT

2010-11-01 Thread Blagoja Chavkoski
is called only one time..so now i use the method timer.scheduleRepeating() and it works perfectly..in my example, i have 370 points, and the performance is acceptable... So i think, i will reach my goals. :-) Thank you, best regards. Jan On 1 Nov., 10:58, Blagoja Chavkoski baze...@gmail.com

Re: Route animation in google maps with GWT

2010-10-29 Thread Blagoja Chavkoski
hi, This is the scenario u need to do..I implement this in a program used for a vehicle tracking... 1. get all the data u need to animate(all LatlLon positions) and store them in a arraylist 2. start one timer (gwt timer ) let me say witch will fire on every 100ms (U have to test what will be

Re: Route animation in google maps with GWT

2010-10-29 Thread Blagoja Chavkoski
:56 PM, Blagoja Chavkoski baze...@gmail.comwrote: hi, This is the scenario u need to do..I implement this in a program used for a vehicle tracking... 1. get all the data u need to animate(all LatlLon positions) and store them in a arraylist 2. start one timer (gwt timer ) let me say witch

Re: Gwt maps

2010-10-26 Thread Blagoja Chavkoski
Hi Didier, Tnx for the replay! Yes I know this, but mine question was is there a way to create something like this... (this is what i dont understand) They give about what 3000 request per day...but if you like to do more in a same time some of them are discarded so exp. for 40 locations

Re: Ejb and gwt..?!

2010-10-12 Thread Blagoja Chavkoski
Hi all, First tnx for the replay! I tried Fernando's method and cant get it work, I also dont undertend how to package if I doit this way do i have to add gwt.war file in the ear file or... Abouth the local way Jin is saying, I tried this also but not working again (I tried this long time ago)

Re: GWT and concurrency

2010-09-19 Thread Blagoja Chavkoski
Hi, As Stefano wrote...ur loop will never end..:) and no other cycle can be executed. This is a concurrency topic and threading, try to create in java(or any other language) a thread with while(true) do something, and try to confine some other thread(some other work) to be done on this thread...

Re: [ERROR] [gmn] Unable to find 'gmn.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath entry for source?

2010-09-18 Thread Blagoja Chavkoski
Hi, Seems to me u have compile errors...not eclipse but GWT.. maybe u are using some libs that are not supported by GWT... Check yr imports... On Fri, Sep 17, 2010 at 7:36 PM, ziv zivli...@gmail.com wrote: hey everybody, I am new to gwt programing, and I could really use some help.. I have

Re: RPC SerializationException when going from GWT 1.7 to GWT 2.0.4

2010-09-02 Thread Blagoja Chavkoski
Hi, I would say...try with the normal implement Serializable but its important to add for the classes Uniq serilizationUID and i think will work... regards On Mon, Aug 30, 2010 at 11:35 PM, Ken Wielechowski ken.wielechow...@gmail.com wrote: In going from GWT 1.7 to GWT 2.0.4, I am getting

Re: Firing native events in GWT?!

2010-08-03 Thread Blagoja Chavkoski
); On Tue, Aug 3, 2010 at 11:52 AM, Blagoja Chavkoski baze...@gmail.comwrote: Hi, first tnx for the rpl.. yes thats ok...also would be ok to fire onNativeEvent in widget method...but I have more components(widgets) related to that event..and i dont like to keep instance of all of them

Re: gwt module may need to be (re)compiled

2010-07-29 Thread Blagoja Chavkoski
You have problems with compiling, probably not created all permutation...Ill say u have added some I18N language topics Compile first all project, then create the war..with all pages...let me say if u have 2 languages..en and de than u need to compile(the compiler, not you) 14 diff

Re: gwt module may need to be (re)compiled

2010-07-29 Thread Blagoja Chavkoski
On Jul 29, 11:39 am, Blagoja Chavkoski baze...@gmail.com wrote: You have problems with compiling, probably not created all permutation...Ill say u have added some I18N language topics Compile first all project, then create the war..with all pages...let me say if u have 2 languages..en

Re: GWT. commons.lang.StringUtils

2010-07-25 Thread Blagoja Chavkoski
Hi, You cant use any java.jar file in gwt without having the source code included in the jar and having the gwt.xml file pointing to the source classes...why u need this?! because gwt compiler needs to compile this classes to js! gwt by default compiles all classes in client and all classes in

Re: New Java Documentation Tool from Sencha

2010-07-20 Thread Blagoja Chavkoski
Because i like to have the bought libs used, GWT and GXT for my projects... and to be open on what future to use I create one abstract class extending one of the gxt widgets ...usually ContentPanel..because is the most rich one..and in this class I add all the gwt future I like to have. Just

Re: Remove event handlers or not?

2010-07-19 Thread Blagoja Chavkoski
Hi, I have some small question related to events..but other way around: How can we fire a native(browser) event in gwt 2.xx ?! On 1.6 there was a method.Document.fireXXXEvent but not in the newer relies. tnx! On Tue, Jul 20, 2010 at 12:23 AM, Thomas Broyer t.bro...@gmail.com wrote: On 19

Re: Error while running my web app....

2010-07-19 Thread Blagoja Chavkoski
Compile the application...u made a big changes probably (I would say u implement locale or something like that ) so the app dose not have all needed permutations for the pages. Just compile, if using gwt plugin for eclipse the red icon..if using stand alone with ant build then call compile target