Hi,
When upgrading to the version smartgwtpower-6.0d.2017_05_10, we are encountering these build errors in one of our projects. It seems some methods such as setTitleAutoFit() and setTitleAutoFitMargin() are completely missing for DrawRect and DrawPolygon objects. Why are these methods missing? They were in a previous version that I am actively using at the moment. How can this be resolved, so that I can switch to a newer version with these methods? Thanks.
Some examples of the code that doesn't work in the newer version are these:
SGWTPOWER_HOME = /projects/BEER/A0/lib/smartgwtpower-6.0d.2017_05_10
SGWTPOWER_SUPPORT = /projects/BEER/A0/lib/support_libs-6.0d.2017_05_10/
Description Resource Path Location Type
The method setTitleAutoFitMargin(int) is undefined for the type DrawRect BEERChipSTAPOC.java /ChipSTA/src/beer/client/chipsta line 200 Java Problem
TitleAutoFitRotationMode cannot be resolved to a variable BEERChipSTAPOC.java /ChipSTA/src/beer/client/chipsta line 139 Java Problem
The method setValueMap(String...) in the type FormItem is not applicable for the arguments (Map<String,String>) HeatMap.java /ChipSTA/src/beer/client/chipsta line 498 Java Problem
The method setTitleAutoFitMargin(int) is undefined for the type DrawPolygon BEERChipSTAPOC.java /ChipSTA/src/beer/client/chipsta line 140 Java Problem
The method setTitleAutoFit(boolean) is undefined for the type DrawRect BEERChipSTAPOC.java /ChipSTA/src/beer/client/chipsta line 198 Java Problem
TitleAutoFitRotationMode cannot be resolved to a variable BEERChipSTAPOC.java /ChipSTA/src/beer/client/chipsta line 199 Java Problem
The import com.smartgwt.client.types.TitleAutoFitRotationMode cannot be resolved BEERChipSTAPOC.java /ChipSTA/src/beer/client/chipsta line 14 Java Problem
The method setTitleAutoFit(boolean) is undefined for the type DrawPolygon BEERChipSTAPOC.java /ChipSTA/src/beer/client/chipsta line 138 Java Problem
The method setValueMap(String...) in the type FormItem is not applicable for the arguments (Map<String,String>) ChipSTACharts.java /ChipSTA/src/beer/client/chipsta line 567 Java Problem
The method setValueMap(String...) in the type FormItem is not applicable for the arguments (Map<String,String>) ChipSTACharts.java /ChipSTA/src/beer/client/chipsta line 544 Java Problem
The method setValueMap(String...) in the type FormItem is not applicable for the arguments (Map<String,String>) ChipSTACharts.java /ChipSTA/src/beer/client/chipsta line 912 Java Problem
The method setValueMap(String...) in the type FormItem is not applicable for the arguments (Map<Object,Object>) ChipSTACharts.java /ChipSTA/src/beer/client/chipsta line 861 Java Problem
When upgrading to the version smartgwtpower-6.0d.2017_05_10, we are encountering these build errors in one of our projects. It seems some methods such as setTitleAutoFit() and setTitleAutoFitMargin() are completely missing for DrawRect and DrawPolygon objects. Why are these methods missing? They were in a previous version that I am actively using at the moment. How can this be resolved, so that I can switch to a newer version with these methods? Thanks.
Some examples of the code that doesn't work in the newer version are these:
Code:
rect.setTitleAutoFit(true); rect.setTitleAutoFitRotationMode(TitleAutoFitRotationMode.NEVER); rect.setTitleAutoFitMargin(2);
SGWTPOWER_HOME = /projects/BEER/A0/lib/smartgwtpower-6.0d.2017_05_10
SGWTPOWER_SUPPORT = /projects/BEER/A0/lib/support_libs-6.0d.2017_05_10/
Description Resource Path Location Type
The method setTitleAutoFitMargin(int) is undefined for the type DrawRect BEERChipSTAPOC.java /ChipSTA/src/beer/client/chipsta line 200 Java Problem
TitleAutoFitRotationMode cannot be resolved to a variable BEERChipSTAPOC.java /ChipSTA/src/beer/client/chipsta line 139 Java Problem
The method setValueMap(String...) in the type FormItem is not applicable for the arguments (Map<String,String>) HeatMap.java /ChipSTA/src/beer/client/chipsta line 498 Java Problem
The method setTitleAutoFitMargin(int) is undefined for the type DrawPolygon BEERChipSTAPOC.java /ChipSTA/src/beer/client/chipsta line 140 Java Problem
The method setTitleAutoFit(boolean) is undefined for the type DrawRect BEERChipSTAPOC.java /ChipSTA/src/beer/client/chipsta line 198 Java Problem
TitleAutoFitRotationMode cannot be resolved to a variable BEERChipSTAPOC.java /ChipSTA/src/beer/client/chipsta line 199 Java Problem
The import com.smartgwt.client.types.TitleAutoFitRotationMode cannot be resolved BEERChipSTAPOC.java /ChipSTA/src/beer/client/chipsta line 14 Java Problem
The method setTitleAutoFit(boolean) is undefined for the type DrawPolygon BEERChipSTAPOC.java /ChipSTA/src/beer/client/chipsta line 138 Java Problem
The method setValueMap(String...) in the type FormItem is not applicable for the arguments (Map<String,String>) ChipSTACharts.java /ChipSTA/src/beer/client/chipsta line 567 Java Problem
The method setValueMap(String...) in the type FormItem is not applicable for the arguments (Map<String,String>) ChipSTACharts.java /ChipSTA/src/beer/client/chipsta line 544 Java Problem
The method setValueMap(String...) in the type FormItem is not applicable for the arguments (Map<String,String>) ChipSTACharts.java /ChipSTA/src/beer/client/chipsta line 912 Java Problem
The method setValueMap(String...) in the type FormItem is not applicable for the arguments (Map<Object,Object>) ChipSTACharts.java /ChipSTA/src/beer/client/chipsta line 861 Java Problem
Comment