Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
the first time,it's ok. but when I change other field or remove some field,I can't get the lastest DataView values by options.dataViews[0]
the code is:
var cols = options.dataViews[0].metadata.columns
var names = "";
cols.forEach(col => {
names = names + "/" + col.displayName;
});
this.target.innerHTML=names;
Thanks in advance