Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Input box not working in Ajax mode?


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.

18 Replies
Not applicable
Author

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?

ashfaq_haseeb
Champion III
Champion III

Use below

vFrom = WeekStart(today()-1)

vTo = WeekEnd(today()-1)

Regards

ASHFAQ

Not applicable
Author

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

ashfaq_haseeb
Champion III
Champion III

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

Not applicable
Author

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!

SunilChauhan
Champion II
Champion II

vFrom: WeekStart(today()-7)

vTo:  =WeekEnd(today()-7)


as dates already in for last week

Sunil Chauhan
Not applicable
Author

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?

SunilChauhan
Champion II
Champion II

vTo:  =WeekEnd(today()-7)-2

Sunil Chauhan
Not applicable
Author

Thanks very much!