Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 8 Next »

Requirements:

  1. The mobile solution need to have the mobile solution type
  2. If the data shown in mobile app is user specific the mustAuthenticate has to be enabled
  3. The mobile plugin to be installed

Once the solution type is set to mobile the:

  1. solution explorer view will filter to show only the capabilites possible in mobile. (API wise)
  2. form designer/palette will change to place mobile interface elements only utilizing a different layout manager.

Limitations:

  1. dataproviders are not accessable without a scope, which means first a record object needs to be retreived before the dataproviders from such a record can be accessed.
    example:
    var rec = foundset.getSelectedRecord();
    if (rec.phone_direct) plugins.mobile.call(rec.phone_direct);
    
  2. new records pks always become UUID's values, while UUID are not required for pks for any data delivered by the server, the service solution would need to translate UUID's to local ids upon retrieval of new records.
  3. only single pk are supported on entities. (no compound pk support)
  4. no SQL support, everything has to happen via relations/foundset navigation from the provided root foundset by the service solution.
  5. no calculation support. (yet, is planned)

Within these limitations at form design and API level all business logic should work.

Supported plugins:

  1. Mobile plugin (especially designed for using mobile device capabilities, like GPS and making calls)
  2. Dialog plugin .showWarningDialog function
Other pages
Unknown macro: {list-siblings}


  • No labels