javascript - Can 'Send to the Server' button functionality be by-passed in CKEDITOR image plugin? -


in upload tab of image plugin in ckeditor, user has first choose file computer , has click 'send server' button send file server , fill ui elements in info tab.

enter image description here

now looked @ code of upload tab.it -

{             id: 'upload',             hidden: false,             filebrowser: 'uploadbutton',             label: lang.uploadtab,             elements: [                 {                     type: 'file',                     id: 'upload',                     label: lang.btnupload,                     style: 'height:40px'                 },                 {                     type: 'filebutton',                     id: 'uploadbutton',                     filebrowser: 'info:src',                     label: lang.btnupload,                     'for': [ 'upload', 'upload' ]                 }             ]         } 

it has no full description of how button 'send server' added dialog.i not want make fussy user first choose image , manually click button send image server.

how can automate process of sending image server , filling ui elements of info tab?

i mean user should choose file, after file chosen, image should automatically sent server , ui elements of info tab should filled image properties.after user can click 'ok' or 'cancel' render image on editor usual.


Comments

Popular posts from this blog

searchKeyword not working in AngularJS filter -

sequelize.js - Sequelize: sort by enum cases -

user interface - how to replace an ongoing process of image capture from another process call over the same ImageLabel in python's GUI TKinter -