Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
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