Android

Requirements

  • A computer running Windows;
  • Chrome
  • Mobile device running Android

1. Download Vysor chrome extension for Chrome

2. Connect your mobile device to a PC or laptop

3. Launch Vysor

4. In the list of available devices, select your device and click "View"

5. The Vysor app will...MoreLess

Like 1

Like

Share

0 comments
Show all comments

Symptoms

Type: Terrasoft.UnauthorizedServerException% 0D% 0A Message: Incorrect bpm'online username, password or server address % 0D% 0A Additional information:% 0D% 0A% 09 {"request": {"id": 2, "headers": { "X-Terrasoft-Mobile": "true", "Accept": "application / json", "Content-Type": "application ...MoreLess

Like 0

Like

Share

0 comments
Show all comments

Symptoms

Type: Terrasoft.SyncException%0D%0AMessage: Unable to connect to server

Probable causes:
- Could not connect to internet
- Server unavailable
- Incorrect server address%0D%0A%0D%0AТип: Terrasoft.ServerException%0D%0AMessage: Server request returned an error%0D%0AAdditional information: %0D%0A%09{"request":{"id":1...MoreLess

Like 0

Like

Share

0 comments
Show all comments

Question



How can I display detail data as a hierarchic (tree-like) structure?

Answer



To implement displaying the detail data as a hierarchic (tree-like) list, perform the following steps:

  1. The detail object should have a field containing the parent record identifier (e.g., Parent) that would...MoreLess
Like 2

Like

Share

2 comments

I tried to do it on a custom section with a very simple custom detail (made only of Name, Main record ID and Parent lookup field to the sam...MoreLess

Show all comments (1)

Question

Is there a way to set the color of a string in the mobile application list?

Solution

Styles (css) can be changed in the configuration. To do this, use the Terrasoft.writeStyles method. Presumably, an example is available in MobileActivityGridPageV2.

Like 0

Like

Share

0 comments
Show all comments

Question

How can I subscribe to an event of pressing a keyboard key to be able to perform certain actions upon pressing?

Answer

You can subscribe to any Ext component via Ext.util.KeyMap 

For example:

onEntityInitialized: function() {
   this.callParent(arguments);
 
   var map = new Ext.util.KeyMap({
      target: "AccountPageV2CodeTextEdit-el",
      key: Ext.EventObject.ENTER,
      fn: this.myHandler,
      scope: this
   });
},
myHandler: function() {
   alert("ENTER");
},
Like 0

Like

Share

0 comments
Show all comments

Question

When I try to set the page type for displaying the "Trade-12" printable and select the false checkbox for [Display on page] or delete this printable, the [Print] button disappears. The created copy for this printable nevertheless works OK, but I cannot open th...MoreLess

Like 0

Like

Share

0 comments
Show all comments

Question

Previously, there was an opportunity to configure the number of records in one data package of the synchronization process (offline) of the mobile application (100 by default).

Answer

You need to change two parameters in the SyncOptions section (the second indicates the number of "bundles"):

"SyncOptions": {
    "UseSkipToken": true,
    "ImportPageSize": 1000,
},
Like 0

Like

Share

0 comments
Show all comments

Case

I added a contact and an event in the iPad version and synchronized. Then I opened the iPhone version and synchronized, but the new data is not shown in the iPhone version.

Goal

Data between multiple mobile applications synchronizes properly

Solution

As a temporary solution, I would recommend you...MoreLess

Like 0

Like

Share

0 comments
Show all comments

Question

How to call a stored procedure from web service?

Answer

Create a source code schema:

namespace Terrasoft.Configuration.UsrTestStored
{
    using System;
    using System.Web;
    using System.ServiceModel;
    using System.ServiceModel.Web;
    using System.ServiceModel.Activation;
    using...

MoreLess

Like 2

Like

Share

0 comments
Show all comments