function uploadFileSelected(sender, args) { upload = sender; var uploadContainer = sender.get_element(); var editTable = uploadContainer.parentNode.parentNode.parentNode; var fileNameTextBox = editTable.rows[0].cells[1].getElementsByTagName('input')[0]; fileNameTextBox.value = args.get_fileInputField().title;}

Hi,
I tried to upload the "Telerik.Web.UI.dll" into the bin folder of an existing Webshop. After I uploaded the fill and run the webpage I got this error:
What is to do to get this running?? Thanks Rene
Server Error in '/' Application.
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. |
|
|
<%@ Register Assembly="RadGrid.Net2" Namespace="Telerik.WebControls" TagPrefix="radG" %>
<radG:RadGrid runat="server" SkinID="myGrid" Skin="Grid" SkinsPath="~/App_Themes/Default/" DataFormatString="{0:dd/MM/yyyy}">
<PagerStyle Mode="NextPrevAndNumeric" AlwaysVisible="True" />
</radG:RadGrid>
My Web Page Code
<radG:RadGrid ID="RadGrid1" runat="server" AutoGenerateColumns="False"
SkinID="myGrid" AllowAutomaticDeletes="True" AllowAutomaticInserts="True"
AllowAutomaticUpdates="True" AllowPaging="True" AllowSorting="True" LoadingTemplateTransparency="50"
AllowFilteringByColumn="True" BackColor="Transparent" Width="100%">
<MasterTableView DataKeyNames="UserName" >
<Columns>
<radG:GridBoundColumn HeaderText="User Name" DataField ="displayUserName" meta:resourcekey="BoundFieldResource1"></radG:GridBoundColumn>
</Columns>
</MasterTableView>
<FilterMenu CssClass="FilterMenuClass1"></FilterMenu>
</radG:RadGrid>
When I bind Date to GridBoundColumns inside my web pages it's not formating what I declared in my skin " MyGrid ". Please let me know how can i extract this DataFormatString DateTime Grid Bound Columns.

Team,
In my application I want to bind data to radchart on client side please let me know how can I achieve this task.
E.g. I am having data for pie chart in client side a:30,b:20,c:50.
How can I bind this values, legend and pie slices color to radchart in client side.
Thanks
Sampada