VIVO-970: add display limit to the object property control panel
This commit is contained in:
parent
5664be4a43
commit
61e95b7d4e
1 changed files with 3 additions and 2 deletions
|
@ -42,7 +42,7 @@ public class PropertyEditController extends BaseEditController {
|
|||
return;
|
||||
}
|
||||
|
||||
final int NUM_COLS=25;
|
||||
final int NUM_COLS=26;
|
||||
|
||||
VitroRequest vreq = new VitroRequest(request);
|
||||
|
||||
|
@ -74,6 +74,7 @@ public class PropertyEditController extends BaseEditController {
|
|||
results.add("display level"); // column 16
|
||||
results.add("update level"); // column 17
|
||||
results.add("display tier"); // column 18
|
||||
results.add("display limit"); // column 15
|
||||
results.add("collate by subclass"); // column 19
|
||||
results.add("custom entry form"); // column 20
|
||||
results.add("select from existing"); // column 21
|
||||
|
@ -175,7 +176,7 @@ public class PropertyEditController extends BaseEditController {
|
|||
: p.getProhibitedFromUpdateBelowRoleLevel().getUpdateLabel()); // column 17
|
||||
|
||||
results.add("property: "+p.getDomainDisplayTier() + ", inverse: "+p.getRangeDisplayTier()); // column 18
|
||||
|
||||
results.add("property: "+p.getDomainDisplayLimitInteger() + ", inverse: "+p.getRangeDisplayLimit());
|
||||
results.add(p.getCollateBySubclass() ? "true" : "false"); // column 19
|
||||
|
||||
results.add(p.getCustomEntryForm() == null ? "(unspecified)" : p.getCustomEntryForm()); // column 20
|
||||
|
|
Loading…
Add table
Reference in a new issue