コンテンツへスキップ
メニュー
この質問にフラグが付けられました
2 返信
2340 ビュー

Hi,

I'm using this code to display then product description:


    



I only want to display the first 100 or so letters followed by '...'. How is this done?

I found this code somewhere:


So, following that logic, I tried:



 I also tried replacing t-field with t-esc ... Anyone?

アバター
破棄
最善の回答
if you need to show .. after a certain width of a field in report add the following style give the max-width according to your need and if you don't need to show anything of the description after a certain width you can change overflow: ellipsis; to overflow: hidden;

style="max-width: px; display: inline-block; overflow: ellipsis; white-space: nowrap;"


アバター
破棄
最善の回答

Hi,

You can add a wrap style for it 

example 1)


style 1:


.name-adjust{

    width: 100px;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;

}


OR


style 2:


.name-adjust{

    overflow: visible !important;

    text-overflow: ellipsis !important;

    white-space: normal;

}

Regards

アバター
破棄
関連投稿 返信 ビュー 活動
0
4月 20
4163
1
8月 19
7003
1
10月 16
7150
1
2月 25
3041
3
12月 24
3312