Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
51 views
I have made Croatian localization for RadEditor, about 80% of text is localized, grammatic and spelling are correct. Where can I upload RESX files so you can have it on Telerik site ?
Rumen
Telerik team
 answered on 02 Mar 2010
2 answers
154 views
Hi,

I am drawing a multiseries line chart. I want to hide series point lables and display some point shape instead (like star,triangle,cross etc). When mouse is hovered on the data points it should display value in tooltip. How can I do this using RadChart?

Ves
Telerik team
 answered on 02 Mar 2010
3 answers
149 views
I may be completely overlooking this .... Is it possible to display more than one month while in "MonthView"?

What I would like to do is display the current month and allow the user to scroll into the next month; that is multiple months loading up in the current view.

For example, today is 2/24/2010 .....say I make an appointment for the next 4 Wednesdays. Currently, my scheduler will show the month of February and the appointments. The user would then have to click the next month in the Time Line area to view the Wednesday appointments in March. This is not ideal and seems a bit cumbersome.

How would users display data for quarterly results then?


Any ideas?


Thanks,

Felipe
Peter
Telerik team
 answered on 02 Mar 2010
1 answer
407 views
Hello,

By default  "EmptyMessage" in TextBox  is normal while in the other controls viz combobox appears to be italic.

How can i make textbox EmptyMessage italic ?
Pavlina
Telerik team
 answered on 02 Mar 2010
8 answers
215 views
Hi,
i have a page, which opens several windows. From window i run jscript code on main page and at the end i run radalert() for show confirmation to user. radalert appers under opened window. How to place alert on the top of all other windows?
Have tried .setactive after timeout, found on this forum, but still no luck

Thanks
Alex
Alex Dybenko
Top achievements
Rank 2
 answered on 02 Mar 2010
2 answers
77 views
Hi All,

We have implemented code in our application from http://demos.telerik.com/aspnet-ajax/scheduler/examples/radtooltip/defaultcs.aspx.
And its working properly for single same month but when we navigate to any other months then its not working.

aspx Code is:
 <ContentTemplate>
        <telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server"  />
                    <telerik:RadScheduler runat="server" ID="RadScheduler1"  Height="600px" StartEditingInAdvancedForm="false"
                        ShowFooter="false" TimeZoneOffset="05:30:00" DayStartTime="00:00:01" SelectedView="MonthView" ShowViewTabs="false"
                        DayEndTime="23:59:59" FirstDayOfWeek="Monday" LastDayOfWeek="Sunday" EnableDescriptionField="true" AllowEdit="false" AllowInsert="false"
                        OnDataBound="RadScheduler1_DataBound" DataKeyField="EventID" DataSubjectField="EventName" DataStartField="EventDate" DataEndField="EventDate"
                        Width="100%" OnNavigationComplete="RadScheduler1_NavigationComplete" OnAppointmentDataBound="RadScheduler1_AppointmentDataBound"
                        AllowDelete="false"  onappointmentcreated="RadScheduler1_AppointmentCreated">
                        <%--<AdvancedForm  modal="true" />--%>
                        <TimelineView UserSelectable="false" />
                        <ResourceStyles>
                            <telerik:ResourceStyleMapping Type="Calendar" Text="Development" ApplyCssClass="rsCategoryGreen" />
                            <telerik:ResourceStyleMapping Type="Calendar" Text="Marketing" ApplyCssClass="rsCategoryRed" />
                            <telerik:ResourceStyleMapping Type="Calendar" Text="Work" ApplyCssClass="rsCategoryOrange" />
                        </ResourceStyles>
                    </telerik:RadScheduler>
                    <telerik:RadToolTipManager runat="server" ID="RadToolTipManager1" Width="300" Height="100"
                Animation="None" HideEvent="LeaveToolTip" Text="Loading..." RelativeTo="Element"
                OnAjaxUpdate="RadToolTipManager1_AjaxUpdate" OnClientBeforeShow="clientBeforeShow"  BackColor="#390f12"
                /></ContentTemplate>

and cs code is:
 protected void RadToolTipManager1_AjaxUpdate(object sender, Telerik.Web.UI.ToolTipUpdateEventArgs args)
        {  
            
            this.UpdateToolTip(args.Value, args.UpdatePanel);
        }

        private void UpdateToolTip(string elementID, UpdatePanel panel)
        {
            int aptId;
            Appointment apt;

            try
            {
                if (!int.TryParse(elementID, out aptId))//The appoitnment is occurrence and FindByID expects a string
                    apt = RadScheduler1.Appointments.FindByID(elementID);
                else //The appointment is not occurrence and FindByID expects an int
                    apt = RadScheduler1.Appointments.FindByID(aptId);

                EventDetails toolTip = (EventDetails)LoadControl("EventDetails.ascx");
                toolTip.TargetAppointment = apt;
                panel.ContentTemplateContainer.Controls.Add(toolTip);
            }
            catch (Exception ex)
            {
                objbbCommon.WriteError(ex.Message.ToString());
            }
        }

Thanks in advance for your support.



Prashant Dalvi
Top achievements
Rank 1
 answered on 02 Mar 2010
1 answer
126 views
I have a tab strip where the first row is parent tabs

so tab1, tab2 and tab3

under each of these tabs I have child tabs, so tab1 would have

tab1_1, tab1_2, tab1_3

and so on.

How do I check to see if I am tab1_1 or tab1_2 or tab1_3 using javascript?
Shinu
Top achievements
Rank 2
 answered on 02 Mar 2010
1 answer
100 views
hi

is possible to add to hierarchy button?

to be more clear i want to add 1 button for each hierarchic table..

and each talbe will be expanded only at button click..

if its possible can you provide the corrisponding code ?

thanks in advance

regards
webster
Martin
Telerik team
 answered on 02 Mar 2010
4 answers
125 views
Hi

I Need To Convert Filter Titles To Persian But Without CodeBehind . How Can I ? Because When I Want To Work Many Grids I Can Not Use This Code For Each Grid In Application .  I See One XML File In Bin Folder .But When I Edit That File Dont effect On Grid .

Please Help me.
Tnx

protected void Page_Load(object sender, System.EventArgs e)  
{  
 GridFilterMenu menu = RadGrid1.FilterMenu;  
 foreach (RadMenuItem item in menu.Items)  
 {  
   //change the text for the "StartsWith" menu item  
   if(item.Text == "StartsWith")  
   {  
      item.Text = "your_custom_localized_string";  
   }  
 }  
}  



Ali Kolahdoozan
Top achievements
Rank 2
 answered on 02 Mar 2010
1 answer
134 views
Is there any way to get a veritcal timeline view?  So for example it shows

Feb1
  • Event 1
  • Event 2
Feb 25th
  • Event 1
March 1st
  • Event 1
  • Event 2

Just a list of days with dates?  I know I could query the data to come up with it myself, but having it inside the scheduler would be more slick :)
Peter
Telerik team
 answered on 02 Mar 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?