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

Rendering JButton to get the JCheckBox behavior in a JTable by using images does not update my table -

javascript - Using jquery append to add option values into a select element not working -

Android soft keyboard reverts to default keyboard on orientation change -