this code compiles with smartgwt version 2.6.1
with smartgwt 2.12 it gives this error :
project\src\it\client\gui\view\ticker\summary\TickerSummary.java:294: error: cannot find symbol
[javac] PickerIcon addSeparatorPicker = new PickerIcon(new PickerIcon.Picker("commandLayout/add.png"), new FormItemClickHandler() {
[javac] ^
[javac] symbol: class Picker
[javac] location: class PickerIcon
the only clue I have is that the "Picker" inner class defined at the end of this PickerIcon.java doesn't seem presend in the LGPL smartgwt, could that be possible :
https://github.com/isomorphic-softwa...ickerIcon.java
could anyone have a clue ?
could this be missing from LGPL jar somehow :
public static class Picker {
private String url;
public Picker(String url) {
this.url = url;
}
}
}
Code:
private DynamicForm getImageForm() { // IMAGE DynamicForm creation... imageForm = new DynamicForm(); imageForm.setWidth("100%"); imageForm.setHeight(1); imageForm.setCellPadding(5); imageForm.setLayoutAlign(Alignment.CENTER); imageForm.setTitleOrientation(TitleOrientation.TOP); PickerIcon addSeparatorPicker = new PickerIcon(new PickerIcon.Picker("commandLayout/add.png"), new FormItemClickHandler() { public void onFormItemClick(FormItemIconClickEvent event) { uploadForm.setVisible(true); uploadLayout.setVisible(true); } });
with smartgwt 2.12 it gives this error :
project\src\it\client\gui\view\ticker\summary\TickerSummary.java:294: error: cannot find symbol
[javac] PickerIcon addSeparatorPicker = new PickerIcon(new PickerIcon.Picker("commandLayout/add.png"), new FormItemClickHandler() {
[javac] ^
[javac] symbol: class Picker
[javac] location: class PickerIcon
the only clue I have is that the "Picker" inner class defined at the end of this PickerIcon.java doesn't seem presend in the LGPL smartgwt, could that be possible :
https://github.com/isomorphic-softwa...ickerIcon.java
could anyone have a clue ?
could this be missing from LGPL jar somehow :
public static class Picker {
private String url;
public Picker(String url) {
this.url = url;
}
}
}
Comment