I uninstalled ASP.NET AJAX Q1 2009 and then installed the newest Q3 2009 release. Now my existing projects will not compile. Your help file talks about a "Project Upgrade Wizard" that is supposed to fix my existing projects but I can't access it. The help file says:
The Upgrade Wizard (started by using the Telerik > RadControls for ASP.NET AJAX > Upgrade Wizard menu item) has two main purposes:
I want to do bullet item #2 but can't because the "Upgrade Wizard" menu item does not exist! The "Telerik > RadControls for ASP.NET AJAX" menu items are there in Visual Studio but the third "Upgrade Wizard" menu item is not there. Instead I have a "Convert to Telerik Web Application". The project I have open has already been converted the older Telerik Q1 2009 version. It's like your menus can't figure out that my projects have already been converted and instead need to upgraded!
How do I open the "Project Upgrade Wizard"???
This was the previous code in aspx file (done by previous developer)
<radG:RadGrid ID="uxUsers" runat="server" RadControlsDir="~/RadControls/" AllowPaging="False" HorizontalAlign="NotSet">
<MasterTableView AllowMultiColumnSorting="True" AllowSorting="True" ShowFooter="False" AutoGenerateColumns="False">
<Columns>
<radG:GridBoundColumn DataField="name" HeaderText="Name" ReadOnly="True" UniqueName="name" />
<radG:GridBoundColumn DataField="email" HeaderText="Email" ReadOnly="True" UniqueName="email" />
</Columns>
</MasterTableView>
</radG:RadGrid>
and the code behind it is
Private Sub BindEmployerUsers()
uxUsers.DataSource = DB.GetData("SELECT eu.id, u.email, u.name + ' ' + u.surname AS name, CASE WHEN u.emailverified IS NULL THEN 'No' ELSE 'Yes' END AS emailverified, u.active FROM EmployerUser eu INNER JOIN [User] u ON eu.userid = u.id WHERE u.deleted = 0 AND eu.employerid = " & Employer.ID)
uxUsers.DataBind()
End Sub
That was working fine. now i have added another column
<radG:RadGrid ID="uxUsers" runat="server" RadControlsDir="~/RadControls/" AllowPaging="False" HorizontalAlign="NotSet">
<MasterTableView AllowMultiColumnSorting="True" AllowSorting="True" ShowFooter="False" AutoGenerateColumns="False">
<Columns>
<radG:GridBoundColumn DataField="name" HeaderText="Name" ReadOnly="True" UniqueName="name" />
<radG:GridBoundColumn DataField="email" HeaderText="Email" ReadOnly="True" UniqueName="email" />
<radG:GridBoundColumn DataField="primaruser" HeaderText="PrimarUser" ReadOnly="True" UniqueName="PrimarUser" />
</Columns>
</MasterTableView>
</radG:RadGrid>
and the code behind this is
Private Sub BindEmployerUsers()
uxUsers.DataSource = DB.GetData("SELECT eu.id, u.email, u.name + ' ' + u.surname AS name, CASE WHEN eu.id=e.primaryemployeruserid THEN 'yes' ELSE 'No' END AS PrimaryUser, CASE WHEN u.emailverified IS NULL THEN 'No' ELSE 'Yes' END AS emailverified, u.active FROM Employer e INNER JOIN EmployerUser eu on e.id=eu.employerid INNER JOIN [User] u ON eu.userid = u.id WHERE u.deleted = 0 AND eu.employerid = " & Employer.ID)
uxUsers.DataBind()
End Sub
but i get 'System.Data.DataRowView instead of real value.
how to fix this

Hello
I want to be able to open the 'find-and-replace' popup outside of the parent RadEditor window. Is there any way to do this?
Thanks
Raka
I have grid where data is grouped and some of columns are not displayed. Column header context menu is enabled, so user can add columns to be shown in grid.
Main problem is when user hide/show columns, group header row does not change with columns. I have pictures for these situations.
Problem 1:
When user add columns to show, group header row does not grow to fill whole grid, pictures & explanations
1. Starting
situation at end of grid where 13 columns are displayed
2. User open
context menu from header
3. User
select one column to show (in this case Insp. point after AWW Date will be
added some point before captured picture area)
4. Column
has added to grid in its own place, but at the end of grid group header row is
missing one column style fill.
5. When
changing runtime code to group header row colspan from 13 to 14 (originally 13 columns
to show now 14) last column
Problem 2: When user remove columns to show, group header row does not get smaller with columns count, pictures & explanations
6. When user is hiding columns, now removed two columns from
that added one situation
7. Group
header row stay with 13 columns and “data” area columns get white area
Group header row will correct itself if whole grid is refresh/rebind but I would not like to do that because it is then doing whole page reload and "flash" the screen so is there any way to do that in client side code?


I am new in RadCloudUpload in Telerik. I am working on Amazon s3 Bucket. When I am uploading small images with size 87.9 KB (ex: sample1.jpg) it is working fine with RadCloudUpload control but when I am trying to upload another image with size 4.15 MB (ex: sample2.jpg) , the control is firing an error saying "Size validation failed". I am using the below mentioned code:
<telerik:RadCloudUpload ID="RadCloudUpload1" runat="server" MaxFileSize="3145728" RenderMode="Lightweight" MultipleFileSelection="Automatic" OnFileUploaded="RadCloudUpload1_FileUploaded" ProviderType="Amazon" >
</telerik:RadCloudUpload>
I have tested the same from below link also (same issue exist) :
https://demos.telerik.com/aspnet-ajax/cloud-upload/examples/overview/defaultcs.aspx?show-source=true
I am following -- https://docs.telerik.com/devtools/aspnet-ajax/controls/cloudupload/cloud-storage-providers/amazon-s3
How to resolve the issue as I need to upload large size file(Images, PDF, Doc and etc) in Amazon S3 server.
Thanks.
Hi, Looking at this demo with the Material skin, I was wondering if it was possible to show the text below the image?
https://demos.telerik.com/aspnet-ajax/wizard/overview/defaultcs.aspx?skin=Material

When I run my application using RadScheduler from Visual Studio, everything works properly.
When I publish it to an Azure Web App, some of the features stop working.
My default view is Week. I can create, edit, adjust or move appointments within that week without any issues.
I have the latest version of Telerik UI for ASP.NET Ajax installed along with the latest version of Visual Studio 2019.
I'm not getting any error messages of any sort. The most frustrating part is that when I go back to my development environment to try to diagnose the problem (inside Visual Studio) everything works properly. So, I'm at a loss to explain why it would behave differently on Azure than inside Visual Studio.

Hi,
How can we set source for video in client side using radmediaplayer..I'm struggling with this problem can someone help me on this issue
Thanks,
Yogesh Kumar