Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Guys,
Is there any way to capture feedback(user input) from user through Qlik Sense UI.
It should be captured anywhere like variable or QVD or anything - Thanks.
You need to go to extensions as native is not allowed to store input feedback in dashboard just yet.
There might be a solution to that.
Using variable input to put desired feedback then storing it (using button visualization) with appriopriate key (e.g. ID or some other field) to variables .
Then with the same button using partial reload create table (e.g. as below)
-You need to create the WriteBack qvd first.
You may need to play around to find proper key and debug it. Also users need to have appropriate security roles to be able to reload the app.
WriteBack:
add LOAD
"Now",
Msg,
ID
FROM [lib://QlikSenseStorage/WriteBack.qvd](qvd);
IF IsPartialReload() then
concatenate (WriteBack)
add load distinct
now() as Now,
'$(vInput)' as Msg,
'$(Dim) as ID
AutoGenerate(1);
Store WriteBack into [lib://QlikSenseStorage/WriteBack.qvd](qvd);
ENDIF;