We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3df075 commit 381f5fdCopy full SHA for 381f5fd
src/main/java/gwt/material/design/client/ui/MaterialDatePicker.java
@@ -38,7 +38,7 @@ public interface MaterialDatePickerDelegate {
38
* Called as soon as a click occurs on the calendar widget. !EXPERIMENTAL!
39
* @param currDate which is currently selected.
40
*/
41
- void onCalendarClick(Date currDate);
+ void onCalendarClose(Date currDate);
42
}
43
44
private HTMLPanel panel;
@@ -125,7 +125,7 @@ public void setDelegate(MaterialDatePickerDelegate delegate) {
125
126
void notifyDelegate() {
127
if(delegate != null) {
128
- delegate.onCalendarClick(getDate());
+ delegate.onCalendarClose(getDate());
129
130
131
0 commit comments