You have to reference it in your .script file somewhere in the content
area right?
like:
${insertRow} = function() {
//even though you can't actually insert a row ie won't let you
document.getElementById("someid").appendNode(document.createTextNode("blah"));
}
On 3/22/07, Tomić Mirko <[EM
I have function in my .script file whose name is set unique with let:
insertRow
Now I need to insert that unique function name in html file. How to that?
I inserted script component in jwc:
and inserted tableScript in html.
---