Unable to view GWT2.0.1 app in IE8

2010-05-24 Thread Yogesh Bhave
Hi,

I'm creating an application using GWT 2.0.1; it complies 6 computations and
runs well in all browsers except IE8, it shows a blank page( but can be
viewed in IE8 compatibility mode, so weird) .
When I add the line in my gwt.xml  it compiles just 1 permutation and the application displays
fine in IE8.

However if I add the line  it compiles all permutations, but
the application still cannot be viewed in IE8 but runs properly in all other
browsers.

Is there any other method to ensure my application will run in all browsers
?
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.



Re: Rendering FlexTable into PDF

2010-02-27 Thread Yogesh Bhave
Hi,

There are some libraries like pd4ml which does HTML to PDF conversion.
You can send a HTML string, using element.getInnerHTML() and on server side
pd4ml can convert HTML
code to PDF for you. From server side you can return a URL of PDF generated.

On 27 February 2010 06:49, Chris Lercher  wrote:

> Hi Red,
>
> On Feb 25, 4:05 pm, Red Mosquito  wrote:
> > #1) Sending this HTML code to the server as URL parameter is not a
> > good idea, I didn't even give it a try.
>
> you don't have to send it as a URL parameter - just send it as an
> argument in a GWTRPC call (or JSON, ...).
> Or maybe create a simple routine (on the client side) that converts
> the FlexTable's structure into something more stable for the server
> side first.
>
> Chris
>
> --
> 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.
>
>

-- 
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 get values in gwt externally

2009-09-15 Thread Yogesh Bhave
Hi Saurabh,

To get value you have to set value attribute to your input type



and call following code in your onModuleLoad() method

String name = (String)
rootpanel.get("name")..getElement().getAttribute("value"));


On Tue, Sep 15, 2009 at 1:25 PM, Saurabh Naik wrote:

> Hello
>
>   suppose there is one textbox in my html form. and I want to take the
> value which is entered in my gwt i.e in my onModuleLoad() function. how to
> take value ?
>
> e.g there is textbox
>
> 
>
> String name = (String) rootpanel.get("name").getValue... but there is no
> get value method...
>
> >
>

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



Re: Double click on textField.

2009-09-14 Thread Yogesh Bhave
Hi Twiz,

   You can create your own class by extending TextBox class. And can add
double click event by using sinkEvents() method. And In same class you can
write code you want to write to execute on double click of text box in
onBrowseEvent().



On Sat, Sep 12, 2009 at 10:24 PM, dubes01  wrote:

>
> Just curious,but where exactly do you see your system.out.println()
> output?
>
> If you are using a textfield from gwt-ext, then try something like
> textfield.addListener(new BaseItemListenerAdapter(){}) or something
> like that and override the click or double click method if one
> exists.
>
> On Sep 11, 7:04 am, TwiZ  wrote:
> > it doesnt work too.. onclick or ondblclick it doesnt metter..
>
> >
>

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



Compiling GWT code on server

2009-08-19 Thread Yogesh Bhave
Hi folks,

I am trying to compile GWT code on server (amd 64-bit, Ubuntu). I have gwt
1.6.4 on server. I am compiling code with ant it works fine on
localhost(Ubuntu), same ant script.
But on server it throws error as follow:

#
# An unexpected error has been detected by Java Runtime Environment:
#
#  SIGSEGV (0xb) at pc=0x7f8d00a8d25a, pid=14267, tid=140243142814032
#
# Java VM: Java HotSpot(TM) 64-Bit Server VM (10.0-b22 mixed mode
linux-amd64)
# Problematic frame:
# V  [libjvm.so+0x1f125a]
#

Please help me or give me a proper direction. How can I compile code on
server.

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