I'm having an issue with the format line on the value-of tag. I have no guarantee that the values I'm going to print aren't null, so I'm currently doing something like this: <br />
<br />
<pre class='_prettyXprint _lang-auto _linenums:0'>
@>
String(row['country_code']).replace('null','') +
String(row['area_code']).replace('null','') +
String(row['contact_number']).replace('null','')
</value-of></pre>
<br />
The problem is, that will print a line that looks like the following if my values are null: () - <br />
<br />
I would much rather have this line not exist if there is no data. Am I best off manually formatting the line with javascript? Thanks to anyone who posts.