I have the following code working nicely in a Columns Settings > format option for a data table, but when I enable Responsive in the module, it never completes. The page with the table starts to load, but hangs waiting for a socket/localhost. This only happens when Responsive is enable. It happens using Chrome, Firefox and IE.
Code: |
<strong>{$value}</strong><br/>
<script>
if ('{$columns:address}') { document.write('{$columns:address}<br/>') };
if ('{$columns:city}') { document.write('{$columns:city}, ') };
if ('{$columns:state}') { document.write('{$columns:state} ') };
if ('{$columns:zipcode}') { document.write('{$columns:zipcode}<br/> ') };
if ('{$columns:contactPhone}') { document.write('{$columns:contactPhone}<br/> ') };
if ('{$columns:contactEmail}') { document.write('{$columns:contactEmail}<br/> ') };
if ('{$columns:webLink}') { document.write('{$columns:webLink}<br/> ') }
</script>
|