vote up 0 vote down star

Hi, I have an extjs xtemplate that is throwing errors because of the way a json object is returned. Sometimes the json object has a field 'customer' defined, but sometimes it's completely missing from the object. obviously, i get an error 'customer is not defined' when applying my template to the json where the field is missing.

so my question is: is there a way that i can check for an undefined field in an xtemplate ? like : ' {customer} '

obviously i've tried this but it doesn't work.

Thanks for any help.

flag

2 Answers

vote up 1 vote down check

Have you tried this?

<tpl if="customer == undefined">
    <b>{customer}</b>
</tpl>
link|flag
this worked. thanks :) – dwfresh Oct 22 at 22:59
vote up 0 vote down

Unless I'm mistaken, you should just be able to do something like the following:

<tpl if="customer">
   <b>{customer}</b>
</tpl>

Alternatively, you should be able to embed (albeit limited, not sure if my ternary example will work as expected) Javascript into XTemplates like so:

{[values.customer]}
{[values.customer ? customer : 'Empty']}
link|flag
this worked too. thanks!! – dwfresh Oct 22 at 22:58

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.