Forum Discussion
Anonymous
8 years agoNot applicable
How to use custom visual "swDataTextBox"
Hi, There is a new visual called "swDataTextBox". I can use it to present formatted text, table etc. I find it very useful. However, I need help to figure out how to combine the text wi...
wildmight2017
Advocate II
8 years agoI figured this out- you need to stringify it to JASON - here's my working example:
In Data tab, I have filtered the following string:
var data = [{"OrgLevel":"Corp"}];
Editer code:
var json = JSON.parse(JSON.stringify(data));
//var json = JSON.stringify(data);
params = {
org: json[0].OrgLevel
};
It's making OrgLevel an object and displaying its value....
You can build on top of that!
wildmight2017
Advocate II
8 years agoNow if someone told me how to disable the watermark.