admin管理员组文章数量:1340292
In CKeditor, when we right click on image, there are four menu items that appear.
cut
copy
paste
image properties
I would like to add two more menu items,
test1
test2 -> subtest2
subtest3
test1 will be one menu and test2 will have two sub menus.
Also, how can I add action to this new menu item? For example, click on test1 should draw a border on right side. clicking on subtest2 will add image shadow and so on.
In addition to this. I would like to do similar when we right-click on div and table.
I have found context menu plugins but I need to know how can I use this.
In CKeditor, when we right click on image, there are four menu items that appear.
cut
copy
paste
image properties
I would like to add two more menu items,
test1
test2 -> subtest2
subtest3
test1 will be one menu and test2 will have two sub menus.
Also, how can I add action to this new menu item? For example, click on test1 should draw a border on right side. clicking on subtest2 will add image shadow and so on.
In addition to this. I would like to do similar when we right-click on div and table.
I have found context menu plugins but I need to know how can I use this.
Share Improve this question edited Oct 11, 2018 at 0:03 halfer 20.4k19 gold badges109 silver badges202 bronze badges asked May 12, 2013 at 11:29 user2374740user2374740 451 gold badge2 silver badges7 bronze badges3 Answers
Reset to default 10I met this problem, too. Thanks to the bad documentation of CKEditor, I finally make it by trying different ways the whole afternoon. This code works well on my site -- Drupal 6 & CKEditor 4.
// Assume I already Have 3 mands
// insertTick, insertTickxxx, and insertTickxxxandxxx
if (editor.addMenuItems) {
// 1st, add a Menu Group
// tip: name it the same as your plugin. (I'm not sure about this)
editor.addMenuGroup('tick', 3);
// 2nd, use addMenuItems to add items
editor.addMenuItems({
// 2.1 add the group again, and give it getItems, return all the child items
tick :
{
label : 'Insert Tick',
group : 'tick',
order : 21,
getItems : function() {
return {
tick_insertTick : CKEDITOR.TRISTATE_OFF,
tick_insertQuestionMark : CKEDITOR.TRISTATE_OFF,
tick_insertTickandQuestion : CKEDITOR.TRISTATE_OFF
};
}
},
// 2.2 Now add the child items to the group.
tick_insertTick :
{
label : 'Insert a tick',
group : 'tick',
mand : 'insertTick',
order : 22
},
tick_insertQuestionMark :
{
label : 'Insert Question Mark',
group : 'tick',
mand : 'insertQuestionMark',
order : 23
},
tick_insertTickandQuestion :
{
label : 'insert Tick and Question',
group : 'tick',
mand : 'insertTickandQuestion',
order : 24
}
});
}
// 3rd, add Listener, and return the Menu Group
if (editor.contextMenu) {
editor.contextMenu.addListener(function(element, selection) {
return {
tick : CKEDITOR.TRISTATE_OFF
};
});
}
and this will show like
Insert Tick -> Insert a tick
-------------- Insert a Question Mark
-------------- Insert a tick and question mark
- Register a new ckEditor mand;
- Add a new menu group;
- Add new menu item;
Add click event listener to the context menu.
// Register a mand execute on context menu item click editor.addCommand('test1', { exec: editor => { console.log(editor); alert('test1'); } }); // Check for context menu and add new item/s if ( editor.contextMenu ) { // Add group and item/s editor.addMenuGroup( 'testGroup' ); editor.addMenuItem( 'testItem', { label: 'Test 1', icon: this.path + 'icons/test.png', mand: 'test1', group: 'testGroup' }); // Add event listener editor.contextMenu.addListener(element => { console.log(element); return { testItem: CKEDITOR.TRISTATE_OFF }; }); }
For more information check this link: https://ckeditor./docs/ckeditor4/latest/guide/plugin_sdk_sample_2.html
I am also try the same.Finally i got one solution.so here i share it.it may help others.
<script type="text/javascript">
// Menu code
var config = {
toolbar: [],
removePlugins : 'pastetext,clipboard'
};
var editor = CKEDITOR.appendTo('ckeditor', config);
editor.on( 'instanceReady', function(e) {
var e = e.editor;
// Commands
e.addCommand("cv_claimant_Birthdate", {
exec: function(e) {
e.insertText("\{\!claimant.Birthdate\}");
}
});
e.addCommand("cv_claimant_Name", {
exec: function(e) {
e.insertText("\{\!claimant.Name\}");
}
});
e.addCommand("cv_claim_Name", {
exec: function(e) {
e.insertText("\{\!claim.Name\}");
}
});
e.addCommand("cv_claim_CreatedDate", {
exec: function(e) {
e.insertText("\{\!claim.CreatedDate\}");
}
});
// Listener
e.contextMenu.addListener(function(element, selection) {
return {
cv: CKEDITOR.TRISTATE_ON
};
});
// Menu Groups; different numbers needed for the group separator to show
e.addMenuGroup("cv", 500);
e.addMenuGroup("cv_people", 100);
e.addMenuGroup("cv_claim", 200);
// Menus (nested)
e.addMenuItems({
// Top level
cv: {
label: "Insert Merge Field",
group: "cv",
getItems: function() {
return {
cv_claimant: CKEDITOR.TRISTATE_OFF,
cv_claim: CKEDITOR.TRISTATE_OFF,
};
}
},
// One sub-menu
cv_claimant: {
label: "Claimant Person (claimant)",
group: "cv_people",
getItems: function() {
return {
cv_claimant_Birthdate: CKEDITOR.TRISTATE_OFF,
cv_claimant_Name: CKEDITOR.TRISTATE_OFF,
};
}
},
// These run mands
cv_claimant_Birthdate: {
label: "Birthdate (Birthdate: date)",
group: "cv_people",
mand: "cv_claimant_Birthdate"
},
cv_claimant_Name: {
label: "Full Name (Name: string)",
group: "cv_people",
mand: "cv_claimant_Name"
},
// Another sub-menu
cv_claim: {
label: "Claim (claim)",
group: "cv_claim",
getItems: function() {
return {
cv_claim_CreatedDate: CKEDITOR.TRISTATE_OFF,
cv_claim_Name: CKEDITOR.TRISTATE_OFF,
};
}
},
// These run mands
cv_claim_Name: {
label: "Claim Number (Name: string)",
group: "cv_claim",
mand: "cv_claim_Name"
},
cv_claim_CreatedDate: {
label: "Created Date (CreatedDate: datetime)",
group: "cv_claim",
mand: "cv_claim_CreatedDate"
},
});
});
</script>
本文标签: phpHow to add additional menu item in right click in CkEditorStack Overflow
版权声明:本文标题:php - How to add additional menu item in right click in CkEditor? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743629845a2512923.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论