I use SignalR, to logging items in RadGrid.
Message
TypeError: access to strict mode caller function is censored
The problem is in FireFox 29 and IE 10, not in Chrome 35.
I see the Problem is the call RefreshGrid()...
Message
TypeError: access to strict mode caller function is censored
The problem is in FireFox 29 and IE 10, not in Chrome 35.
<
telerik:RadCodeBlock
runat
=
"server"
>
<
script
type
=
"text/javascript"
>
function RefreshGrid() {
var masterTable = $find("<%= GridPlayerMessages.ClientID %>").get_masterTableView();
masterTable.rebind();
}
$(function () {
var hub = $.connection.pilotServerHub;
hub.client.logMessage = function () {
RefreshGrid();
};
$.connection.hub.start();
});
</
script
>
</
telerik:RadCodeBlock
>
I see the Problem is the call RefreshGrid()...