Announcement

Collapse
No announcement yet.

Clickable field to IP number for activate 'remote desktop application'

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Clickable field to IP number for activate 'remote desktop application'

    Is their any possibility to make a (field) entry where you have to fill in an IP number ( WAN number ex. )
    And when the user will click on it , the remote desktop application of Microsoft will start and will filled in the given IP number.

    I will use this option in the new Custom Application where all kind of location information is collected.

  • #2
    in entityDefs if your entity
    {
    "fields": {
    ......
    "yourFieldName": {
    "type": "varchar"
    "view": "YourModuleName:Fields.Ip"
    }
    }


    client/modules/your-module-name/views/fields/ip.js

    PHP Code:
    Espo.define('YourModuleName:Views.Fields.Ip''Views.Fields.Varchar', function (Dep) {

        return 
    Dep.extend({
            
            
    detailTemplate'your-module-name:fields.ip.detail',

            .......
        });
    }); 

    Somethink like this.
    Last edited by yuri; 08-15-2014, 09:38 AM.

    Comment


    • #3
      Many thanks I have to find out how to place the code in the running application ..

      Comment

      Working...
      X