列上的Primeng2 wordwrap无效。
我试图用长句子将列拆分为新的单词,但这会失败
Mat B = Mat_<std::complex<double> >(3, 3);
cout << B.depth() << ", " << B.channels() << endl;
B.at<double>(0, 0) = 0;
cout << "B(0,0) = " << B.at<double>(0, 0).real(); // Error due to .rea()
在我的CSS中
<p-dataTable [value]="tcentercomment"
[responsive]="true" #dt2
resizableColumns="true" columnResizeMode="expand" >
<p-column field="item_id" [styleClass]="break-column" header="Item" [sortable]="true" [filter]="false"></p-column>
<p-column field="message" [styleClass]="break-column" header="Comment passed" [sortable]="true" [filter]="false"></p-column>
</p-dataTable>
但是对于长列,数据不会突破到新行。