zoukankan      html  css  js  c++  java
  • 在openerp撰写消息中增加图片

    openerp的撰写消息中, 在文本输入框中, 具有设置文本字体,设置对齐方式 等多种功能, 就像像写这篇新浪blog一样, 可以输入富文本信息。 美中不足的是, 它不能插入图片。 
    
    我们如何才能让openerp在撰写消息时插入图片呢?方法很简单。 因为openerp使用的富文本编辑器是cleditor。 cleditor的工具条已经具备了插入图片的功能, 只要在初始化时设置上就行。
    
    在openerp中, 初始化cleditor的代码在 addonswebstaticsrcjsview_form.js 文件中, 大约在2700行附近:
    
    
     initialize_content: function() {
    
       ......
    
           this.$textarea.cleditor({
    
               width, // width not including margins, borders or padding 
    
              height: height, // height not including margins, borders or padding
    
              controls: // controls to add to the toolbar
    
                     "bold italic underline strikethrough " +
    
                     "| removeformat | bullets numbering | outdent " +
    
                     "indent | link unlink | source",
    
    
    我们只需在source前面加上 image 就行了。如下所示:
    
    
     initialize_content: function() {
    
       ......
    
           this.$textarea.cleditor({
    
               width, // width not including margins, borders or padding 
    
              height: height, // height not including margins, borders or padding
    
              controls: // controls to add to the toolbar
    
                     "bold italic underline strikethrough " +
    
                     "| removeformat | bullets numbering | outdent " +
    
                     "indent | link unlink |  image source",
    
    
    如下这个例子在文本编辑器的工具栏上 显示了更多的按钮:
    
    
    controls:     // controls to add to the toolbar
              "bold italic underline strikethrough subscript superscript | font size " +
              "style | color highlight removeformat | bullets numbering | outdent " +
              "indent | alignleft center alignright justify | undo redo | " +
              "rule image link unlink | cut copy paste pastetext | print source",
  • 相关阅读:
    洛谷 P2867 [USACO06NOV]大广场Big Square
    考前冲刺 1
    洛谷 P1939 【模板】矩阵加速(数列)
    洛谷 P3390 【模板】矩阵快速幂
    洛谷 P3376 【模板】网络最大流
    cogs P1578【模板】 次小生成树初级练习题
    洛谷 P3379 【模板】最近公共祖先(LCA)
    10-1 集合之Map
    【Web Components】
    【Animations】
  • 原文地址:https://www.cnblogs.com/chjbbs/p/3503776.html
Copyright © 2011-2022 走看看