Hi,
I am using CustomizingRadProgressAreaUI radUpload. Also I am using the UI from CustomizingRadUploadUI.
In the UI it is referring to the Removebutton Image.
aspx Code is as below:
<table width="100%" cellpadding="0" cellspacing="0">
<tr><td>
<rad:radupload SkinsPath="~/RadControls/Upload/Skins" id="Radupload1" runat="server" initialfileinputscount="1" />
<rad:radprogressarea id="RadprogressArea1" runat="server" displaycancelbutton="True"></rad:radprogressarea>
</td>
<td>
<div style="float:right;margin-right:9px;height:132px;width:250px;" class="module">
<asp:label id="labelNoResults" runat="server" visible="True">No uploaded files yet</asp:label>
<asp:repeater id="reportResults" runat="server" visible="False">
<headertemplate>
Uploaded files:
<br /> </headertemplate>
<itemtemplate>'<%#DataBinder.Eval(Container.DataItem, "FileName")%>'
( '<%
#DataBinder.Eval(Container.DataItem, "ContentLength").ToString() + " bytes"%>'
)<br />
</itemtemplate></asp:repeater>
</div> </td></tr> </table>
<asp:button id="buttonSubmit" class="RadUploadButton" runat="server" text="Submit" />
in .cs for handling UI of the RadUpload I have written code as below:
Radupload1.ControlObjectsVisibility = ControlObjectsVisibility.None;
//Radupload1.ControlObjectsVisibility = ControlObjectsVisibility.CheckBoxes;
Radupload1.ControlObjectsVisibility |= ControlObjectsVisibility.RemoveButtons;
//Radupload1.ControlObjectsVisibility |= ControlObjectsVisibility.ClearButtons;
Radupload1.ControlObjectsVisibility |= ControlObjectsVisibility.AddButton;
//Radupload1.ControlObjectsVisibility |= ControlObjectsVisibility.DeleteSelectedButton;
BindResults();
I have following question:
1) I want to change look and feel of the UI , bychanging positioning of the of the remove button in the same line where Add button.
2) Also, I want there should not be any Add button and when user will click on browse button and select any image then , this should automatically add new row at the bottom insted of user clicking on Add button. How can I achieve this?
3)The remove button which is at the right side of the browse button, I want to change the positioning of that button and want to place it at the left side.
How can I implement all above three.
Please Reply.