05-06-2016 02:07 AM
Hi,
I'm trying to call a function form a workflow list, but I'm only having success with that when I use fields that are visible in the list for the user.
The problem is that I need to use information from other fields/columns, that should not be visible to the user. I have them with the parameter visible equals to 'hidden', and i was expecting that top work that way. Is this assumption incorrect? Is there any other way or workaround to do it?
Thanks in advance,
NA
Solved! Go to Solution.
05-08-2016 11:54 PM
Just an Idea, I'm not sure if this works. Make
formField visible="list.."
and when
IG.on('Form:Ready'){ grab the value ; make it hidden.;}.
05-09-2016 03:39 AM - edited 05-09-2016 03:40 AM
Hi guys,
as Vipanth was suggesting, you can also hide the columns implementing the customListColumnTemplate like here:
IG.customListColumnTemplate = function () { var columnsWithoutId = IG.getDefaultListColumnTemplate(); return IG.util.table.excludeColumns(columnsWithoutId, ['Column1', 'Column2', 'Column3']); };
HTH,
Stefano
05-25-2016 01:49 AM
Hi,
Thank you both, it solved my problem.
BRs