Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
348 views
Hi guys,
I have created a project out of existing one(I do not want to mess with existing version).Created a new page and when I go to design view I am getting error:Uknown server tag 'telerik:RadScriptManager' and also getting error that Master file could not be found but its there.
And also I checked bin directory and Telerik.Web.UI.dll file is there.

<%@ Page Language="C#" MasterPageFile="~/EISMaster.Master" AutoEventWireup="true" CodeBehind="RatingFormGuidanceCounselor.aspx.cs" Inherits="EISPortal.Ratings.RatingFormGuidanceCounselor" Title="Untitled Page" %>

<%@ Register TagPrefix="telerik" Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" %>

<

 

asp:Content ID="Content1" ContentPlaceHolderID="cphNavigation" runat="server">

 

 

</

 

asp:Content>

 

 

<

 

asp:Content ID="Content2" ContentPlaceHolderID="cphMain" runat="server">

 

 

<

 

telerik:RadScriptManager ID="ScriptManager1" runat="server" />

 

<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">

 

 

<AjaxSettings>

 

<telerik:AjaxSetting AjaxControlID="mainPanel">

 

<UpdatedControls>

 

<telerik:AjaxUpdatedControl ControlID="mainPanel" LoadingPanelID="RadAjaxLoadingPanel1" />

 

</UpdatedControls>

 

</telerik:AjaxSetting>

 

 

</AjaxSettings>

 

</telerik:RadAjaxManager>

 

<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" EnableSkinTransparency ="true" runat="server">

 

</telerik:RadAjaxLoadingPanel>

Thanks so much for your help.
Yana
Telerik team
 answered on 14 Feb 2011
4 answers
212 views
Hi all,
   I have used the code an the demo :   http://demos.telerik.com/aspnet-ajax/scheduler/examples/resourceavailability/defaultcs.aspx

but the function of JavaScript in the example don't work in my project ..?????

please I'm very stressed with that.
MOUSLIKI
Top achievements
Rank 1
 answered on 14 Feb 2011
1 answer
236 views
I have a custom progress indicator:

<telerik:RadProgressManager ID="progressManager" runat="server" RefreshPeriod="250" SuppressMissingHttpModuleError="true" />
<telerik:RadProgressArea ID="progressArea" Width="100%" runat="server"
    ProgressIndicators="FilesCountBar, FilesCount, FilesCountPercent, SelectedFilesCount, CurrentFileName" />

private void UpdateProgress(double current, double total, string actionName)
{
    progressArea.Visible = true;
    var progress = RadProgressContext.Current;
    progress.SecondaryTotal = total;
    var percent = Math.Floor((current / total) * 100d);
    progress.SecondaryValue = current.ToString();
    progress.SecondaryPercent = percent.ToString();
    progress.CurrentOperationText = String.Format("{0}", actionName);
}

And it displays correctly, but it no longer displays images.  Just displays like it is in the screen shot.   Any help?
Dimitar Terziev
Telerik team
 answered on 14 Feb 2011
1 answer
83 views
How can I add HTML Tags Selector tool in the toolbar?
Rumen
Telerik team
 answered on 14 Feb 2011
1 answer
95 views
Hi,

I am having two fields in a list. One is the "RichText" and other is "Enhanced Rich Text". The RichText Field is coming with resize option when I use Telerick RadEditor but the resize option is unavailable in Enhanced RichText field. How can I resize the enhance rich Text field like RichText Field?

Please see screenshot
Stanimir
Telerik team
 answered on 14 Feb 2011
2 answers
131 views
Hi,

I have a got a scenario where by I have to make use of custom paging by setting VirtualItemCount. This works fine but I want to export whole dataset in .csv ignoring Paging. 

During the export routine, I have set 
grid.ExportSettings.IgnorePaging = false

It's not working as I am wanting.

Please advise.

Many thanks.
MG
FISCAL
Top achievements
Rank 1
 answered on 14 Feb 2011
6 answers
115 views
I'm fairly new to the skinning controls.
I have a logo image (a .gif) on my master page. I need the image url to change to a 'white on black' image as the page is initially loaded based on the cookie that is saved. 
It works fine in the code below if I select a skin from the chooser and I notice that the chooser value is being updated form the cookie properly but I cannot for the life of me find a way to 'trap' either the cookie vale or the chooser value on the initial master page load.

Implementing the code below in the Master Page Load always seems to bring back an empty string.

If RadSkinManager1.GetSkinChooser.SelectedValue = "Black" Then
            imgLogo.ImageUrl = "~/Styles/Images/RWLogoWhite.gif"
Else
            imgLogo.ImageUrl = "~/Styles/Images/RWLogoBlack.gif"
End If
Can I get access to the cookie value as the page initiates? 
I am fine with the built in skins and don't want to get involved with custom skins if possible ... please help.
gonewalkabout
Top achievements
Rank 1
 answered on 14 Feb 2011
4 answers
156 views
Hello,

My reminders are set using
DataReminderField="Reminder"
On the aspx page. And I am having a problem with them resetting even after I have clicked on dismiss. They seem to keep popping up every time the page reloads.

On dismiss I set the reminder field on the database to "-1" and then when
protected void SchedAppointments_AppointmentDataBound(object sender, SchedulerEventArgs e)
is called I set my reminders for each of my appointments like so.
if ((Reminder != -1))
{
 
e.Appointment.Reminders.Add(new Reminder(Reminder));
}

Would the Scheduler still find and display the reminder if I do not do this? If so what should I put in my database for it not to be displayed after it has been dismissed instead of "-1"?

Thank you
Phil
Mouse
Top achievements
Rank 1
 answered on 14 Feb 2011
1 answer
90 views
CSS bug (not sure if this is the best place to post it): On the FileExplorer's toolbar in IE7, the right edge of the hovered button is raised. This can be seen on the FileExplorer demos.
Bozhidar
Telerik team
 answered on 14 Feb 2011
1 answer
325 views
Hello,

I'm using the RadTabStrip and RadMultiPage combo with the multipage having the RenderSelectedPageOnly property set to true.  In the current page, the page has a JavaScript method that is the client validation function for a CustomValidator control.  For some reason, when this property is true, that function can't be found.  But with this property as false, the page works as expected; the client validation function runs when the form is being submitted.  The JS function is in the content of the RadPageView that's displayed.  It looks something like this:

<tel:RadPageView runat="server">
.. form ..
<asp:CustomValidator runat="server" .. ClientValidationFunction="cv_Val" />

<tel:RadScriptBlock runat="server">
<script type="text/javascript">
function cv_Val(sender, e) {
//Function for client validation
}
</script>
</tel:RadScriptBlock>
</tel:RadPageView>

With RenderSelectedPageOnly to true, it says cv_Val does not exist.  Why is that?  What would be causing the error?

Thanks.
Dimitar Terziev
Telerik team
 answered on 14 Feb 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?