my_dialog.js 1018 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /**
  2. * Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  4. */
  5. CKEDITOR.dialog.add("myDialog", function() {
  6. return {
  7. title: "My Dialog",
  8. minWidth: 400,
  9. minHeight: 200,
  10. contents: [
  11. {
  12. id: "tab1",
  13. label: "First Tab",
  14. title: "First Tab",
  15. elements: [
  16. {
  17. id: "input1",
  18. type: "text",
  19. label: "Text Field"
  20. },
  21. {
  22. id: "select1",
  23. type: "select",
  24. label: "Select Field",
  25. items: [["option1", "value1"], ["option2", "value2"]]
  26. }
  27. ]
  28. },
  29. {
  30. id: "tab2",
  31. label: "Second Tab",
  32. title: "Second Tab",
  33. elements: [
  34. {
  35. id: "button1",
  36. type: "button",
  37. label: "Button Field"
  38. }
  39. ]
  40. }
  41. ]
  42. };
  43. });