CreateLinkDialog.js
上传用户:kimgenplus
上传日期:2016-06-05
资源大小:20877k
文件大小:3k
源码类别:

OA系统

开发平台:

Java

  1. /*
  2. Copyright (c) 2004-2006, The Dojo Foundation
  3. All Rights Reserved.
  4. Licensed under the Academic Free License version 2.1 or above OR the
  5. modified BSD license. For more information on Dojo licensing, see:
  6. http://dojotoolkit.org/community/licensing.shtml
  7. */
  8. dojo.provide("dojo.widget.Editor2Plugin.CreateLinkDialog");
  9. dojo.widget.defineWidget("dojo.widget.Editor2CreateLinkDialog", dojo.widget.Editor2DialogContent, {templateString:"<table>n<tr><td>URL</td><td> <input type="text" dojoAttachPoint="link_href" name="dojo_createLink_href"/></td></tr>n<tr><td>Target </td><td><select dojoAttachPoint="link_target">nt<option value="">Self</option>nt<option value="_blank">New Window</option>nt<option value="_top">Top Window</option>nt</select></td></tr>n<tr><td>Class </td><td><input type="text" dojoAttachPoint="link_class" /></td></tr>n<tr><td colspan="2">nt<table><tr>nt<td><button dojoType='Button' dojoAttachEvent='onClick:ok'>OK</button></td>nt<td><button dojoType='Button' dojoAttachEvent='onClick:cancel'>Cancel</button></td>nt</tr></table>nt</td></tr>n</table>n", editableAttributes:["href", "target", "class"], loadContent:function () {
  10. var curInst = dojo.widget.Editor2Manager.getCurrentInstance();
  11. curInst.saveSelection();
  12. this.linkNode = dojo.withGlobal(curInst.window, "getAncestorElement", dojo.html.selection, ["a"]);
  13. var linkAttributes = {};
  14. this.extraAttribText = "";
  15. if (this.linkNode) {
  16. var attrs = this.linkNode.attributes;
  17. for (var i = 0; i < attrs.length; i++) {
  18. if (dojo.lang.find(this.editableAttributes, attrs[i].name.toLowerCase()) > -1) {
  19. linkAttributes[attrs[i].name] = attrs[i].value;
  20. } else {
  21. if (attrs[i].specified == undefined || attrs[i].specified) {
  22. this.extraAttribText += attrs[i].name + "="" + attrs[i].value + "" ";
  23. }
  24. }
  25. }
  26. } else {
  27. var html = dojo.withGlobal(curInst.window, "getSelectedText", dojo.html.selection);
  28. if (html == null || html.length == 0) {
  29. alert("Please select some text to create a link.");
  30. return false;
  31. }
  32. }
  33. for (var i = 0; i < this.editableAttributes.length; ++i) {
  34. name = this.editableAttributes[i];
  35. this["link_" + name].value = (linkAttributes[name] == undefined) ? "" : linkAttributes[name];
  36. }
  37. return true;
  38. }, ok:function () {
  39. var curInst = dojo.widget.Editor2Manager.getCurrentInstance();
  40. curInst.restoreSelection();
  41. if (!this.linkNode) {
  42. var html = dojo.withGlobal(curInst.window, "getSelectedHtml", dojo.html.selection);
  43. } else {
  44. var html = this.linkNode.innerHTML;
  45. dojo.withGlobal(curInst.window, "selectElement", dojo.html.selection, [this.linkNode]);
  46. }
  47. var attstr = "";
  48. for (var i = 0; i < this.editableAttributes.length; ++i) {
  49. name = this.editableAttributes[i];
  50. var value = this["link_" + name].value;
  51. if (value.length > 0) {
  52. attstr += name + "="" + value + "" ";
  53. }
  54. }
  55. curInst.execCommand("inserthtml", "<a " + attstr + this.extraAttribText + ">" + html + "</a>");
  56. this.cancel();
  57. }});