Questions tagged [vaadin-touchkit]

Vaadin TouchKit is a framework for writing mobile applications in pure Java.

Main Benefits

  • Write mobile applications in pure Java.
  • Animated screen navigation makes your application look like a native app.
  • Produce working apps in hours and deploy them instantly.
  • Reuse your main application code to create a mobile version.
  • Support available for an offline mode.
  • Support for the swipe gesture.

Supported OS

  • iOS 5+
  • Android 2.3+

Website Vaadin Touchkit

19 questions
8
votes
3 answers

experience with Vaadin touchkit

I´m soon to start a new mobile app project and I dont have that much experience with either iOS or Android development but I have used Vaadin for presentation tier on different occasions. The app will most likely be lightweight for the mobile…
Marthin
  • 6,413
  • 15
  • 58
  • 95
5
votes
1 answer

Vaadin Touchkit or mgwt

I am evaluating possibilities to create mobile hybrid Apps with GWT and Apache Cordova / PhoneGap. I already build a small prototype with mgwt and liked it, but I would like to research a few other possibilities before starting the project.…
Sven
  • 1,648
  • 1
  • 21
  • 31
4
votes
2 answers

How can I force Vaadin client engine to retry sending requests to the server?

I'm experimenting with the Vaadin Java framework at the moment and I've noticed that the client engine does not retry sending requests to the server. When mobile internet network is weak or inconsistent it would be good to keep retrying sending of…
newlogic
  • 807
  • 8
  • 25
2
votes
3 answers

How to display button as a link in vaadin

I am new to vaadin. I have one button it should look like a link. I have created button like, Button title = new Button(item.getSubmissionTitle()); title.setStyleName(BaseTheme.BUTTON_LINK); I also tried using…
Learner
  • 976
  • 14
  • 29
1
vote
0 answers

Vaadin Mobile application database connection

I am working on vaadin mobile application. Where I need to connect to database. I have gone through many resources on web. All of them mentioned two classes component.client.SQLRunnerAsync and component.client.SQLRunner class. But I am not able…
1
vote
1 answer

Vaadin FormLayout formatting

Im new at vaadin 7 and have a little issue with formatting. I have spend a few hours but no luck. I have: 2 Form layouts on my vertical Layout. 2 Labels on each form layout. Better check the screenshot I want format label test as on the right part…
Java Dude
  • 454
  • 6
  • 24
1
vote
4 answers

How to set value on click of link in vaadin

I am new to vaadin. I have one Link like Link link = new Link("", new ExternalResource(redirectURL)); my requirement is, I have to set value when user clicks the link. Can I add listener when user click the link. Or is there alternate ways of…
Learner
  • 976
  • 14
  • 29
1
vote
0 answers

Vaadin with Android- How to develop and Synch UI components with Vaading in Android

I am planning to develop an application with adding the UI components of Vaadin framework to the android development. I need some suggestions and advices whether it is possible in android or not. If possible how exactly we can do that. Looking for…
user2462298
  • 41
  • 1
  • 1
  • 6
1
vote
0 answers

generateCell in vaadin

I have a table which have a combobox column, in valueChange listener of combobox I generate another column. All think is OK and second column was added but I lost value of combobox and it was reset. As I understand, generateCell function run two…
Golriz
  • 11
  • 2
0
votes
0 answers

mobile app and push freeze in vaadin touchkit

I tried to integrate Vaadin with Phonegap/Cordova. I follow the instructions in this repository. The problem is that the application freeze when I pause the phone. Tomcat log when I turn off the screen in my android phone: AVVERTENZA: Duplicate…
Tiziano
  • 51
  • 4
0
votes
1 answer

How to combine Spring Loaded with a Vaadin TouchKit application?

I successfully got the following example (simple Spring web application) to run: https://www.youtube.com/watch?v=GTrNkhVnJBU Now I want to use Spring Loaded in a project which is based on Spring Boot and Vaadin TouchKit. When I make a change (new…
0
votes
1 answer

How to go on with Vaadin Touchkit and Spring?

I found the new solution for the Vaadin Touchkit supporting Spring: https://github.com/peholmst/vaadin4spring/tree/master/spring-vaadin-touchkit Now I created a new Touchkit project out of the maven archetype mvn archetype:generate \ …
marc3l
  • 2,525
  • 7
  • 34
  • 62
0
votes
0 answers

Is it much harder to write mobile web apps in Vaadin without TouchKit?

The question says it all. If I don't use TouchKit, which is only free for open source projects, what will be the difficulties I'll likely encounter trying to develop a mobile version of my UI? I'd go about it via the UIProvider facility. Many…
Jan Żankowski
  • 8,690
  • 7
  • 38
  • 52
0
votes
1 answer

Vaadin4spring and Vaadin Touchkit NavigationView

I'm trying to inject a couple of spring services into a NavigationView (Vaadin Touchkit) and the view is not being managed by Spring at all, so no @PostConstruct method is called and therefore services are not being called. Is it possible to manage…
frandevel
  • 747
  • 7
  • 22
0
votes
0 answers

how to call post method from vaadin?

how to call dopost method from vaadin application? BrowserWindowOpener component always call doGet() of servlet. I want to call dopost method so that parameter is not shown at the browser addressbar if I redirect to another url. Will it be ok to use…
1
2