We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
  • By the way, I have successfully embedded elFinder as a stand-alone popup in a formit-managed form. I don't have it saving to a TV yet (that'll be the job of the formit hook once I fully understand how Revo deals with TVs). It's actually pretty simple; I put the connector.php into a snippet in a protected resource and just made the necessary edits to paths and URLs in the connector snippet and the javascript initialization code, modified the file selection callback function to load the path into the form field and display the selected image, and I even added jquery.thumbs to pretty it all up.
    $().ready(function() {
        var elf = $('#elfinder').elfinder({
            url : 'url-to-connector-resource',  // connector URL (REQUIRED)
            getFileCallback : function(file) {
                    $( "#featured_image", window.opener.document ).val(file.url);
                    window.close();
            },
            resizable: false
        }).elfinder('instance');
    });
      Studying MODX in the desert - http://sottwell.com
      Tips and Tricks from the MODX Forums and Slack Channels - http://modxcookbook.com
      Join the Slack Community - http://modx.org