move window

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • peterberlin
    Active Community Member
    • Mar 2015
    • 1004

    move window

    Hallo,

    the window "create contact" can not be moved.
    Can I configure it?

    Thank
    Peter
    Last edited by peterberlin; 03-15-2016, 12:49 PM.
  • yuri
    Member
    • Mar 2014
    • 8439

    #2
    Hi
    client/src/views/modal.js
    Add
    graggable: true,

    PHP Code:
                    this.dialog = new Espo.Ui.Dialog({
                        backdrop: this.backdrop,
                        header: this.header,
                        container: containerSelector,
                        body: '',
                        buttons: buttonListExt,
                        width: this.width,
                        keyboard: !this.escapeDisabled,
                        fitHeight: this.fitHeight,
                        graggable: true,
                        onRemove: function () {
                            this.onDialogClose();
                        }.bind(this)
                    }); 
    
    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

    • peterberlin
      Active Community Member
      • Mar 2015
      • 1004

      #3
      Hi,
      My Suggestion:
      Add this function to System settings of application.

      peter

      Comment

      • peterberlin
        Active Community Member
        • Mar 2015
        • 1004

        #4
        Hello,

        in 4.4.1 windows is not draggable.

        modal.js : draggable: this.isDraggable,

        Peter

        Comment

        • peterberlin
          Active Community Member
          • Mar 2015
          • 1004

          #5
          The file was overwritten by the update. Applies the change
          Graggable: true,
          Also in Version 4.6?
          peter

          Comment

          Working...