Re: .script unique function names

2007-03-24 Thread Jesse Kuhnert
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

.script unique function names

2007-03-22 Thread Tomić Mirko
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. ---