Questions tagged [appconkit]

A business centric SDK allowing developers to create data-centric native iOS and Android apps. Includes a graphical UI Editor and a JavaScript programming API

The AppConKit is a cross-platform mobile application framework to develop native data-driven Apps. Currently, and devices are supported. Apps built with the AppConKit are native Apps, built with a Graphical Designer in an Eclipse environment, utilizing an application description language approach. The programming language is used for client side code. For easier integration into existing (web-)services, a server is automatically generated for every app.

To simplify the development of data centric apps, AppConKit apps know their data structure and automatically cache that data on the device, including syncing. The graphical editor includes data-mapping capabilities.

References

11 questions
3
votes
4 answers

How do i compare against an empty variable?

If I set a variable to 0, I get the weird behavior that a comparison to "" (empty) is true. How do I check that the variable is really empty? tmp = 0; if ( tmp != "") { //do something - This is where the code goes. } else { //isEmpty - I…
Enigma
  • 125
  • 4
2
votes
1 answer

How Can I dismiss a ViewController from a popup callback

I am creating a popup message and show this popup over an action from a button. Now I am trying to dismiss the SplitViewController, on that the popup is shown, from the popup callback. But in my case it fails, so how is the right way to do…
2
votes
1 answer

AppConKit: Set a URL based on the currently configured URL

In the AppConKit, you can give your users the option to configure a Servername, port and path in the Settings that this Apps connects to. Can I somehow access these configured settings in the Javascript code? My use-case is that I have a logo image…
Blitz
  • 5,521
  • 3
  • 35
  • 53
2
votes
1 answer

AppConKit3: Not possible to dismiss current view in onFinish Callback

I want to achieve the following: send some data to the server and upon successful execution, dismiss the current view. What I've done so far: Send the data via DataRequest (works) Add an onFinish Callback (works) Try to dimiss the current…
Blitz
  • 5,521
  • 3
  • 35
  • 53
1
vote
1 answer

Tabbed screen with custom navigation in AppConKit 3

How to create a screen with multiple subscreens as tabs with a custom navigation bar using AppConKit 3? In an app I want to have one screen with tab navigation. It's not a top screen. This screen should have a custom navigationBar. How can I do it…
Sergei
  • 13
  • 2
1
vote
1 answer

AppConKit 3: How do I enable the device log view?

Currently, I am developing an App using the AppConKit 3. In the debug perspective of the IDE, there is a view at the bottom called "Device Log". It is supposed to display log messages generated by the mobile device. There are two fields to input an…
chriz
  • 198
  • 1
  • 5
1
vote
1 answer

How do I copy a foundset?

So I have the following issue: I have a Foundset with a bunch of records, and I'd like to (deep) copy them to a new location, including all values but without the IDs. What's the best way to do this?
oHNo
  • 13
  • 2
1
vote
1 answer

AppConKit3: My changes in the Java Server files get overriden

I'm playing with the AppConKit, and have created a small App so far with a couple of screens. Now I am trying to change the automatically generate Java code. However, any changes I make in the automatically Action classes (for example…
Blitz
  • 5,521
  • 3
  • 35
  • 53
0
votes
1 answer

How to programmatically refresh a screen from onFinished callback function?

e.g. we have this one guy calling server function for creating a new entity: function loadData() { var vServerController = mobileController.serverController(); var vJSONRequest = vServerController.createJSONRPCRequest(); …
0
votes
1 answer

How do I deploy to a Server?

I have created an App with the AppConKit 3 and tested it locally on my Computer, running from the AppConDeveloper. Now i'd like to deploy it to a tomcat server. How do I do that? I've the Eclipse Java Perspective open.
0
votes
1 answer

How can I check the on device database?

So I'm further along in building my app and am construction complex sql queries. Using trial'n'error is getting cumbersome here. Is there any better way? I'm mostly developing on iOS...