@@ -203,12 +203,12 @@ class DateTimePicker(object):
203
203
COMMON_TS = ChangeSet (file_path = os .path .join (DATETIME_PICKER_PATH , 'ui' , 'date-picker-field.common.ts' ),
204
204
old_value = 'name: "date",' ,
205
205
new_value = 'name: "date", defaultValue: new Date(),' )
206
- ANDROID_TS = ChangeSet (file_path = os .path .join (DATETIME_PICKER_PATH , 'datetimepicker .android.ts' ),
207
- old_value = 'datePicker.init(date.getFullYear(), date.getMonth(), date.getDate(), null );' ,
208
- new_value = 'datePicker.init(2010, date.getMonth(), date.getDate(), null) ;' )
209
- IOS_TS = ChangeSet (file_path = os .path .join (DATETIME_PICKER_PATH , 'datetimepicker .ios.ts' ),
210
- old_value = 'pickerView.date = date; ' ,
211
- new_value = 'date.setFullYear(2010); pickerView.date = date; ' )
206
+ ANDROID_TS = ChangeSet (file_path = os .path .join (DATETIME_PICKER_PATH , 'ui' , 'date-picker-field .android.ts' ),
207
+ old_value = 'this.nativeView.setFocusable(false );' ,
208
+ new_value = 'this.nativeView.setFocusable(false); this.hint = "testMessage" ;' )
209
+ IOS_TS = ChangeSet (file_path = os .path .join (DATETIME_PICKER_PATH , 'ui' , 'date-picker-field .ios.ts' ),
210
+ old_value = 'export class DatePickerField extends DatePickerFieldBase { ' ,
211
+ new_value = 'export class DatePickerField extends DatePickerFieldBase {initNativeView() {this.hint = "testMessage";} ' )
212
212
213
213
class AppFileChanges (object ):
214
214
CHANGE_XML_INVALID_SYNTAX = ChangeSet (file_path = os .path .join ('app' , 'main-page.xml' ),
0 commit comments