Examples

Uploader.UploadCursor Property

Specifies the built-in cursor shown over the upload button. In this example the cursor is set to Hand.

Allowed file types: jpg, gif, png, zip. Maximum file size: 10 MB.

Demo code

<?php
    $uploader = new PhpUploader();
    $uploader->MaxSizeKB = 10240;
    $uploader->AllowedFileExtensions = "jpeg,jpg,gif,png,zip";
    $uploader->Name = "myuploader";
    $uploader->UploadCursor = "Hand";
    $uploader->MultipleFilesUpload = true;
    $uploader->Render();
?>
Testing the demo: hover the upload button — the pointer shows as a hand rather than the default arrow.