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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
ryanocni
Contributor III
Contributor III

Undefined Data in Extension Editor Custom Table QlikSense

 

Dear Master,

I create custom table using table template in extension editor
But, when I tried to fill the data with blank, the column was become 'undefined'

a.png

How to handle 'undefined'?

Thank you

Labels (4)
1 Solution

Accepted Solutions
ajaykakkar93
Specialist III
Specialist III

hi @ryanocni ,

in your table extension, you can add if condition checking the value if undefined & replacing it with an empty string.

if(row.qText == undefined || row.qText == ''){

html +='';

}

Please mark the correct replies as Solution. Regards, ARK
Profile| GitHub|YouTube|Extension|Mashup|Qlik API|Qlik NPrinting

View solution in original post

1 Reply
ajaykakkar93
Specialist III
Specialist III

hi @ryanocni ,

in your table extension, you can add if condition checking the value if undefined & replacing it with an empty string.

if(row.qText == undefined || row.qText == ''){

html +='';

}

Please mark the correct replies as Solution. Regards, ARK
Profile| GitHub|YouTube|Extension|Mashup|Qlik API|Qlik NPrinting