ppages wrote:Thanks. It w/b nice if the uploader simply allowed you to hook any button on the page, rather than resticting you to buttons in a buttonbar.
I hear you...I am not sure whether that is possible though. The ToolBar knows about AJAXUploader, so it can "work with" the uploader to accommodate it.
ppages wrote:I still want more control over the appearance of the menu-button I've chosen to kickoff my browse. For instance, I would like the cursor to change to a hand as part of the HoverStyle, but I've been unable to make this happen - can you tell me how?
You can not do this with a regular file input element. The default cursor is always arrow. Since internally we still rely on a file input element to do the actual upload, we do not explicitly allow you to customize that either. You can do it indirectly with CSS. For example, the following CSS should change the cursor to hand shape:
The biggest problem for this approach is that this changes the cursor for all input elements, not just file input element. Also as far as we know, it does not work on FireFox. FireFox would simply disregard this for file input element.
ppages wrote:I also tried using a custom item, but, even though I liked the custom item with the uploader via the commandName, nothing happened when I clicked the button
I am not exactly sure what you mean by this. We have verified the following code works:
Code: HTML/ASPX
<eo:AJAXUploader StartToolBarButton="ToolBar1:Test" ....>
....
</eo:AJAXUploader>
<eo:ToolBar .....>
<Items>
<eo:ToolBarItem CommandName="Test">
<CustomItem>
your custom button content here
</CustomItem>
</eo:ToolBarItem>
</Items>
</eo:ToolBar>
Please feel free to let us know if you have any more questions.
Thanks!