Questions tagged [smartgwt-pro]

Smart GWT Pro is a licensed GWT-based framework that allows you to not only utilize its comprehensive widget library for your application UI, but also tie these widgets in with your server-side for data management

Smart GWT is a licensed GWT-based framework that allows you to not only utilize its comprehensive widget library for your application UI, but also tie these widgets in with your server-side for data management. Best for professional developers building simpler workgroup applications, and micro-ISVs.

For more info please visit: https://smartclient.com/product/

31 questions
7
votes
1 answer

SmartGWT RichTextEditor not capturing any onBrowserEvents

I'm using SmartGWT on my application and have encountered some issues when trying to get events from the browser. I need to get the ONPASTE event, but when I try to use it, the method onBrowserEvent never even gets called. Here is the code that I'm…
Oliver Drummond
  • 680
  • 1
  • 6
  • 19
3
votes
1 answer

SmartGwt Select all option for Selectitem

I would like to have select all option for a select item where multiple set as true. Can I place it like a button or by using some other components ? I have tried by using some buttons but it doesn't looks good.
2
votes
2 answers

Using GWT JSNI to integrate with js files

I am currently working on a GWT project and it now needs to used by an external JavaScript file. I am creating a test prototype right now to ensure both sides are working properly. When I run and compile, I see the console logs in the browser from…
JEberhardt
  • 31
  • 3
1
vote
0 answers

Debug Doesn’t Work After Migrating SmartGWT from v4.0 to v13.0

I have a test environment with the BuiltInDs project that uses the following components: JDK 1.8 SmartGWT Eval v13.0-p20221103 GWT 2.8.2 Maven 3.8.6 And to run it I use the following targets: With this configuration, I can access Developer…
1
vote
0 answers

org.apache.catalina.LifecycleException: java.lang.IllegalArgumentException: java.lang.ClassNotFoundException: com.isomorphic.base.InitListener

Some background first: Our main objective is to have a reduced development environment in SmartGWT integrated with Maven, to be able to test some of the components and validate if we can use them in our software. I set the environment, and update…
1
vote
2 answers

Using the legacy Dev Mode with GWT 2.8.2 and Java 1.8?

We have been using this software combination Java 1.7 GWT 2.6.0 SmartGWT 6.0p-20170922 But we want to upgrade to Java 1.8, so we set out to try this combination Java 1.8 GWT 2.8.2 SmartGWT 6.1p-20180216 I was expecting that the new environment…
leeyuiwah
  • 6,562
  • 8
  • 41
  • 71
1
vote
0 answers

hibernate cann't connect google could sql

I'm working on smartgwt pro with a hibernate datasource. In development there is no no problem. When I deploy the app to Google there is a problem with the hibernate connection to Google Cloud SQL. Here is my hibernate config:
1
vote
1 answer

Adding charts to existing SmatGWT project

I'm currently using SmartGWT LGPL edition. Now I'd like to add HTML5 charts to the project so I'm willing to buy few SmartGWT Pro licenses. I tried the 60 days trial version to build a proof of concept and I failed. I couldn't make even simplicity…
1
vote
2 answers

How to set a max value for IntegerItem

I want to set a max value for an IntegerItem. If a user enters a large number, I want to return a validation error. final IntegerItem qte = new IntegerItem("qte", "Qte"); If a user enters, for example, a number below 5, this is OK, but a large…
lomed
  • 51
  • 7
1
vote
0 answers

latest SmartGWT 4.1 to solve IE 11 issues

I am using smartgwt 3.0 to create my project. However, with this smartgwt version, I'm facing UI issues in IE11. After investigation, I found that it was due to the outdated version of smartgwt. I tried to use smartGWT 4.1 in pom.xml instead of…
1
vote
1 answer

Showing hover text while moving Calendar Event from one place to another

When user is moving one Calendar Event, I want to show time where the user is going to place the calendar event as a tool tip of Calendar Event.
Rajnikant Patel
  • 561
  • 3
  • 19
1
vote
2 answers

Editing server.properties programmatically causes no change?

I am trying to implement a simple database configuration editor (to change host, port, user, etc.), but after saving the /WEB-INF/classes/server.properties file, changes do not seem to be recognized (the old configuration is still there when I…
BLuFeNiX
  • 2,496
  • 2
  • 20
  • 40
1
vote
1 answer

SmartGWT Isomorphic Datasource aggregate SQL functions

I'm looking to get the maximum value of a column from an instance of a com.isomorphic.datasource.DataSource. Is this possible? A general "run this sql against this datasource" would be particularly helpful, as later I'll be looking to do more,…
jcovert
  • 550
  • 1
  • 7
  • 21
1
vote
0 answers

DateChooser date other then Gregorian date

I want to know how can I implement a date chooser in SmartGWT to show other dates for example: chinese,perisan,arabic dates. Any code or link to some site will be appreciated. I tried searching SmartGWT forum but could not find any help. I went a…
ZAJ
  • 793
  • 3
  • 23
  • 50
0
votes
1 answer

Adding row to a ListGrid at a specified index Smart GWT

Currently I'm working on a listgrid which is editable and my requirement is to create a a new row every time a user selects a row and presses the "Create" Button. The new row needs to be added immediately below the selected row. I tried using the…
1
2 3