Hello,
I'm using an GridAttachmentColumn in my RadGrid according example: http://demos.telerik.com/aspnet-ajax/grid/examples/generalfeatures/gridattachmentcolumn/defaultcs.aspx
When click on the AttachmentColumn the error 'Can't find fireCommand' is raised on the following Javascript:
The problem is caused by $find('') I expect but how do I force that the right object is passend so it will perform like '$find('RadGrid')' ??
Anyone?
I'm using an GridAttachmentColumn in my RadGrid according example: http://demos.telerik.com/aspnet-ajax/grid/examples/generalfeatures/gridattachmentcolumn/defaultcs.aspx
When click on the AttachmentColumn the error 'Can't find fireCommand' is raised on the following Javascript:
function
onclick(event)
{
if
(!$find(
''
).fireCommand(
'DownloadAttachment'
,
'{"FileID":5,"ColumnUniqueName":"FileName","FileName":"Hydrangeas.jpg"}'
))
return
false
;
}
The problem is caused by $find('') I expect but how do I force that the right object is passend so it will perform like '$find('RadGrid')' ??
Anyone?