Hi,
I have a grid into the WebAsynRefreshPanel with in a page. Page refersh after every 3 seconds. After double click on a Specific cell, a popup window open. In popup window, edit some text, save and close the popup window.Main page refres. At this moment, if try to click on any cell, its show a javascript error "Permission Denied. EnableViewSate is set false for Grid. whats the problem?
/Mamun
Did you ever find a solution to this? I have the same problem and can't find a way to solve it
Thanks,
Alejandro.
Hello Guys,
It is a bit hard to debug this specific issue, since I am not sure I can get the whole picture right. Do you get a server-side "Permission Denied" error with a stack trace, or a client-side error? If the latter, which browser are you using, IE or Firefox? Can you double check your security settings?
Can you attach a screenshot or more details here?
Thanks in advance.
Thanks for the reply.
I'm getting this error on the client side, on javascript code generated by IG. I'm using IE 6, and the security settings are the ones that the company has for all users, but I wouldn't know what to look for... I can see exactly where the error is if I enable script debugging:
function igtbl_changeStyleIE(gn,se,style) {
more precisely, on this block:
var ssimports=null;
try{
ssimports=document.styleSheets[i].imports;
}catch(e){;}
if(ssimports)
for(var j=0;!bFoundStyle && j<ssimports.length;j++)
{
var ssrules=null;
ssrules=ssimports[j].rules;
if(ssrules)
for(var m=0;!bFoundStyle && m<ssrules.length;m++)
if(ssrules[m].selectorText=="."+styles[k])
bFoundStyle=true;
rules[rules.length]=ssrules[m];
break;
}
and speciffically, on this instruction
ssimports.length
I'd like to attach a picture, but I don't see how (the insert / edit icon does not do that...)
so? no insights about this?
I dont know your case/scenario but I was getting this error when I add some notes for an option by clicking cell which open a popup window and after enter notes in this popup window, grid refresh. But problem is that after grid refresh i couldnt able to click on grid cell, whenever i click on cell "permission denied" error shows.I thought its happen because of grid refresh doesnt finish and data bind not completed. so i show a transparent div which prevent user to unwanted click which cause permission denied error. its works fine for me.
i hope this will help.
Thanks