This commit is contained in:
2025-02-06 22:54:06 +03:00
parent 407294c6ae
commit 7dd3069445
6 changed files with 19 additions and 11 deletions

View File

@@ -48,11 +48,11 @@ public class DVMPackagesForm extends DataSetControlForm<DVMPackage> {
new ColumnInfo<DVMPackage>("конфигурации") {
@Override
public Object getFieldAt(DVMPackage object) {
return ((PackageCache) VisualCaches.GetCache(object)).getConfigurationsDescriptions();
return ((PackageCache) VisualCaches.GetCache(object)).getConfifurationsDescriptionsLine();
}
@Override
public Class getRendererClass() {
return RendererMultiline.class;
public int getMaxWidth() {
return 500;
}
},
new ColumnInfo<DVMPackage>("задач") {

View File

@@ -36,11 +36,11 @@ public class SapforPackagesForm extends DataSetControlForm<SapforPackage> {
new ColumnInfo<SapforPackage>("конфигурации") {
@Override
public Object getFieldAt(SapforPackage object) {
return ((PackageCache) VisualCaches.GetCache(object)).getConfigurationsDescriptions();
return ((PackageCache) VisualCaches.GetCache(object)).getConfifurationsDescriptionsLine();
}
@Override
public Class getRendererClass() {
return RendererMultiline.class;
public int getMaxWidth() {
return 500;
}
},
new ColumnInfo<SapforPackage>("задач") {