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

    write to :

    controls:   // controls to add to the toolbar
                                "bold italic underline strikethrough " +
                                "| style font size | color highlight removeformat | bullets numbering | outdent " +
                                "| indent | link unlink | image source " +
                                "| alignleft center alignright justify | undo redo",

     

    openerp的撰写消息中, 在文本输入框中, 具有设置文本字体,设置对齐方式 等多种功能, 就像像写这篇新浪blog一样,可以输入富文本信息。 美中不足的是, 它不能插入图片。

    我们如何才能让openerp在撰写消息时插入图片呢?方法很简单。 因为openerp使用的富文本编辑器是cleditor。 cleditor的工具条已经具备了插入图片的功能, 只要在初始化时设置上就行。

    在openerp中,初始化cleditor的代码在 addonswebstaticsrcjsview_form.js 文件中, 大约在2739行附近:

     

    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",
  • 相关阅读:
    在k8s中部署jenkins
    k8s CI/CD介绍
    k8s 构建jenkinsslave
    k8s 安全框架
    k8s RBAC介绍
    k8s 存储小结
    k8s 实施准备工作
    k8s 网络示例
    jenkins在kubernetes中动态创建代理
    k8s 鉴权 授权 准入控制
  • 原文地址:https://www.cnblogs.com/chjbbs/p/4978018.html
Copyright © 2011-2022 走看看