Questions tagged [gwt]

GWT, previously known as the Google Web Toolkit, serves as a powerful toolkit designed to construct and enhance intricate applications that operate within web browsers. Its primary objective is to facilitate efficient development of high-performing web applications, eliminating the need for developers to possess extensive expertise in browser idiosyncrasies, XMLHttpRequest, and JavaScript. Numerous Google products, such as the recently updated AdWords and Groups versions, rely on GWT. Notably, this open-source solution is fully accessible to all without any charges thanks to its Apache 2.0 license.

Is there a way to eliminate the menuArrow from a Select widget in gwt-bootstrap3?

In my current project, using gwt-bootstrap3, I have been attempting to conditionally remove the menu arrow from a Select box. I have experimented with various methods such as: <select:Select ui:field="fieldName" name="fieldName" b:id="fieldName" showM ...

Creating a GWT-compatible solution for implementing the Google Visualization - Annotation Chart

I am currently using the newly launched Annotation Chart in GWT by integrating native JavaScript. I have managed to display the example chart successfully, but unfortunately, it lacks interactivity and behaves more like an image. Can anyone provide guidanc ...

Exploring JavaScript through the Lens of Object-Oriented Concepts from Java

Having spent a significant amount of time using Java, I delved into web development with GWT (Google Web Toolkit) where the convenience of having my Java object-oriented constructs translated to GWT seamlessly by Google was a major draw. While my knowledge ...

How do history and locations in GWT relate to each other?

From what I've noticed, History is utilized in a single html page with numerous AJAX interactions. It assigns each state to a unique token for identification purposes. On the other hand, Places is employed across different html pages, where it assigns each ...

Adding CSS properties to an image within the ImageResourceCell of a CellTable

After creating a CellTable with an image column in GWT using ImageResource, I encountered a problem. I needed to change some CSS properties of the image such as size or adding 'cursor="pointer" for a click event, but was unsure how to do so. When insp ...

Issue with Java Script inheritance in google.maps.OverlayView not functioning as expected

UPDATE: After spending another day working on this, I believe I have identified the issue, although it is not yet confirmed. Once I have verified the solution, I will update this post with an answer. My current understanding is that the problem arises fro ...

How to Adjust the Padding of Tree Row in GWT?

Have you ever seen a GWT tree before? It sort of resembles the following structure: <div class="gwt-Tree"> <div style="padding-top: 3px; padding-right: 3px; padding-bottom: 3px; margin-left: 0px; padding-left: ...

Tips for effectively testing GWT and SmartGWT together in unit tests?

Currently, I am conducting unit testing on the client side of a GWT+SmartGWT application. Initially, I utilized GwtTestCase for testing, but found it to be too time-consuming for such a large application. Even when using GwtTestSuite, the execution time wa ...

What is the best way to parse a JSON file in GWT without knowing the structure

I am developing a GWT project and facing the challenge of loading and parsing JSON files with unknown schema. It seems that using overlay types may not be the best approach as I cannot predict the format of the file beforehand. Despite researching online ...

Guide to designing a dropdown navigation menu in GWT

Hey, I'm currently working on setting up a drop down menu using GWT and here's the layout I have in mind: | Categories | Pictures | Other | When the categories dropdown opens, my goal is to display the categories grouped in pairs. For example: | Catego ...

Enhance the appearance of div elements in GWT/HTML with custom styling

I am relatively new to GWT and have been exploring various options, but I have not yet found a solution to my issue. The challenge at hand involves developing a function schedule system in GWT, where I am working on designing the frontend. We currently ha ...

Unable to connect the CSS file from the JSP during a Cross Domain request in Internet Explorer 9

I have created a GWTP web application and am making AJAX calls to a JSP page on a different domain (Cross domain) from the GWT client side. Most of the time, the CSS files are linking correctly and working fine. However, occasionally they do not link prop ...

Wrap Hyperlink with GWT

Within the GWT framework, the Class Anchor includes a method called Anchor.wrap(), specifically designed for wrapping an existing HTML element. However, the problem arises when utilizing Anchor is that it does not keep track of AJAX history. In such cases, ...

Tips for utilizing selenium IDE for creating an HTML report

Currently working on a project developed using GWT, I have been utilizing Selenium IDE to record the steps taken on each page. I am now wondering how I can generate an HTML report after running the test suite in Selenium IDE. Appreciate any help or guida ...

Which is the better option: utilizing Google's webtool kit, or sticking with

If I am looking to incorporate Ajax for smooth page loading and navigation while ensuring the back/forward buttons and unique URLs work seamlessly, should I opt for Google Web Toolkit or stick with really simple history? Do both of these options offer the ...

Is there a way to convert a JSONObject to a .csv file in GWT?

I'm brand new to GWT, so please forgive me if this is a basic question, but I can't seem to find the solution. I have a function that works fine and allows me to export a table as .xlsx file. Everything is going smoothly with this process. I am u ...

Optimal method for integrating Google Font in GWT application

After successfully installing the Roboto font on my machine, I proceeded to include it in my welcome.html file by adding the following code: <link href='http://fonts.googleapis.com/css?family=Roboto:regular,medium,bold,thin' rel='stylesheet' type='text ...

Is it possible that Selenium struggles to locate links, buttons, and text within a GWT framework?

I recently attempted to test my GWT web application using Selenium. Using the Selenium IDE Firefox plugin, I recorded a sequence of actions (registration -> login -> logout). However, during the logout step, the test consistently failed because Selenium ...

Retrieving data from a separate server using GWT on the client side

My dilemma involves a file called sample.xml residing on one web server, and I need to retrieve this file from a GWT application running on a separate server. Rather than making RPC calls to the GWT server to access the file through server-side proxy, I pr ...

The GWT plugin seems to be missing when using chromedriver

Trying to run Selenium tests on a GWT Java application and utilizing the ChromeDriver for this purpose. Requiring the GWT Plugin in the settings, here's the process I follow: @Provides @Singleton protected WebDriver getDefaultWebDriver() throws IOEx ...

Transferring information back and forth from GWT to PHP

As someone who is new to both GWT and PHP, I have been struggling to understand how to efficiently exchange data between the frontend and backend. While I found success following tutorials that suggested using the RequestBuilder class for getting data from ...