|
|
@ -80,6 +80,9 @@ BI.DatePicker = BI.inherit(BI.Widget, { |
|
|
|
}); |
|
|
|
}); |
|
|
|
self.fireEvent(BI.DatePicker.EVENT_CHANGE); |
|
|
|
self.fireEvent(BI.DatePicker.EVENT_CHANGE); |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
this.year.on(BI.YearDateCombo.EVENT_BEFORE_POPUPVIEW, function () { |
|
|
|
|
|
|
|
self.fireEvent(BI.DatePicker.EVENT_BEFORE_YEAR_MONTH_POPUPVIEW); |
|
|
|
|
|
|
|
}); |
|
|
|
this.month = BI.createWidget({ |
|
|
|
this.month = BI.createWidget({ |
|
|
|
type: "bi.month_date_combo", |
|
|
|
type: "bi.month_date_combo", |
|
|
|
behaviors: o.behaviors, |
|
|
|
behaviors: o.behaviors, |
|
|
@ -92,6 +95,9 @@ BI.DatePicker = BI.inherit(BI.Widget, { |
|
|
|
}); |
|
|
|
}); |
|
|
|
self.fireEvent(BI.DatePicker.EVENT_CHANGE); |
|
|
|
self.fireEvent(BI.DatePicker.EVENT_CHANGE); |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
this.month.on(BI.YearDateCombo.EVENT_BEFORE_POPUPVIEW, function () { |
|
|
|
|
|
|
|
self.fireEvent(BI.DatePicker.EVENT_BEFORE_YEAR_MONTH_POPUPVIEW); |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
BI.createWidget({ |
|
|
|
BI.createWidget({ |
|
|
|
type: "bi.htape", |
|
|
|
type: "bi.htape", |
|
|
@ -218,4 +224,5 @@ BI.DatePicker = BI.inherit(BI.Widget, { |
|
|
|
}, |
|
|
|
}, |
|
|
|
}); |
|
|
|
}); |
|
|
|
BI.DatePicker.EVENT_CHANGE = "EVENT_CHANGE"; |
|
|
|
BI.DatePicker.EVENT_CHANGE = "EVENT_CHANGE"; |
|
|
|
|
|
|
|
BI.DatePicker.EVENT_BEFORE_YEAR_MONTH_POPUPVIEW = "EVENT_BEFORE_YEAR_MONTH_POPUPVIEW"; |
|
|
|
BI.shortcut("bi.date_picker", BI.DatePicker); |
|
|
|
BI.shortcut("bi.date_picker", BI.DatePicker); |
|
|
|