BasicFileUploadManager |
Methods |
|
|
getTotalFileCountBasicFileUploadManager 객체에 추가된 전체 파일의 개수를 반환합니다.
SyntaxNumber getTotalFileCount ()
Parameters
Return ValuesBasicFileUploadManager 객체에 추가된 전체 파일의 개수를 반환합니다.
Remarks
Sample CodesJavascript alertTimeout( cuManager.getTotalFileCount() ); /** * Flash로부터 호출되는 Javascript 콜백함수 내에서 alert 창을 띄우기 위한 처리로 Chrome, Firefox, Safari 브라우저의 일부 버전에 해당됩니다. */ var alertTimeout = function (params) { window.focus(); setTimeout(function () { alert(params) }, 100); }
|