customer ui and show the hand cursor

Last post 03-12-2010, 1:24 PM by sopa. 10 replies.
Sort Posts: Previous Next
  •  12-02-2009, 1:11 AM 57531

    customer ui and show the hand cursor

    Can I change the mouse cursor to hand cursor when the mouse over the upload image after I use custom ui?
    I set the css to "<img id="uploadbutton" title="Upload File" style="cursor:hand;cursor:pointer;" alt="upload" src="http://img.housetube.tw/img/member/uploader.png" />"
    but it doesn't work.
     
    thanks
  •  12-02-2009, 11:27 AM 57539 in reply to 57531

    Re: customer ui and show the hand cursor

    Dear ives,
     
    This html code match your requirement:
    <img id="uploadbutton"  style="cursor: pointer" title="Upload File" alt="Upload File" src="http://phpfileuploader.com/images/upload.png" />
     
    Regards,
    Eric 
  •  12-02-2009, 7:30 PM 57544 in reply to 57539

    Re: customer ui and show the hand cursor

    I have set the style in my html code and last post, but the mouse cursor is not change to pointer, I even just set 'style=cursor:pointer', but it still not solved my problem.
  •  12-03-2009, 5:47 AM 57556 in reply to 57544

    Re: customer ui and show the hand cursor

    Hi,
     
    You need download the last version.
     
    And for this feature , the Flash will show another hand cursor.
     
    Regards,
    Terry
  •  02-16-2010, 3:08 PM 58737 in reply to 57556

    Re: customer ui and show the hand cursor

    Hi,
    I have last version, but hand cursor I don't see.
     
    code:
    <button id='myuploaderButton' onclick='return false;' class='button' style='cursor:pointer;'>bla bla</button>
     
    Where is failure, pls?
     
    Pavel
  •  03-03-2010, 9:48 PM 59155 in reply to 58737

    Re: customer ui and show the hand cursor

    sopa:
    Hi,
    I have last version, but hand cursor I don't see.
     
    code:
    <button id='myuploaderButton' onclick='return false;' class='button' style='cursor:pointer;'>bla bla</button>
     
    Where is failure, pls?
     
    Pavel
     
    This issue is fixed. Please download the latest build then try again.
     

    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

  •  03-11-2010, 2:55 PM 59343 in reply to 59155

    Re: customer ui and show the hand cursor

    IE 7.0 = KO
    IE 8.0 = all right
    FF 3.6 = KO
    Opera 10.5 = KO
     
    Version is 100% last! ;)
  •  03-12-2010, 8:01 AM 59352 in reply to 59343

    Re: customer ui and show the hand cursor

    Dear sopa,
     
    I downloaded latest version just now, and update example form-customui.php in download package,
    <img id="uploadbutton" style='cursor:pointer;' title="Upload File" alt="Upload File"  src="http://phpfileuploader.com/images/upload.png" /> , tested it in IE8 and FF3.6, It works fine.
     
    Regards,
    Eric
  •  03-12-2010, 8:48 AM 59354 in reply to 59352

    Re: customer ui and show the hand cursor

    Give me pls link for last version, I have this: http://phpfileuploader.com/download/phpfileuploader.zip
     
    source:
    ...<img id="uploadbutton" style='cursor:pointer;' title="Upload File" alt="Upload File"  src="http://phpfileuploader.com/images/upload.png" />
    ...
    FF 3.6 Fine? no!
     
    or give me your example online with cursor pointer, pls!
     
    thank you
  •  03-12-2010, 10:12 AM 59357 in reply to 59354

    Re: customer ui and show the hand cursor

    Dear sopa:
     
     
     
    Full code:

    <?php require_once "phpuploader/include_phpuploader.php" ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
     <title>PHP Upload - Customizing the UI</title>
     <link href="demo.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
     <div class="demo">
            <h2>Customizing the UI</h2>
      <p>A sample demonstrates how to customize the look and feel of file upload controls. In this example, the appearance of a progress panel, progress text, upload button and cancel button have been customized (Allowed file types: <span style="color:red">jpg, gif, png, zip</span>). </p>     
       <div style="padding:10px">   
        <img id="uploadbutton" style='cursor:pointer;' title="Upload File" alt="Upload File" src="http://phpfileuploader.com/images/upload.png" /> 
        <div id="uploaderprogresspanel" style='display:none;background-color:orange;border:dashed 2px gray;padding:4px;' BorderColor="Orange" BorderStyle="dashed">
         <span id="uploaderprogresstext" style='color:firebrick'></span>
        </div>
        
        <img id="uploadercancelbutton" style='display:none;' alt="Cancel" src="http://phpfileuploader.com/images/cancel_button.gif" />

        <?php

         $uploader=new PhpUploader();
         $uploader->MaxSizeKB=10240;
         $uploader->AllowedFileExtensions="jpeg,jpg,gif,png,zip";
         $uploader->Name="myuploader";

         //specify a button instead the uploader create it own button
         $uploader->InsertButtonID="uploadbutton";

         $uploader->MultipleFilesUpload=true;

         $uploader->ProgressCtrlID="uploaderprogresspanel";
         $uploader->ProgressTextID="uploaderprogresstext";
         $uploader->CancelButtonID="uploadercancelbutton";
         
         
       //Where'd the files go?
       //$uploader->SaveDirectory="/myfolder";
       
         $uploader->Render();

        ?>
       </div>
     </div>
    </body>
    </html>

     
    Regards,
    Eric
  •  03-12-2010, 1:24 PM 59375 in reply to 59357

    Re: customer ui and show the hand cursor

    thank you for download link, all is right. Sorry.
View as RSS news feed in XML