how to pass custom fields to $_POST or $_GET in CKEdtior Upload dialog?

时光怂恿深爱的人放手 提交于 2019-12-11 04:23:57

问题


For example I have add 2 inputs:

infoTab.add( {
                   type : 'text',
                   hidden : false,
                   id: 'image_group',
                   label: 'A',
                   default: ''

               });

               infoTab.add( {
                   type : 'text',
                   hidden : false,
                   id: 'image_size',
                   label: 'B,',
                   default: ''
               });

I fill these fields mannualy with random data and when I press "Send it to the server" I can't see in $_POST or $_GET these values or keys? What I must change to send this custom form elements to Server? Thank you!

来源:https://stackoverflow.com/questions/40867123/how-to-pass-custom-fields-to-post-or-get-in-ckedtior-upload-dialog

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!