Injecting CSS and JS into UiBinder - Issue with getting access to image path

2017-11-02 Thread Muhammad Zbeedat
Hi, I'm trying to implement a JS library (VisJs: http://visjs.org/) in my GWT project. So, in order to use it from my UiBinder I used the ScriptInjector: ScriptInjector.fromString(JsResources.INSTANCE.visScript().getText()).inject(); and in ui.xml I used the following: .htmlPanel { font-size:

Re: Errors with SimpleViz.gwt.xml

2014-09-01 Thread muhammad . ahmed
can you please tell us how did you solved it , because i am also facing same problem On Wednesday, July 15, 2009 1:40:31 PM UTC+5, akvarelli wrote: Hi, I already solved the problem myself, so no need to answer this subject I posted a moment ago! -- You received this message because

Re: Running over ubuntu

2013-08-20 Thread Muhammad Bashir Al-Noimi
Toolkit Created the quick start tutorial then run it So is there anything missing?! -- Best Regards, Muhammad Bashir Al-Noimi -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from

Re: Running over ubuntu

2013-08-20 Thread Muhammad Bashir Al-Noimi
On 08/20/2013 01:17 PM, Muhammad Bashir Al-Noimi wrote: On 08/20/2013 07:38 AM, Alvin Reyes wrote: It seems that you don't have the Servlet API on your classpath upon compilation. If you're using Maven, make sure

Re: Running over ubuntu

2013-08-20 Thread Muhammad Bashir Al-Noimi
installing recent GWT will change something in this issue or I've to install something? -- Best Regards, Muhammad Bashir Al-Noimi -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving

Running over ubuntu

2013-08-19 Thread Muhammad Bashir Al-Noimi
HelloStupid Unknown Java Problem The type javax.servlet.http.HttpServletResponse cannot be resolved. It is indirectly referenced from required .class files GreetingServiceImpl.java /HelloStupid/src/com/example/hello/server line 1 Java Problem -- Best Regards, Muhammad Bashir Al-Noimi

Re: Running over ubuntu

2013-08-19 Thread Muhammad Bashir Al-Noimi
On 08/20/2013 02:06 AM, Muhammad Bashir Al-Noimi wrote: Howdy, When I tried to run GWT quick start tutorial I got this error message! How can I fix this issue? I already installed GWT Developer plugin

FW: Muhammad

2013-06-17 Thread Muhammad
hello! http://www.eliane-mery-sculptrice.com/ozqjpwgb/hlc/ejmgt/lzdh.html Muhammad -- 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

GWT callback method whenever textbox.setText() is called

2013-04-25 Thread Shaik Muhammad
I am using GWT textbox. Whenever textbox.setText() method is called, i want to perform an action in some other class. ValueChangeEvent is not fired whenever setText() is called. Is there any event that will be fired or any ways to achieve this? Please help -- You received this message

Cross Site Request

2012-08-16 Thread Muhammad Muaz
I am trying this tutorial https://developers.google.com/web-toolkit/doc/2.0/tutorial/Xsite,it is working fine if server specify the call back object, like if server prints like this, callback125([{symbol:DDD,price:10.610339195026,change:0.053085447454327}]); But my requirements are

ui:with - calling methods with arguments

2012-01-19 Thread Shaik Muhammad
I want to dynamically set values to a field in uibinder. I am trying something like this ui:with field=valuesStore type='x.y.client.ValuesStore' / and the field is set with value like this g:Label text='{valuesStore.getValue}'Name/g:Label and the ValueStore has 2 methods public String

GWT i18n - locale set by property provider is not reflected at the client side

2011-12-31 Thread Shaik Muhammad
I am setting the locale value using the property provider( returns value dynamically based on certain conditions). This class is called every time the browser issues a new request. But the UI is not rendered with the locale returned by the property provider. If the property provider returns

i18ncreator giving java.io.IOException: Cannot run program chmod: CreateProcess error=2, The system cannot find the file specified

2011-12-21 Thread Shaik Muhammad
Hi, I am using gwt i18ncreator script to generate the java interface. But i am getting the error java.io.IOException: Cannot run program chmod: CreateProcess error=2, The system cannot find the file specified. Read from the internet that the i18nCreator will not work. is it so? Is there any

Re: GWT Developer Plugin for Firefox 6

2011-09-03 Thread Muhammad Haikal Satria
Thank you up till now it still works for windows 32... On Aug 24, 7:49 pm, Thomas Broyer t.bro...@gmail.com wrote: I bet it shouldn't be long:http://gwt-code-reviews.appspot.com/1523805/ -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: Date Serialization issues

2010-08-06 Thread Muhammad
Dear , Please set time zone in your application. then you may get exact date you want. Muhammad Bilal Ilyas Software Engineer From: Ameya Kulkarni amey...@gmail.com To: Google Web Toolkit google-web-toolkit@googlegroups.com Sent: Fri, August 6, 2010 11:09

Re: support F5 to load current page

2010-07-20 Thread Muhammad Saifullah
pls use Window.addWindowCloseHandler( new WindowCloseHandler(event) { event.setMessage(your message here); } ); in your onModuleLoad() function. when F5 button is pressed then custom message will be displayed if you press OK button then reloads but if you press the cancel then no reload. OK

Re: GWTCanvas not working on IE6?

2010-07-05 Thread Muhammad Saifullah
/GWTCanvasDemo.html nothing works, even in quirks mode? On Jul 3, 10:07 am, Qian Qiao qian.q...@gmail.com wrote: On Sat, Jul 3, 2010 at 16:56, Muhammad Saifullah msaif.muham...@gmail.com wrote: in IE how can i use quirks mode? can you give me some syntax of quirks mode where i can write

Re: GWTCanvas not working on IE6?

2010-07-03 Thread Muhammad Saifullah
in IE how can i use quirks mode? can you give me some syntax of quirks mode where i can write On Sat, Jul 3, 2010 at 3:39 AM, Flemming Boller flemming.bol...@gmail.comwrote: i use it on ie6. it works both in development and deploy mode. remember that in IE you must use quirks mode. in strict

Re: GWT front-end with PHP backend

2010-06-12 Thread Muhammad Saifullah
gwt created js is nothing but a normal JS ,executed in browser. so backend is either PHP or Java. if you use ajax in GWT and server side is PHP then you use RequestBuilder Class. if server side is Java then you may use either RequestBuilder/GWT.create(abc.class); On Sat, Jun 12, 2010 at 2:17 AM,

GWT Compilation Issue

2010-05-18 Thread Muhammad Zeeshan
Hi, I am facing problem while GWT compilation. I am using ANT build file in which i run 'build' target. when execution comes to 'gwtc' target the compilation sometimes stop or somtime it compiles successfully. Can anyone please tell me what i am doing wrong ? I am using GWT2.0 -- You received

gwt

2010-05-15 Thread Muhammad Saifullah
how can i check that browser supports JS or cookie from GWT?? -- 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

PHP servlet in memory database

2010-05-04 Thread Muhammad Saifullah
i have some problem noticed below. i need to load data as array to memory in PHP.but in PHP if i write *$array= array(1,2);* in test.php then this $array variable is initialized every time user requests.if we request test.php 100 times by clicking 100 times browser refresh button then this $array

gwt click event

2010-04-18 Thread Muhammad Saifullah
i need to register a cross platform and version independent click event to the document. that means i have a two text box and submit button but when i click outside of the two text box and submit button then alert will be displayed .how can i achive this by gwt document.get().addMouseClick ???

Re: Give GWT Text box a value with Div tag in jsp page

2010-03-31 Thread Muhammad Saifullah
if you try to apply value on textbox it is simple but if you use fully GWT textbox component then there are two solutions 1. div id=textBox/divinput type=hidden id=textBoxValue value=?= Constant.TextBoxValue; ?/ Constant.TextBoxValue is located in your server side Java Model and JSP file has

Re: Give GWT Text box a value with Div tag in jsp page

2010-03-31 Thread Muhammad Saifullah
if you try to apply value on textbox it is simple but if you use fully GWT textbox component then there are two solutions 1. div id=textBox/divinput type=hidden id=textBoxValue value=?= Constant.TextBoxValue; ?/ Constant.TextBoxValue is located in your server side Java Model and JSP file has

Re: Give GWT Text box a value with Div tag in jsp page

2010-03-31 Thread Muhammad Saifullah
if you try to apply value on textbox it is simple but if you use fully GWT textbox component then there are two solutions 1. div id=textBox/divinput type=hidden id=textBoxValue value=?= Constant.TextBoxValue; ?/ Constant.TextBoxValue is located in your server side Java Model and JSP file has

Re: notification of server side shutdown within Servlet

2010-03-29 Thread Muhammad Saifullah
Every servlet is HttpServlet so destroy() method resides in HttpServlet. so you need to override that destroy() in your class and before shutting down of your application server instruction pointer of VM automatically enters into the overrided destroy() method and if you write resource cleaning