Hello,
i got the following problem. I want that when i User click on a resource a JavaScript is WITH parameters (which item did he click) is executed. Thats what i got so far. It works fine but without any information on which item the User clicked
....ResourceHeaderClickJavaScript="test()" ResourceHeaderClickHandling="JavaScript" ...
<script language="javascript">
function test() {
alert("test")
}
</script>
I know how it works in the Code behind (c#) but i want to handle it with javaScript and not with PostBack.
thx for the help.