HI,
I was working on a solution to select multi files using activex component, i would like to fill the radUploder with the selected files.
It seems like the radUpload does not allow Setting value to the adding inputFile.
Is Any way or any solution in this case so i can fill the raduploader with my selected files ? Any way to set text to the added inputFile?
it must be a way to do it :) i just can't find it. this is how my code looks like
function ClientCallBackFunction(radWindow, returnValue)
{
//check if a value is returned from the dialog
var uploader = $find('<%= RadUpload1.ClientID %>');
if (returnValue !=null)
{
for(var i=0;i<returnValue.length;i++)
{
uploader.addFileInput();
uploader.getFileInputs()[i].title = returnValue[i];
uploader.getFileInputs()[i].alt = returnValue[i];
uploader.getFileInputs()[i].value = returnValue[i];
}
}
}