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

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • scdzaak
    Member
    • Aug 2014
    • 51

    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.
  • yuri
    Member
    • Mar 2014
    • 8483

    #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.
    If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

    Comment

    • scdzaak
      Member
      • Aug 2014
      • 51

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

      Comment

      Working...