Hi.
I'm using the 'ClientOpenItemFunction' attribute to get the selected file name.
The problem is when file name contains special characters like +,à,è,...
I've tried to javascript unescape the parameter of callback function, but doesn't work.
How can I do to get back the right name?
I use the following callback function:
function Copen(path) {
pH = unescape(path.replace('', ''));
//....
}
where
<iz:FileManager ID="FileManager1" runat="server" Height="600" Width="800" ClientOpenItemFunction="Copen" DownloadOnDoubleClick="false" FileViewMode="Thumbnails"/>
Many thanks.
fedrok