val = getName()
This returns the name assigned to this object by the serverside code.
If no name has been set, then this will return "<no name>".
*/
/* ,getName: function () { return this.name ? this.name : '<no name>'; } */
/*
----------------------------------------- // JEMPLATE CALL
while(!iterator.atEnd()) { var node = iterator.get(); tableBody += Jemplate.process('nl_table_row.html', { node: node, mode: this.mode }); } this.viewer.innerHTML += tableBody;
------------------------------------------ // TEMPLATE
<tr> <td> <a href="" id="node-[% node.id %]-list-item"> [% node.getName() %] - [% node.name %] </a> </td> [% IF mode == 'updated' %] <td id="node-[% node.id %]-list-timestamp"> [% node.updated_on_formatted %] </td> [% END %] </tr>
-------------------------------------------
// node.getName() outputs nothing, but node.name outputs correctly. the getName() method definitely works.
*/
1 POD Error
The following errors were encountered while parsing the POD:
- Around line 14:
'=item' outside of any '=over'
=over without closing =back