location of plugin params validation message

AbrahamA
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 18, 2016

msgloc.PNG

Hello

My plugin parameter validation messages are showing up before the field.

How do I specify the validation messages so that they come below the field.

Thanks

Abe

2 answers

0 votes
AbrahamA
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 19, 2016

I am developing an add-on.

 

In Atlassian-plugin.xml I have it like this:

<property>
<key>fromdt</key>
<name>From Date</name>
<description></description>
<type>date</type>
</property>

<property>
<key>todt</key>
<name>To Date</name>
<description></description>
<type>date</type>
</property>

 

 

and validate method:

@Override
public void validate(ProjectActionSupport action, Map map){
final String startDate = (String)map.get("fromdt");
if( startDate == null || startDate.length() <=0 ){
action.addError("fromdt","Please select fromDate");
}
final String endDate = (String)map.get("todt");
if( endDate == null || endDate.length() <=0 ){
action.addError("todt","Please select endDate");
}
}

0 votes
Boris Georgiev _Appfire_
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 19, 2016

Are you developing  an add-on - customfield or validator ?

Suggest an answer

Log in or Sign up to answer