Re: Is there an easy way to use GWT Request Factory?

2022-05-23 Thread Rogelio Flores
The big disadvantage that I see with gwt-rpc is that it ties your client-side with your server-side code (if you change anything related to your models/rpc on the client side, you also have to update your serve-side code, otherwise, it will not work). To me that in itself is a big

Re: Only picking up Default locale values in some places

2022-01-07 Thread Rogelio Flores
>From the code you shared, I see no issues (although I don't understand your comment "made easier to distinguish with the prefixed '@'" and I don't know the values that are checked inside your "getShortcutPrettyHtml()" method). I would check four things: 1. The logic of "getShortcutPrettyHtml()"

Re: GWT + EMF + JSON

2020-10-26 Thread Rogelio Flores
I know nothing about EMF, or emf-json, but it seems to me that you need to do it this way: https://emfjson.github.io/projects/gwt/latest/ (using emfjson-gwt) On Friday, October 23, 2020 at 7:10:31 AM UTC-6 tonio@gmail.com wrote: > Hi all, > I am using GWT with EMF and I want write files

Re: can gwt be used with cockpit ui project?

2020-07-14 Thread Rogelio Flores
xception, is that history frame is actually visible rectangle > in the cockpit page > > On Mon, Jul 13, 2020 at 7:04 PM Rogelio Flores > wrote: > >> If you're not integrating much with cockpit then there's not much extra >> to do. It would be hard or at least mor

Re: can gwt be used with cockpit ui project?

2020-07-13 Thread Rogelio Flores
UTC-6, Elhanan wrote: > > Actually i don't want to integrate much woth cockpit just want to call out > some rest api to another server. Why would it be hard? > > On Thu, Jul 9, 2020, 00:45 Rogelio Flores > wrote: > >> Of course GWT can be used, but IMO is pr

Re: can gwt be used with cockpit ui project?

2020-07-08 Thread Rogelio Flores
Of course GWT can be used, but IMO is probably not needed and would be easier not to use it, unless you want to program all the client-side logic using Java and integrate it with cockpit using JsInterop. On Wednesday, July 8, 2020 at 1:57:48 AM UTC-6, Elhanan wrote: > > hi.. we've been using a

Re: Issues with Maven Plugin for GWT

2020-05-18 Thread Rogelio Flores
find any. On Saturday, May 16, 2020 at 6:06:37 AM UTC-6, Thomas Broyer wrote: > > > > On Saturday, May 16, 2020 at 2:49:06 AM UTC+2, Rogelio Flores wrote: >> >> I tried using the Maven Plugin for GWT ( >> https://tbroyer.github.io/gwt-maven-plugin/) with an ex

Issues with Maven Plugin for GWT

2020-05-15 Thread Rogelio Flores
I tried using the Maven Plugin for GWT ( https://tbroyer.github.io/gwt-maven-plugin/) with an existing project that I just upgraded to use GWT 2.9.0. When I try running mvn run:codeserver, I get this: [DEBUG] Arguments: com.google.gwt.dev.codeserver.CodeServer -workDir

Re: Upgrade to 2.8.2 from 2.7.0 is having compilation errors while doing GWT compile

2020-04-27 Thread Rogelio Flores
Make sure you're using jdk version 8 or 9 but not higher. I think I saw that error when I used java 13 by accident. Hope that helps. On Monday, April 27, 2020 at 5:01:30 AM UTC-6, pratik thaker wrote: > > Hi Team, > > I have upgraded to GWT 2.8.2 from 2.7.0 and in Eclipse it is not showing >

Re: BPM designer

2019-09-17 Thread Rogelio Flores
I think you need to be a bit more specific. What exactly are you looking for? What kind of library? What specific things do you want this library to do? And BPM stands for "Business Process Modeling"? Looks like Red Hat's jBPM uses GWT and it's open source. On Monday, September 16, 2019 at

Re: GWT strengths and suitability for enterprise apps - presentation

2019-07-19 Thread Rogelio Flores
ameworks except one app that still lives on GWT. > > Do you have any clues if there are further efforts planned or ongoing ? > > Debasish > > > > > > On Thursday, December 10, 2015 at 2:58:11 AM UTC+5:30, Rogelio Flores > wrote: >> >> Regarding your p

Re: Display with FlexTable

2019-04-18 Thread Rogelio Flores
Just add the additional detail rows as in the showcase: http://samples.gwtproject.org/samples/Showcase/Showcase.html#!CwFlexTable. If your list of components is large and variable (perhaps it comes from the server), I would recommend that you use a Cell Table (custom datagrid), such as this

Re: How to get the SuggestBox value

2019-04-12 Thread Rogelio Flores
Yes, or a full solution that I just tested it works: public void onModuleLoad() { MultiWordSuggestOracle oracle = new MultiWordSuggestOracle(); String[] words = {"Alpha", "Apple", "Anaconda", "Beta", "Beautiful", "Best", "Better"}; for (String word: words) {

Re: StackPanel Toggle

2018-11-02 Thread Rogelio Flores
o overwrite the default behavior? > > Thanks, > -Hossein. > > On Wednesday, October 31, 2018 at 2:16:14 PM UTC-4, Rogelio Flores wrote: >> >> Ok, I forgot about the StackPanel, which already does what you want, >> except you have to click on the header of each "st

Re: StackPanel Toggle

2018-10-31 Thread Rogelio Flores
at 6:43:02 PM UTC-6, Hossein wrote: > > @Rogelio, > > Thanks for your response. Please see attached. How would I create that > behavior myself? Any help would be appreciated. > > Thanks > > On Tuesday, October 30, 2018 at 7:13:51 PM UTC-4, Rogelio Flores wrote: >

Re: Dynamic SelectionCell

2018-10-31 Thread Rogelio Flores
his is how I instanciate a SelectionCell > Column categoryColumn = new Column(new > SelectionCell(list)) { > } > where list is a List, > therefore all my rows have list as value in the categoryColumn ... > > On Wednesday, October 31, 2018 at 12:22:43 AM UTC+1, Rogelio Flores wrot

Re: Dynamic SelectionCell

2018-10-30 Thread Rogelio Flores
Of course it is possible, just look at the CellTable in the GWT Showcase: http://samples.gwtproject.org/samples/Showcase/Showcase.html#!CwCellTable Instead of a DataProvider as in the example, you probably want an AsyncDataProvider which gets the data from the server through your servlet. On

Re: StackPanel Toggle

2018-10-30 Thread Rogelio Flores
Of course you can always create that behavior yourself, or you could simply put your panel inside a DisclosurePanel: http://samples.gwtproject.org/samples/Showcase/Showcase.html#!CwDisclosurePanel On Monday, October 29, 2018 at 2:56:31 PM UTC-6, Hossein wrote: > > Is it possible to toggle the

Re: First experience using GWT Boot in my Java Devs Training

2018-05-24 Thread Rogelio Flores
Nice article, thanks for sharing it. I wonder if it's time to move from maven to gradle (in general and also talking specifically about GWT Boot). On Wednesday, May 23, 2018 at 2:24:14 PM UTC-5, Dr. Lofi Dewanto wrote: > > This article is now being published by DZone: *http://bit.ly/2IICra8 >

Re: Editor and enumeration or object cast

2018-04-25 Thread Rogelio Flores
You probably need to do what the error message suggests; provide a no-argument constructor, and if you must have a constructor with arguments, use the @UiFactory or @UiField annotations. Search for UiFactory in this page to see how it's used:

Re: GWT and Cordova/PhoneGap - use JsInterop?

2018-03-05 Thread Rogelio Flores
I would start with http://www.m-gwt.com/ I used it for a prototype a couple of years ago with GWT 2.7 I think, and I only needed a few hours to get something running with camera, location and OAuth support. Don't know if it works with the latest version (2.8.2), but if it doesn't, I don't

Re: What is Wrong With GWT Widgets

2018-01-23 Thread Rogelio Flores
There's really nothing wrong with widgets per se, they work fine. The reason our community is saying to stay away from them (i.e. don't use them for new development) is because the parts of GWT that make them possible will be deprecated in the future. Nobody really knows when that will be--if

Re: Integration between Datatables and GWT

2017-10-04 Thread Rogelio Flores
I don't know of any integration with DataTables except that there's GQuery which I seem to remember its author mentioning that it supports plugins with probably some limitations (I use gquery in a production GWT app, but haven't tried running any jquery plugin with it). On the other hand,

Re: GWT Editor with Custom Composites

2017-04-20 Thread Rogelio Flores
1. Sure, you will just need to implement an Editor interface in your component using your *Element. 2. I can think of one way of doing this; you would still bind an input element to each type, and then display only the one you want to use/handle (if you can live with that). Not sure I see the

Re: GWT + Open API

2017-03-23 Thread Rogelio Flores
t; module. What do you specifically mean by a module here? Do you use > some publicly-available tools, or do you have something home-grown? > > On 22.03.2017 23:51, Rogelio Flores wrote: > > Yes, those are the Models I was referring to. > > > > I can't compare

Re: GWT + Open API

2017-03-22 Thread Rogelio Flores
code, do you use swagger-codegen to > generate Java client code, so that you get Java classes implementing > the types from the OpenAPI #/definitions? > > On 21.03.2017 20:50, Rogelio Flores wrote: > > We do auto-generate Java source code out of the swagger api (including >

Re: GWT + Open API

2017-03-21 Thread Rogelio Flores
to read), but generating some bits, like a model of the data > structures could be useful. > > On 20.03.2017 18:24, Rogelio Flores wrote: > > We use RestyGWT to consume a swagger REST API and are very pleased > > with it: > > > > https://resty-gwt.github.io/inde

Re: GWT + Open API

2017-03-20 Thread Rogelio Flores
We use RestyGWT to consume a swagger REST API and are very pleased with it: https://resty-gwt.github.io/index.html On Monday, March 20, 2017 at 7:06:08 AM UTC-6, Irek Szczesniak wrote: > > Hi, > > I need to develop a web client with GWT, which consumes a web service > defined with Open API

Re: Default value in ComboBox

2017-03-15 Thread Rogelio Flores
If you want a value to be selected by default, just add that value first to the ListBox (get rid of the "Choose a language" option). See the Showcase for an example: http://samples.gwtproject.org/samples/Showcase/Showcase.html#!CwListBox If you're using an external widget library, you should

Re: doesn't work

2017-02-16 Thread Rogelio Flores
You need to include the "nocache" script just like your host html file does. It looks something like this: On Thursday, February 16, 2017 at 4:48:47 AM UTC-7, Daniel Kln wrote: > > I am using GWT 2.8.0 > > Am Donnerstag, 16. Februar 2017 12:46:27 UTC+1 schrieb Daniel Kln: >> >> Hello,

Re: Ping on client side

2017-01-24 Thread Rogelio Flores
You need to replace your HttpURLConnection(s) with RequestBuilder, GWT-RPC, or similar http request. Depending on your selection of http connection, and assuming you're connecting to the same server where the application is hosted, your URL will become a Path to your RPC Servlet, REST endpoint,

Re: SuggestBox in DataGrid?

2017-01-20 Thread Rogelio Flores
If I needed a SuggestBox-like widget in a cell, I would implement my own CellWidget. This would require that you basically re-implement the whole widget using the custom-cell approach. Not trivial like simply adding the already made SuggestBox, but it will perform nicely like cell-based widgets

Re: GwtMaterialDesign vs gwt-polymer-elements

2016-11-18 Thread Rogelio Flores
The major differences I see between them are that gwt-polymer-elements wrap polymer, which uses web components, which might be more future-proof if/when web components become the preferred/standard way to build UI widgets. Also, it not only supports paper elements (think material design), but

Re: GWT and Oracle

2016-10-04 Thread Rogelio Flores
Mmmm, isn't GWT mentioned in slide 63?... Probably comparing GWT to DukeScript, or maybe they forgot to change GWT to DukeScript ? ;-) On Monday, October 3, 2016 at 3:24:58 PM UTC-6, clou...@gmail.com wrote: > > Came across this presentation in the context of the recent Java One > conference.

Re: DataGrid with a Frozen Column?

2016-09-02 Thread Rogelio Flores
A colleague of mine implemented "frozen columns" by having two DataGrids. It was for a project at a previous job and can't share the code, but the implementation goes like this: Create two DataGrids. One will have the frozen column(s). Put them next to each other horizontally. The one on the

Re: Feeback on upcoming application

2016-07-26 Thread Rogelio Flores
I would use it mostly to move files from one "driver" to another, not so much as an editor as I would probably prefer a dedicated editor for a given type. But it would be useful to move files between storage providers and/or local file system. On Monday, July 25, 2016 at 11:17:16 PM UTC-6,

Re: Can meta tag with gwt:property replace url query parameter?

2016-06-07 Thread Rogelio Flores
Thanks Jens! I actually modified slightly the desktop view to look like the mobile one in the particular case I needed which for my use case is actually better, but now I know where the property provider lives and how to create one if I need to in the future. On Monday, June 6, 2016 at

Can meta tag with gwt:property replace url query parameter?

2016-06-06 Thread Rogelio Flores
I posted this question in the mgwt forum but it doesn't seem that is getting much traffic lately... By using ?mgwt.formfactor=phone in the url of my app, I can force the phone form factor even if the app is not in a phone form factor (e.g. desktop). I want to do the same without having to

Re: Recommendation for GWT and AppEngine communication

2016-04-11 Thread Rogelio Flores
I'm using GWT + RestyGWT + Jersey (server-side for REST service definition) in my latest GWT app. I intend to use those tools + Objectify + JDO? for a new GWT-AppEngine app. Not sure about how it will work as I'm yet to get started with this toolchain, but I remember David Chandler writing

Re: Deploy GWT App to Google App Engine

2016-03-08 Thread Rogelio Flores
I started my gwt + appengine project with Brandon's archetype which already does everything for me: https://github.com/branflake2267/Archetypes/tree/master/archetypes/gwt-basic-rpc-appengine This uploads my app (after you build it as mentioned already in the thread) mvn appengine:update I

Re: GWT vs AngularJS

2016-03-03 Thread Rogelio Flores
@Boris I think exactly the opposite has been observed with respect to the output javascript size. GWT's transpiler does optimizations, minification, and obfuscation. You might be failing to consider that only one permutation of the javascript code is the one that actually runs on a given

Re: What is best IDE for developing GWT applications?

2016-03-01 Thread Rogelio Flores
Works fine for me too. The only issue I've noticed is that for some external modules such as mgwt, I don't get code-completion on the widget names when including them from a common package path (e.g. mgwt:panel.flex.FlexPanel and mgwt:panel.scroll.ScrollPanel). MGWT has almost every widget in

Re: Project structure in IntelliJ

2016-03-01 Thread Rogelio Flores
I don't put my module file or ui.xml files outside of main/java, but I do have gss, and other resources (images, icons, etc) in main/resources. I do see a visual warning on ui.xml or other files that include these resources, but it works fine. I have main/resources configured as a "Resource

Re: What is best IDE for developing GWT applications?

2016-02-29 Thread Rogelio Flores
that means you get A.java B.java A.ui.xml B.ui.xml >>>>> instead of A.java A.ui.xml B.java B.ui.xml. >>>>> >>>>> Since I am using gwt-maven-archetypes I even have to kill the Code >>>>> Server by hand - I cannot use the Ecli

Re: What is best IDE for developing GWT applications?

2016-02-27 Thread Rogelio Flores
I find IntelliJ to be superior to eclipse, not only in its out of the box (for the Ultimate edition--not free) support for GWT, but for almost everything else. I was too an eclipse user for many years so I know the difference. On Saturday, February 27, 2016 at 8:13:56 AM UTC-7, Gilberto

Re: GoogleBot is using the wrong permutation?

2016-02-27 Thread Rogelio Flores
If you compile your app with the "PRETTY" compiler flag and then deploy it and run the same test, you might know exactly what "Kg" is (what its real name is on your Java code) which hopefully will let you know exactly what is failing and why. On Friday, February 26, 2016 at 2:29:21 AM UTC-7,

Re: mouse over

2016-02-24 Thread Rogelio Flores
One quick and easy way of doing it is using GQuery (http://dev.arcbees.com/gquery/): UiBinder file: Inside my div element Corresponding Java file: @UiField DivElement divElement; ... GQuery.$(divElement).on(BrowserEvents.MOUSEOVER, new Function() { @Override

Re: Mobile application from GWT examples. Testing mobile on desktop

2016-02-11 Thread Rogelio Flores
Without knowing how you're running the app or seeing code on how the main view is loaded, I would guess that you're running into caching issues on your browser. Clean the browse cache and retry. Also, print logging messages to the console and watch to see if you're running the latest code on

Re: Organizing project files with UIBinder

2015-12-15 Thread Rogelio Flores
I've done both approaches. I started creating UiBinder ui.xml files in the resources folder separate from java files (same package name). This helps to cleanly separate .java from other types of files just like I do for css/etc. However, I think both eclipse and IntelliJ create the pair of

Re: Ready made Ui component set for GWT

2015-12-14 Thread Rogelio Flores
You're correct. The GWT Steering Committee has said that the next major version of GWT (3.0) might get rid of the Widget library. I personally think that it will continue to exist even if it's not GWT proper (as a separate library/module), simply because for some it's a better/faster way to

Re: GWT strengths and suitability for enterprise apps - presentation

2015-12-09 Thread Rogelio Flores
Regarding your presentation: Slide 5 - mentions that GWT 3.0 has "revolutionary use cases". What are you referring to? I would add a slide that talks about some of the shortcomings of GWT. For instance: Widgets out of the box are somewhat lacking, at least if you want eye-candy, but

Re: DataGrid with Column freezing option

2015-11-30 Thread Rogelio Flores
A colleague of mine implemented this a few years ago (at previous employment) by using two DataGrids (one representing the "frozen" columns). Both grids shared the same data but obviously displayed a different set of columns. On Friday, November 27, 2015 at 12:25:12 AM UTC-7, karan wrote: > >

Re: How to eliminate extra balnk column in CellBrowser

2015-10-27 Thread Rogelio Flores
Here's a screenshot from the Showcase using Chrome on openSUSE 13.2. Note the last column on the right (empty and unneeded): I also see the same in Firefox (linux), and on

Re: How to eliminate extra balnk column in CellBrowser

2015-10-27 Thread Rogelio Flores
d non-leaf > ones? > > So in your case maybe "just" configure a larger default column width? > > On Tuesday, October 27, 2015 at 4:26:51 PM UTC+1, Rogelio Flores wrote: >> >> Here's a screenshot from the Showcase using Chrome on openSUSE 13.2. Note >>

How to eliminate extra balnk column in CellBrowser

2015-10-26 Thread Rogelio Flores
On a CellBrowser, whenever you select a given value/row on a non-leaf column, two new columns are added, the one with the result(s), and an additional blank one. Does anyone know a way to eliminate the extra blank column when selecting a value that displays the leaf column values? That is, I

Re: GWT 2.8 update

2015-07-21 Thread Rogelio Flores
You can already use Java 8 to compile GWT 2.7 if that helps you at all (just don't use Java 8 syntax on the client side yet). I've been using it for over two months without any issues. On Tuesday, July 21, 2015 at 7:41:09 AM UTC-6, steve Zara wrote: I am in the same situation. Having seen

Re: GWT Meet-up 2015 : which technologies for new project

2015-06-15 Thread Rogelio Flores
I'm not any kind of official voice for GWT or anyone, but my take is: 1) It might be true that UiBinder will be discontinued to favor some other templating system, but right now there's no replacement so we're using it extensively and I think a replacement will only be available long-term. 2)

Re: Looking for GWT UI design tutorial

2015-05-05 Thread Rogelio Flores
I would start using the Composite class to create custom widgets through good ol' composition in Java, where you can integrate any other widgets and expose as little or as much as you want in the new Composite Widget you create. The javadocs or anything on gwtproject.org about it should be

Re: gwt events

2015-04-29 Thread Rogelio Flores
You can at any time update the data on your grid. If you're using a cell widget like DataGrid or CellList and an AsyncDataProvider for instance, you simply call: provider.updateRowCount(...) provider.updateRowData(...) On Wednesday, April 29, 2015 at 8:19:08 AM UTC-4, hockeyjohn wrote: Hi,

Re: [GWT developer plugin is not support on linux]

2015-03-16 Thread Rogelio Flores
I use ubuntu 14.04, and just wanted to reiterate that indeed SDM works the same and equally fast. I also have a copy of Firefox 24 ESR with the GWT plugin where I can run GWT apps without issues. On Sunday, March 15, 2015 at 2:35:32 PM UTC-4, Jens wrote: I see on Windows, if run as web

Re: MVP Pattern Without History Mechanism?

2015-03-11 Thread Rogelio Flores
I don't see any, but also don't see any reason why you wouldn't want to have history support in your app. On Wednesday, March 11, 2015 at 3:26:01 AM UTC-4, Abdullah wrote: Hi, Is any Impact Implementing MVP Pattern Without History Mechanism? -- You received this message because you are

background-image with gss

2015-03-09 Thread Rogelio Flores
How does one use a background image in conjuction with GSS + ClientBundle? According to how I interpreted the documentation [1], I tried this: [inside MyBundle extends ClientBundle]: @Source(bg.png) ImageResource gridBackground(); [inside app.gss]: .myClass { background-image:

Re: gwt-mosaic and GWT 2.7

2015-02-17 Thread Rogelio Flores
I know gwt-mosaic has been abandoned for a number of years, but we do have a project using the library with gwt 2.7. There are some warnings but the project still runs fine. If you need help, perhaps you want to show exactly what problems you're encountering. On Tuesday, February 17, 2015 at

Re: i18n Text with hyperlink

2015-02-02 Thread Rogelio Flores
You can inclide html in your i18n strings. See here: http://www.gwtproject.org/doc/latest/DevGuideI18nMessages.html#SafeHtmlMessages On Monday, February 2, 2015 at 3:02:46 AM UTC-5, Eugen Besel wrote: Hello together, is it possible to add html markups to the i18n text? for example I have

Re: Wrapping HTML into UIBinder

2015-01-19 Thread Rogelio Flores
Yes, you can have your html inside an HTMLPanel. answering your other questions... - For event handling, look at the @UiHandler annotation for adding handlers, usually apply to GWT Widgets. You can also use gwtquery (JQuery clone, not wrapper) to add handlers to any html element (see this for

Re: GWT and Material Design

2015-01-06 Thread Rogelio Flores
I started a gwt module that has CSS and widgets to follow at least the look and feel of Material Design. Unfortunately 1) it's not finished yet, and 2) I worked on it on my employer's time so it's closed source, although I'd like to propose to either open it, or I start work on a new one on my

What is the default linker 2.7.0?

2014-12-04 Thread Rogelio Flores
I seem to remember reading somewhere in the documentation that the xsiframe linker is now the default linker in gwt 2.7.0 (and Thomas Broyer just mentioned this recently--see:

Re: Select All Behavior on CheckboxCell

2014-11-11 Thread Rogelio Flores
Just add a ClickHandler to your button that does this when clicked: for (MyProxy proxy: dataProvider.getList()) { selectionModel.setSelected(proxy, true); } where selectionModel is a MultiSelectionModel and dataProvider is your table's data provider. Your checkBoxes will be checked/unchecked

Re: How to delay GWT datagrid row selection until load is complete?

2014-10-21 Thread Rogelio Flores
Just select the row after you call setRowData (or when your data provider returns with new data--not sure how you're populating your grid). Or maybe even better, after you get a RangeChangeEvent. On Monday, October 13, 2014 6:22:20 AM UTC-6, Bharat Srinivasan wrote: Is there any way that I

Re: newbie CellList Question (remove selected)

2014-10-15 Thread Rogelio Flores
I'd just put a unique ID in each object and use it to identify them. On Friday, September 19, 2014 7:28:36 AM UTC-6, Aaron Weber wrote: I'm using two CellLists as a multi-selection mechanism, both backed with a DataListProvider and KeyProvider for a small, private class (with a couple of

Re: SuperDevMode with -noserver and remote server

2014-10-01 Thread Rogelio Flores
3:26:33 AM UTC-6, Thomas Broyer wrote: On Wednesday, October 1, 2014 1:16:23 AM UTC+2, Rogelio Flores wrote: Mmm, could it be that my remote server uses HTTPS? I see a javascript warning about this in the console, and just noticed in the release notes something about super dev mode being

SuperDevMode with -noserver and remote server

2014-09-30 Thread Rogelio Flores
I have an app that that has a server with a complex setup and is memory-intensive so we run it on a remote host. Good ol' DevMode runs fine if we run it with -noserver and point to remote host. I just upgraded to latest GWT as it was using an old version, and we want to start using

Re: SuperDevMode with -noserver and remote server

2014-09-30 Thread Rogelio Flores
Thanks, unfortunately this is a project I didn't setup and has an ant build script which would take me some time to convert to maven (something that I'd like to do in near future but want to avoid atm). But isn't the codeserver independent of the server running the compiled app? What would you

Re: SuperDevMode with -noserver and remote server

2014-09-30 Thread Rogelio Flores
And what whitelist setting might that be? On Tuesday, September 30, 2014 3:01:26 PM UTC-6, Michael Joyner wrote: Just a shot in the dark, but did you enable the whitelist setting in the xml file? On 09/30/2014 02:26 PM, Rogelio Flores wrote: I have an app that that has a server

Re: SuperDevMode with -noserver and remote server

2014-09-30 Thread Rogelio Flores
Mmm, could it be that my remote server uses HTTPS? I see a javascript warning about this in the console, and just noticed in the release notes something about super dev mode being disabled for security reasons in that scenario and that it didn't work anyway (?). Is there a workaround for that

Re: CellTable Proxy !

2014-06-11 Thread Rogelio Flores
There should be no difference between using a real model and a ValueProxy. My guess (more info needed) is that your usage or config of RF is wrong. If you talk about one specific problem and give more details about your code/config, people might be able to help you better in this forum. On

PlaceHistoryMapperGenerator failing error

2014-05-06 Thread Rogelio Flores
After a big git merge with conflicting files, our project doesn't gwt-compile anymore. It gives this error which I don't remember seeing before: [INFO]Computing all possible rebind results for 'com.mycomp.HistoryMapper' [INFO] Rebinding com.mycomp.HistoryMapper [INFO]

Re: PlaceHistoryMapperGenerator failing error

2014-05-06 Thread Rogelio Flores
One detail I forgot: using gwt 2.5.1. On Tuesday, May 6, 2014 7:55:28 AM UTC-4, Rogelio Flores wrote: After a big git merge with conflicting files, our project doesn't gwt-compile anymore. It gives this error which I don't remember seeing before: [INFO]Computing all possible rebind

Re: PlaceHistoryMapperGenerator failing error

2014-05-06 Thread Rogelio Flores
your project (all outputs) and remove the .gwt-unitCache. Also, set a breakpoint where the NPE is thrown to try to find what can be the cause. If you can provide me a repro case, I could debug myself if you prefer. On Tuesday, May 6, 2014 1:55:28 PM UTC+2, Rogelio Flores wrote: After a big

Re: Custom CellTree Recources

2014-04-15 Thread Rogelio Flores
I don't know of a way to replace the default styles (other than extending the class) except by providing our custom styles in the constructor. So what we do is sometimes we extend the class to provide it's own styles + custom behavior, or if we only need different styling, create custom

Re: How to set size for TextInputCell ?

2014-03-07 Thread Rogelio Flores
It has actually been answered elsewhere before it was even asked here: http://stackoverflow.com/questions/5182245/setting-the-width-of-a-column-without-clipping-textinputcell-in-gwt-2-2-celltabl On Monday, March 3, 2014 11:22:32 AM UTC-5, Sean wrote: Glad this hasn't been answered in ~3yrs

Re: native Drag n Drop support

2014-02-14 Thread Rogelio Flores
On my GWT.create conference presentationhttp://www.slideshare.net/RogelioFlores2/tabular-data-with-gwt, I showed dnd working between two DataGrids. It supports multi-selection and it uses the basic native dnd events that come with GWT mentioned by Thomas. I've never done the same with trees,

Re: RequestFactoryEditorDriver Can P be a list of proxy ?

2014-02-14 Thread Rogelio Flores
On the other hand, if you are editing a list of proxies and using a DataGrid, you want to take a look at HasDataEditor, which allows you to edit a list of proxies by doing simply this: HasDataEditorProxy myListEditor = HasDataEditor.of(myDataGrid) On Friday, February 14, 2014 6:07:46 AM

Re: GWT application not loading on chrome box

2014-02-10 Thread Rogelio Flores
If you can't get a chrombox to test with, you might want to try running ChromeOS on a virtual machine just for testing purposes. On Thursday, February 6, 2014 4:15:56 PM UTC-5, NK wrote: We have a web application developed in GWT. One of our customer complained that our application is not

Re: GWT/JavaScript code generation tool

2013-12-19 Thread Rogelio Flores
You guys should look at the keynote Ray Cromwell gave at the GWT.create conference where he talked about JS Interop planned for GWT 3.0, which will use annotations to wrap more easily JS libraries within GWT code. One goal is to do something similar on the JS side (some type of JS annotations)

Re: celltable does not respond to right padding unless text is right aligned

2013-12-18 Thread Rogelio Flores
How did you change the padding on the cell? Did you try overriding the css in the default Resources? For example, IIRC, overriding DataGrid.Style css file with this: .dataGridLastColumn { padding-right: 20px; } works. On Tuesday, December 17, 2013 9:08:52 AM UTC-5, Yan wrote: Hi there,

Re: GWT y AdSense

2013-10-23 Thread Rogelio Flores
Miguel, creo que sería mejor que mostraras el código específico de uno de los métodos que usaste para quizás poder ayudar a descifrar el problema. No tengo ni idea de cuál será la solución, pero una posibilidad es que tu código tenga fallas que alguno en este forum pueda ver una vez que

Re: Prefetching GWT modules

2013-10-22 Thread Rogelio Flores
This should only happen on the first visit to the page, but subsequently, your gwt scripts should be cached so there's no need to download anything but the nocache script. Search about servlet filters and see how you can enforce all cache-named items to be cached so that they only get

Re: GeoChart not working in GWT application

2013-09-04 Thread Rogelio Flores
I don't know how to fix the problem you're facing, but if I understand correctly, you're wrapping the JS API. Have you considered using any of the two already available wrappers for GWT?: https://code.google.com/p/gwt-google-apis/wiki/VisualizationGettingStarted (official project from google)

Is multi-level fetch depth with RequestFactory possible?

2012-03-20 Thread Rogelio Flores
I have an issue that might be JPA/Hibernate-related, but it could also be related to RequestFactory, so bear with me pls: I have the following JPA @Entity-s: class Profile { @OneToMany(cascade = CascadeType.ALL) ListSetting settings = new ArrayListSetting(); // other properties... }

Cloning EntityProxies

2012-03-20 Thread Rogelio Flores
I have started to use RequestFactory (RF) recently (long-time RPC user). There's something I haven't found how to do apart from manually copying data; I want to clone an EntityProxy. In fact, one that contains a 1:n mapping (contains a List of other EntityProxies). Not sure this last part