Hi!
Thank you for your replies.
I did the following and it almost works
var filters = [label:"Due next 7 days ",filter:"@dueDate:[MIN TO \"" + now.getFullYear() + "-" + (now.getMonth()+1) + "-" + (now.getDate()+7) + "\"]"}];
It will list all of due records that will due within next 7 days, but it will also list all records that dates are less than today's date.
I only need to list records that are GTE (than today) and LTE (7 days from today).
I was not able to find any method in JavaScript called dueAfter (which sounds prefect for my need), that will list all due date from today and show records for next 7 days.
Appreciate your guidance.
Thank you.
David