[flexcoders] Re: flex multiple filter function using text input, combobox and date range

2015-12-04 Thread stinas...@yahoo.com [flexcoders]
i have this date range filter function i had used in one of my projects, and 
would like to include it in the overall filter function above; 

 protected function arrColl_filterFunc(item:Object):Boolean
{
var cDate:Number=Date.parse(item.hireDate);

if (!sDate || !eDate)
{
return true;
}

if (sDate.selectedDate && eDate.selectedDate)
{
return (sDate.selectedDate.time <= cDate) && 
(eDate.selectedDate.time >= cDate);
}
else if (sDate.selectedDate)
{
return sDate.selectedDate.time <= cDate;
}
else if (eDate.selectedDate)
{
return eDate.selectedDate.time >= cDate;
}
else
{
return true;
}

}

protected function initDate():void
{
sDate.selectedDate=MIN_DATE;
sDate.selectableRange={rangeStart: MIN_DATE, rangeEnd: 
MAX_DATE};

eDate.selectedDate=MAX_DATE;
eDate.selectableRange=sDate.selectableRange;
}

 

 



[flexcoders] Re: flex multiple filter function using text input, combobox and date range

2015-12-04 Thread stinas...@yahoo.com [flexcoders]
Please Some one help me

Re: [flexcoders] Re: flex multiple filter function using text input, combobox and date range

2015-12-03 Thread stinas...@yahoo.com [flexcoders]
Guidance on how to add a date range filter 

Re: [flexcoders] Re: flex multiple filter function using text input, combobox and date range

2015-12-03 Thread Dave Glasser dglas...@pobox.com [flexcoders]
Help with what?

  From: "stinas...@yahoo.com [flexcoders]" <flexcoders@yahoogroups.com>
 To: flexcoders@yahoogroups.com 
 Sent: Thursday, December 3, 2015 9:31 AM
 Subject: [flexcoders] Re: flex multiple filter function using text input, 
combobox and date range
   
 


any help?



 

[flexcoders] Re: flex multiple filter function using text input, combobox and date range

2015-12-03 Thread stinas...@yahoo.com [flexcoders]
any help?