SugarCRM Custom DetailView垂直滚动条

时间:2011-11-29 14:51:50

标签: textarea sugarcrm detailview

我有一个文字区域,每周都有日期标记数据。我想知道是否可以使它保持一定的大小并且有一个垂直滚动条,而不是有一个巨大的文本区域。

基本上,我希望它看起来像在编辑视图中一样,但当然不可编辑。

1 个答案:

答案 0 :(得分:1)

我在 custom / include / SugarFields / Fields / Text / 目录(您可能需要创建)中添加了一个名为 DetailView.tpl 的新文件,其中包含以下内容:内容:

<span class="sugar_field" id="{{sugarvar key='name'}}" style="max-height: 200px;overflow: scroll; display: block;">
{{if empty($displayParams.textonly)}}
{{sugarvar key='value' htmlentitydecode='true'}}
{{else}}
{{sugarvar key='value'}}
{{/if}}
</span>
{{if !empty($displayParams.enableConnectors)}}
{if !empty({{sugarvar key='value'}})}
{{sugarvar_connector view='DetailView'}}
{/if}
{{/if}}

然后,执行快速重建和修复,该部分应限制为200px高,并且如果内容长于此值,则使用滚动条。