i have some thing javascript functions like this
function onSelectRow_${itemid}(){
something;
}
this it is appearing like this in firebug script tab
function onSelectRow_87878(){
something;
}
I put multiple break points(it has more than 20 lines , i put one ine for example.) in firebug-> script tab.
But the problem is, firebug not able to do debug these methods, ie. it is not stoping execution it executing as usual. I tried multiple times.
this is my actual code and use:
function onSelectRow_${escapedId }(rowId){
}
<jqgrid:grid onSelectRow="onSelectDeviceRow_${escapedId }"
DO you have any solution for it please