Telerik Forums
UI for ASP.NET AJAX Forum
9 answers
83 views
Hi,

There is a problem with the editor and using MS Internet Explorer (any Version) by converting selected text into a bullet list.

What i'm doing:

Write three lines:

first line
second line
third line.

Select the three lines and press the button "Bullet List".

Results:

FireFox does everything fine:

  • first line
  • second line
  • third line

Internet Explorer does something like this:
  • first line
      second line
      third line

You can try this with the demo examples on this hompage.

Hopefully anybody can help me to find a fix.

Thanks in advance
Rumen
Telerik team
 answered on 26 Jun 2012
2 answers
108 views
Hi,

I want to know whether the column frozen can be done in the treelist grid view. 

Thanks
Gerald
Top achievements
Rank 1
 answered on 26 Jun 2012
10 answers
149 views
After een upgrade from  RadEditor for MOSS 5.1.0.0 to RadEditor for MOSS 5.8.14. the Image manager is not working correctly anymore.
I can paste an image from the Sitecollectionimages folder, but when i try to open the Publishingimages folder i only see the loading symbol. It will never open this folder.


Rumen
Telerik team
 answered on 26 Jun 2012
1 answer
137 views
Hi,

I am trying to use Telerik Ajaxify Timer to refresh the view at intervals determined by a configuration item . for this i have referred http://demos.telerik.com/aspnet-ajax/ajax/examples/common/ajaxifytimer/defaultcs.aspx link and in my  view.aspx page I have added :

<telerik:RadAjaxManagerProxy ID="ramDiary" runat="server">
        <AjaxSettings>
            <telerik:AjaxSetting AjaxControlID="TimerRefresh">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="DiarySchedule12" LoadingPanelID="LoadingPanel1" />
                </UpdatedControls>
            </telerik:AjaxSetting>
        </AjaxSettings>
    </telerik:RadAjaxManagerProxy>
 
and
 
 <telerik:RadScheduler Width="100%" ID="DiarySchedule12" runat="server" DayView-UserSelectable="false"
                                DataKeyField="ID" DataSubjectField="Description" DataStartField="Start" DataEndField="End"
                                WeekView-UserSelectable="False" TimelineView-UserSelectable="False" MonthView-UserSelectable="False"
                                Height="550px" NumberOfHoveredRows="1" DayStartTime="08:00:00" HoursPanelTimeFormat="HH:mm"
                                RowHeight="35px" Skin="Outlook" TimeLabelRowSpan="1" WorkDayEndTime="18:00:00"
                                WorkDayStartTime="08:00:00" ShowAllDayRow="False" Culture="en-GB" ShowFooter="true"
                                AllowDelete="False" AllowEdit="False" AllowInsert="False" DayEndTime="18:00:00"
                                EnableExactTimeRendering="True" CustomAttributeNames="Status" ShowNavigationPane="True"
                                MinutesPerRow="15" StartEditingInAdvancedForm="true" OnClientAppointmentDoubleClick="OnClientAppointmentDoubleClick"
                                OnClientAppointmentContextMenuItemClicked="OnClientAppointmentContextMenuItemClicked">
                                <ResourceHeaderTemplate>
 </telerik:RadScheduler>
 
and
 
<asp:Panel ID="PanelTimer" runat="server">
       <%-- <asp:Timer ID="TimerRefresh" runat="server" Interval="900000" OnTick="TimerRefresh_Tick" />--%>
        <asp:Timer ID="TimerRefresh" runat="server" Interval="3000" OnTick="TimerRefresh_Tick" />
    </asp:Panel>
 And in my  view.aspx.cs page in Page_Load  I have added :

int btimerRefresh = AM.IntOption("timer_refresh");
 
 
   
           TimerRefresh.Interval = btimerRefresh * 1000;

Now the 

The view is  getting refreshed but, I am not getting the image while refreshing diary.

Please Suggest as it is urgent for me.

Regards,
ABC




Maria Ilieva
Telerik team
 answered on 26 Jun 2012
3 answers
306 views
 

I'm facing a problem with the use of the telerik's radgrid. So far i have been using simple grids with only column headers. I need know to get row headers.

I'm trying to work with this which is more or less what i am looking for : http://demos.telerik.com/aspnet-ajax/grid/examples/programming/pivot/defaultcs.aspx

the problem the Row/Column headers are not the column names from my table. I need to write them directly in the code.
Some help would be welcome! thanks in advance

Ronan BARRANGER
Top achievements
Rank 1
 answered on 26 Jun 2012
1 answer
46 views
I have an line series and this series I own figures in circles. This series is powered by an array of double. Two things I'm not getting done.

 1) I can not do it no plot, when the value of the array at that position is zero (0).

2) That it is series with the X axis, that is, zero. Within the circles I put a few labels. I wish to make circles stay in the middle of the line (series), as it is along the X axis, should come half circles at the top (positive) and half the bottom (negative). It has to do this?
Petar Marchev
Telerik team
 answered on 26 Jun 2012
1 answer
53 views
Is it possible to change the height of the first row?  Please refer to the attached file.
Plamen
Telerik team
 answered on 26 Jun 2012
0 answers
120 views
Hi all,

I have a problem, when i try to apply border on the current date and when user hovers on that particular date the border becomes invisible, as i have done some research on it and came to the point that "rcHover" class removes the current border class on hover.

Can it be possible to apply both the classes at the same point.


and same is happening when i highlighted the special date with my own class.

The scnerio is as follows:
I have higlighted the special date with my own class using the following code:

 RadCalendarDay[] inputItems = new RadCalendarDay[JobLogDataSet.Tables["JobLog"].Rows.Count];
                int i = 0;
                foreach (DataRow row in JobLogDataSet.Tables["JobLog"].Rows)
                {
                    inputItems[i] = new RadCalendarDay();
                    inputItems[i].Date = (DateTime)row["LogDate"];
                    inputItems[i].ItemStyle.CssClass = "HiglightedData";
                    //inputItems[i].ItemStyle.Width = Unit.Pixel(10);
                    //inputItems[i].ItemStyle.CssClass = "rcSelected";
                    i++;
}

when the date is higlighted and selected the default css gets applied i.e. "rcSelected" and when user hovers on that date it removes the "rcselected" class but it dosen't happen when there is no higlighted date on that day.

I want in both the case that it should not remove the prev. applied class.

Hope i made myself clear about it.

hoping to get the reply as soon as possible.

Thanks 
Gaurav Sharma 
 
Gaurav
Top achievements
Rank 1
 asked on 26 Jun 2012
4 answers
107 views
Hi,

I have a 3 level Radgrid with a footer row in the second level. The second level TableView has a column called 'Price' and the footer row displays the sum of the 'Price' column. The MasterTableView has a column called 'ItemTotalPrice'. Initially when there are no rows in the second level the 'ItemTotalPrice' column shows '0'. I would like to access the value of the footer in the second level and update the 'ItemTotalPrice' column of the corresponding parent row, whenever a new row is inserted into the second level.

Any help is greatly appreciated.

Thanks
Meera
Meera
Top achievements
Rank 1
 answered on 26 Jun 2012
1 answer
97 views

Telerik Team,

We are using 6.3.1 version of RAD Editor for SharePoint and using the complete toolbar provided by telerik.

Here the issue is about "Apply CSS Styles" dropdown, where the items are repeated atleast for 4 items. Attaching the document with the screenshot

We are following the approach given in the article http://www.telerik.com/help/aspnet-ajax/moss-sp2010-css_styles.html. Had our Custom Styles defined in one of the CSS file by overriding the classes in the below file.

/Program Files/Common Files/Microsoft Shared/web server extensions/14/Template/Layouts/1033/Styles/HtmlEditorStyles.css - Even in that case it should display twice - But it is displaying about 4 items.

Thanks

Rumen
Telerik team
 answered on 26 Jun 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?