<table width="100%" cellpadding="0" border="1" cellspacing="0">
<tr><td><rad:RadUpload SkinsPath="~/RadControls/Upload/Skins" Skin="Vista_New" ID="Radupload1"
runat="server" InitialFileInputsCount="1" />
<asp:ImageButton ImageAlign="Right" ID="ibtnSubmit" runat="server" ImageUrl="~/Images/btn_Submit.gif"
AlternateText="Click here to submit." OnClick="ibtnSubmit_Click"></asp:ImageButton>
<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>
I have tried by placing button in following way but it is not working:
var x=document.getElementById('Radupload1ButtonContainer').rows(0);
var y=x.insertCell(1);
//var z=x.insertCell(1);
var input = document.createElement("ImageButton");
input.type =
"submit";
input.className =
"ruButton";
input.value =
"Submit";
input.id = input.name =
"submit";
//y.innerHTML=input;
y.appendChild(input);
Please reply.
| <telerik:GridBoundColumn DataField="ItemPriceEUR" ReadOnly="true" DataType="System.Double" HeaderText="ItemPriceEUR" SortExpression="ItemPriceEUR" UniqueName="ItemPriceEUR" HeaderStyle-Width="100px"> |
| </telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="ItemPriceEUR" ReadOnly="true" DataType="System.Double" HeaderText="ItemPriceEUR" SortExpression="ItemPriceEUR" UniqueName="ItemPriceEUR" HeaderStyle-Width="100px"> |
| <HeaderStyle Width="100px"></HeaderStyle> |
| </telerik:GridBoundColumn> |
| <telerik:GridClientDeleteColumn ButtonType="ImageButton" ConfirmText="Are you sure?\nSind sie sicher?" UniqueName="DeleteCol" ConfirmDialogType="RadWindow" ConfirmTitle="Löschen?" HeaderStyle-Width="90px" > |
"Please note that the loading images which where previously embedded in the Telerik.Web.UI assembly would not be available since Q2 2009."
Conlcusion:
Great job - really a big step forward.
The new look is also a great thing.
Except the loading panel (and some errors) I'm really happy with it.
I know that on such a big project errors can occur - and I was surprised that I had almost no problems with the update.
Regards
Manfred

| <asp:Panel runat="server" ID="pnlAttachments" Visible="false"> |
| <telerik:RadUpload ID="RadUpload1" runat="server" InitialFileInputsCount="1" MaxFileInputsCount="5" |
| AllowedFileExtensions=".pdf,.xls,.doc,.docx,.xlsx" ControlObjectsVisibility="RemoveButtons,AddButton"> |
| </telerik:RadUpload> |
| <telerik:RadProgressArea ID="progressArea1" runat="server" /> |
| <asp:Button ID="btnAttachmentCancel" runat="server" Text="Cancel" Style="margin-top: 6px" /> |
| <asp:Button ID="buttonSubmit" runat="server" Text="Submit" Style="margin-top: 6px" /> |
| </asp:Panel> |
| function conditionalPostback(sender, args) |
| { |
| if (args.EventTarget == "<%= ButtonSubmit.UniqueID %>") |
| { |
| args.EnableAjax = false; |
| } |
| } |
Is it possible to change the focus of a page to the top pager on a grid, or a textbox just above the grid, client side prior to firing the server events when using the bottom pager to switch pages?
I can use something like this on the server side,
ScriptManager.
SetFocus(focusOnControl);
to set the focus to the top of my page, but the page actually jumps about a third of the way up the page and then goes the rest of the way to the top of the page to set the focus. I want the focus to be set in one step, without the delay, is that possible?
Thank you