将 url 动态传递给 ckeditor 中的文件浏览器按钮
我正在自定义ckeditor图像上传的功能。用户会看到一个包含不同选项的下拉菜单。根据从下拉列表中选择的选项,“浏览服务器”按钮应将用户带到相应的 URL。
所以基本上我需要动态地将浏览服务器 URL(从下拉列表中选择)传递到 CK Editor 3.4.1 gem 的图像上传功能的文件浏览器。
示例:
我在“图像信息”选项卡中有一个选择框,为此我添加了以下代码。
{
type : 'select',
id : 'url_path',
items :
[
[ 'Add photos from My Computer', '' ],
[ 'Add photos from My Album', 'http://localhost:3000/pages/'],
],
onChange:function(){
L=this.getValue();
}
浏览按钮代码如下所示
{
type:'button',
id:'browse',
style:'display:inline-block;',
align:'center',
label:b.lang.common.browseServer,
hidden:true,
filebrowser :
{
action : 'Browse',
url : '',
target : 'info:txtUrl'
}
}
这里 url 值必须根据选择框的值进行设置。我该如何配置呢?
问候, 潘卡伊
I am customizing the functionality of ckeditor image upload. The user sees a dropdown with different options. Depending upon the option selected from the dropdown the "Browse Server" button should take the user to corresponding url.
So basically I need to dynamically pass the browse server url (which has chosen from a drop down list) to the filebrowser of Image Upload functionality of CK Editor 3.4.1 gem.
Example:
I am having a select box in the Image Info Tab for that I have added the following code.
{
type : 'select',
id : 'url_path',
items :
[
[ 'Add photos from My Computer', '' ],
[ 'Add photos from My Album', 'http://localhost:3000/pages/'],
],
onChange:function(){
L=this.getValue();
}
Browse Button code looks like this
{
type:'button',
id:'browse',
style:'display:inline-block;',
align:'center',
label:b.lang.common.browseServer,
hidden:true,
filebrowser :
{
action : 'Browse',
url : '',
target : 'info:txtUrl'
}
}
Here the url value has to set according to the value of select box. How can I configure that ?
Regards,
Pankaj
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论