1
vote
1answer
43 views

GWT wrap a table and manipulate contents programmatically

I have a well formatted HTML table (the HTML text is generated by a reporting tool) and I want to turn it into a "programmable" table in GWT. I need to show that content as it is provided, but I also ...
0
votes
2answers
41 views

How to create multiline ListBox in GWT?

In my project the value to show in GWT list-box is big(from database). So user is not able to see the full value at once. For this I have decided to add display value in multiline. I have used tags ...
0
votes
0answers
28 views

How SafeHtml & SafeUri deal with malicious image?

Pls read this scenarios: -You build a program that allows user to insert Image or Image URL into 1 field in a table in DB. For example, table imgTbl has imgCol which contains ...
-5
votes
0answers
27 views

How to drag and drop photos with folder in gwt or HTML5 [closed]

I tried HTML5 drag and drop demo ..its not working in any browser..Let me know if anybody know the answer
0
votes
1answer
39 views

For setHTML() method, is it still safe If we do not use Safehtml but we validate the String & only accept some limited html tag (Gwt)?

Any widget that has setHTML method could give a hole in security system, but if we validate String & only accept some limited html tags such as <b>, <i>.... And then we put this string ...
0
votes
1answer
28 views

GWT historyFrame causes a blank line in the body part

I want to use the preferred <!doctype html> in my GWT index.html and I also want to make use of the (hidden) __gwt_historyFrame iframe. But when I use both the <body> starts with a blank ...
0
votes
1answer
60 views

Why SafeHtml only shows plain text & does not show formmatted text (GWT)?

HTML myHtml=new HTML(SafeHtmlUtils.fromString("<i>Test</i>")); HTML myHtml2=new HTML("<i>Test2</i>"); testHTMLPanel.add(myHtml); testHTMLPanel.add(myHtml2); ...
0
votes
3answers
36 views

What kind of GWT Panel that make Html widgets in it flow like a sentence in a paragraph?

I want to make each sentence in a paragraph stored inside a html widget. For instance, "I go to school. School is in city. My mom cooks for me. She is one I love" There are 4 sentences in this ...
0
votes
1answer
62 views

libgdx unable to find com/esotericsoftware/tablelayout.gwt.xml on your classpath

I just setup my libgdx game with the gdx-setup-ui.jar today and I have everything setup in eclipse. I thought I would run each application (i.e. desktop, android, and html) to make sure everything is ...
0
votes
1answer
48 views

Button click event not happening

Ive got a bunch of menu button's I've recently styled with CSS <button type="button" class="menu">Menu Button</button> CSS: button.menu { font-family: 'Calibri', sans-serif; ...
0
votes
1answer
43 views

GWT - how to prevent user from accessing other parts of application when popup is showing

I am rendering a html page that contains a button. I have bind a method to browser window that opens a gwt popup when the button is invoked. My problem is, when i scroll the page, the popup stays ...
0
votes
1answer
32 views

GWT Label allignments and CSS

I am having some trouble with GWT Labels and html/css. I have a horizontalPanel, and I am trying to align the 2 labels so that each 1 is on an end of the Horizontal Panel 1) [Label 1 ...
0
votes
2answers
33 views

GWT event that should be fired whenever textbox.setText() is called

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 ...
0
votes
5answers
61 views

How to apply specific stylesheet depends on screen resolution?

I want script in html which will identify the screen resolution, and then depends on that I want to link respective stylesheet for the application. e.g. if the resolution is in between 600x400 then ...
0
votes
0answers
52 views

Unnecessary line spaces are generated in HTML

I am developing a web application by using GWT and I found unnecessary line spaces in the generated html code in browser even if I formatted my JSP code. Do these line spaces have any impact on ...
1
vote
2answers
41 views

GWT uibinder autocorrect off

im using GWT uibinder method and my html contains a textbox like <ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder" xmlns:g="urn:import:com.google.gwt.user.client.ui" ...
0
votes
1answer
43 views

Upload a file - special characters are converted to html chars?

I want to read a file using file chose dialog and send it to the server. Therefore on the client side I created a form that has the content of the file as a String in the SubmitCompleteEvent. ...
0
votes
1answer
53 views

GWT - Structure of a html file for my flowpanel

I have a Flowpanel with some listboxes and labels in it: private ListBox lbStartHour = new ListBox(); private ListBox lbStartMin = new ListBox(); private ListBox lbPauseMin = new ListBox(); ...
1
vote
3answers
80 views

Gwt set label text as lesser than(<) sign using UiBinder

I have the following code for a widget in UiBinder <g:HorizontalPanel> <b:Label>&lt;</b:Label> <b:TextBox ui:field="lowerLimit" ...
1
vote
2answers
73 views

How do I send an XML document to the client in GWT?

I have this piece of code: public void generateXML(DynamicForm form) { Document doc = XMLParser.createDocument(); Element root = doc.createElement("root"); ...
1
vote
2answers
184 views

Set value to GWT checkbox

I want to set value (number or string) to checkbox. This code final CheckBox checkBox = new CheckBox("Some label"); checkBox.getElement().setAttribute("value", i.toString()); ...
0
votes
3answers
51 views

GWT default style name

I'm using GWT for create a web-application; by default Google Web Toolkit append your style name. For example the following code Anchor myAnchor = new Anchor("Test"); create this HTML < a ...
2
votes
3answers
394 views

Achieving min-width with viewport meta tag

I would like my webpage's viewport width to equal device-width as long as device-width > 450px, or 450px otherwise (my layout dynamically scales, but doesn't look good below 450px wide). The ...
0
votes
1answer
31 views

FlexTable visibility listener

I have a control panel, where I do a panel switching between other 2 panels. I would like to add a visibility listener to one of the panels: when become invisible or removed from parent than do ...
0
votes
2answers
91 views

GWT: Additional <br> tags on RichTextArea.getHTML() in Firefox

I have a com.google.gwt.user.client.ui.RichTextArea with text "Hello World". When I do: IE / CHROME String text = richTextArea.getText(); // I get "Hello World" - CORRECT String value = ...
2
votes
2answers
147 views

Discover HTML Object tags methods/properties

The Garmin Communicator API operates through a browser plugin that is exposed to JS from an <object> tag embedded in the HTML body. I'm trying to find any undocumented methods/properties of ...
0
votes
2answers
288 views

java gwt draw horizontal line

How can I draw a horizontal line in java gwt, something similar to the '< hr >' tag in HTML? I tried it by using com.google.gwt.user.client.Element bottomLine = DOM.createDiv(); but that ...
-1
votes
1answer
61 views

GWT AbstractImagePrototype.create unclosed img tag

html = AbstractImagePrototype.create(RESOURCES.icon()).getHTML(); Generates a string like this: <img onload='this.__gwtLastUnhandledEvent="load";' ...
5
votes
2answers
68 views

It has some method to call after html load is complete when a new Presenter is called on GWT and GWTP?

I need to make some adjustment on a div css. But I can't do this on method onBind() or onReveal() because the html isn't loaded when this two method is called. So I was wondering some way to ...
0
votes
3answers
97 views

How to override default styles in GWT without using !important

The GWT module comes with some annoying quirks, one of which is departing from the the standard font-size of 16px and declaring it to be 12px instead. I tried to declare individual font-size for ...
0
votes
2answers
105 views

How to draw in canvas in GWT

I have this simple jQuery code for drawing a triangle in a 40 by 40 canvas element: var context1 = $("#arrow_left").get(0).getContext('2d'); context1.beginPath(); context1.moveTo(25,0); ...
0
votes
1answer
143 views

GWT i18n, change metaTag and reload application

I'm trying to internationalize my GWT application. I read the tutorials and see some examples. Is there a way to do the language change without adding the url the tag "?locale=de" My objective is ...
0
votes
2answers
396 views

How to get GWT textbox value from selenium webdriver?

I'm trying to test my GWT application using selenium, the html generated by GWT Textbox is shown as below: <input type="text" class="gwt-TextBox" > No value there, but from UI i can see the ...
0
votes
1answer
140 views

GWT Chrome issue with anchors inside HTML widgets

I'm having a Chrome only issue when adding anchor tags for internal links inside an HTML widget. This may sound quite unimportant but it's quite annoying for myself and many users. When a page is ...
0
votes
2answers
221 views

How to add external JavaScript Library on GWT?

I'm using an OpenLayers wrapper for GWT, called GWT-OpenLayers On user reference page it says that you need to add a reference on both files, gwt.xml and .html like this on xml: <inherits ...
0
votes
1answer
82 views

Multiline ellipsis for HTML (not text) with GWT

I am getting an HTML string from from a REST server, it looks something like that: "... text with a <span class='myClass'>stylized phrase</span> and then some ..." I need to inject it ...
0
votes
2answers
108 views

How to display GWT widgets on RootPanel?

I have a <div> in My.html file: <html><head> <script type="text/javascript" language="javascript" src=" path/biz.path.nocache.js"></script></head> <div id = ...
1
vote
2answers
35 views

Reoccurring Post with GWT

<div class="post"> <div class="post-user-image"> image </div> <div class="post-content"> <h4> link to user profile, firstname and last ...
1
vote
1answer
502 views

GWT: how can I change browser tab name?

I know that to change the name of the tab in which browser opens the site I need to to change the title tag in the html file. But in GWT the things are a bit different: each new place uses the same ...
0
votes
1answer
57 views

Modifying CSS for GWT App

Using a GWT web app, Firebug says that the following HTML <table class="drop-zone drop-zone-column-66 multi-zone"> ... </table> is using this CSS. .maximized-gadget ...
1
vote
3answers
304 views

Browser History Management

I'm trying to find a clean solution to working with the browser history in the most effective way. (I'm using GWT, but this question is really more general than that.) Here's my situation (I would ...
0
votes
2answers
81 views

GWT minimize generated HTML code

I want to reduce size of HTML code, that is generated, for example, by GWT VerticalPanel. How can I do this? Thanks.
0
votes
1answer
129 views

Disabling javascript alerts from iFrame

I have an iFrame inside my HTML code. This iFrame has a javascript that shows Window.alert() popups. How can I prevent them from appearing? and also prevent the iFrame from interacting with my ...
0
votes
2answers
87 views

Add ClickHandler to html class

I need to add ClickHandlers to many checkboxes (>4000), and it's doing for 40 sec. How can I add handler to all elements in html class? now: ChckBoxHandler cbh = new ChckBoxHandler(); ...
3
votes
2answers
123 views

GWT NoSuchElementException with HTMLPanel and addAndReplaceElement method

Here some explanations. If my HTML page contains : <div id="cancel_date"> <h3 id="cancel_date_title"></h3> <table align="center"> <tr> <td ...
1
vote
2answers
673 views

libgdx HTML5 deployment

I've been working with libgdx for 2 days, and I'm starting to get the hang of it. I'm comfortable with deployment on Android and desktop, but I've got no clue about how to run/debug or deploy the ...
1
vote
1answer
171 views

Is there a need for GWT SafeHtml when using UiBinder?

Let's say you have the following MyPanel.ui.xml: <!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent"> <ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder" ...
0
votes
2answers
164 views

Insert space in gwt using the safe html template

I have the following gwt html template in order to set the title of a panel in my project. @Template("<div>{0}<span style=\"font-size: 11px;\">{1}</span></div>") SafeHtml ...
2
votes
2answers
395 views

Reflow/Layout performance for large application

I am using GWT to build a HTML application where the performance is correct in general. Sometimes, it can load many objects in the DOM and the application becomes slow. I used Chrome Developer Tools ...
1
vote
4answers
290 views

Facebook button not displayed inside GWT Element.setInnerHTML(). Tweet button displayed without styles

I am using this Element on GWT to successfully add and display HTML code on my web app. However, when I try to add the "Facebook like button" code, it is not displayed at all: Element ...

1 2 3 4 5 6