Hi All,
I want to filter a row repeater by DatePicker i.e..,
when i select a date date form the date picker control then the row repeater should filter in such a way that
the value GE the date picker value.
Here the selected date picker shows a pattern as Jul 6, 2014 but in my JSON file i have a pattern as 09.07.2014.
Can u check the code below which i have used so far,
onChangeVdw = function(oEvent){
var value1 = oCreateFrom.getValue();
var filter2 = new sap.ui.model.Filter('EVENTSTARTDATE',sap.ui.model.FilterOperator.GE,value1);
oRowRepeater.bindRows('/eventlist',oVBox,null,filter2);
But the filter is not working.
How can i do that.???
Please correct me i'm wrong with the code.
Thanks
Sathish