Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have created input box with variables. the input box is not working in Ajax mode I,e in web view mode. Please can anyone suggest why it is not working in ajax mode do I need to set up any configuration? I can not able to pass the date values in Ajax mode.
Thanks.
Thanks very much. If I want the data before week means then I change to display
vFrom = WeekStart(today()-7)
and
vTo= WeekStart(today()-1)
Is that correct?
Use below
vFrom = WeekStart(today()-1)
vTo = WeekEnd(today()-1)
Regards
ASHFAQ
Sorry I just made type mistake. Suppose if I want the data from 23/06/2014 to 27/06/2014 how can I change the expression?please help me.
I,e from last Monday to Last Friday
Then in this case use qvs_ash.qvw
you can manually input dates.
For current week set variable on open and use below expressions
vFrom: WeekStart(today())
vTo: =WeekEnd(today())
Regards
ASHFAQ
Sorry I confused here. every time I want to see the data for last weeks. I,e from last Monday to last Friday. Can you please elaborate!
vFrom: WeekStart(today()-7)
vTo: =WeekEnd(today()-7)
as dates already in for last week
Thanks. I want only the end date as Friday why because the qvw should show the data only from Monday to Friday as per user requirement. Is it possible to change vTo expression?
vTo: =WeekEnd(today()-7)-2
Thanks very much!