|
|
|
@ -121,12 +121,15 @@ public class OrganizationFormItemUtil {
|
|
|
|
|
public static SearchConditionItem inputItem(User user, int colSpan, int fieldcol,
|
|
|
|
|
int viewAttr, int length, String label, String name) {
|
|
|
|
|
ConditionFactory conditionFactory = new ConditionFactory(user);
|
|
|
|
|
Map<String, Object> otherParams = new HashMap<>(2);
|
|
|
|
|
otherParams.put("inputType","multilang");
|
|
|
|
|
SearchConditionItem input = conditionFactory.createCondition(ConditionType.INPUT, 25034, name);
|
|
|
|
|
input.setColSpan(colSpan);
|
|
|
|
|
input.setFieldcol(fieldcol);
|
|
|
|
|
input.setViewAttr(viewAttr);
|
|
|
|
|
input.setLength(length);
|
|
|
|
|
input.setLabel(label);
|
|
|
|
|
input.setOtherParams(otherParams);
|
|
|
|
|
return input;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -266,7 +269,7 @@ public class OrganizationFormItemUtil {
|
|
|
|
|
textarea.setViewAttr(viewAttr);
|
|
|
|
|
textarea.setLength(length);
|
|
|
|
|
textarea.setLabel(label);
|
|
|
|
|
|
|
|
|
|
textarea.setInputType("multilang");
|
|
|
|
|
return textarea;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|