Commit 8cfdc0e9 authored by dkasliwal's avatar dkasliwal

add condition for in on-load title - is not display


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@104775 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 2640ed45
...@@ -1211,8 +1211,16 @@ public class FilterCreator extends Composite ...@@ -1211,8 +1211,16 @@ public class FilterCreator extends Composite
{ {
/*Added Code for Remove Colon for no Filter by Dhanendra on 31-07-15*/ /*Added Code for Remove Colon for no Filter by Dhanendra on 31-07-15*/
if(parameterList.size() >2) if(parameterList.size() >2)
{
/*add condition for remove onload - */
if(reportHeading.length()>0)
{ {
titleLbl.setText(title.get(0) + " - " + getMonth(reportHeading));//+ "-" + parameterList.get(2)); titleLbl.setText(title.get(0) + " - " + getMonth(reportHeading));//+ "-" + parameterList.get(2));
}else
{
titleLbl.setText(title.get(0));
}
/*end condition for remove onload - */
} }
else else
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment