One of the limitations of the RadEditor for MOSS feature is that it is unable to support object and embed tags when used as the replacement rich text editor in lists. I have come to the conclusion that this is actually a function of the underlying sharepoint field type. However, new, custom, field types are a reality in sharepoint development, and by simply using the default WSP builder template, I have created a custom field that does not suppress these tags. From there my natural instinct is to use the RadEditor for MOSS as the editor control; however, it doesn't have the necessary control properties exposed to do so. (no public content or text properties) Therefore, I'm attempting to use the standard RadEditor. This is perhaps more of a sharepoint question, but for anyone interested, after littering the code with debugging stops, the last method it leaves is the one below:
protected override void CreateChildControls() { if (Field == null) return; base.CreateChildControls(); if (ControlMode == SPControlMode.Display) ConstructDisplayMode(); else { ConstructEditMode(); if (ControlMode == SPControlMode.New) { OpenHTMLField field = (OpenHTMLField)base.Field; } } }05/28/2012 16:15:56.08 w3wp.exe (0x0FE4) 0x17C8 CMS Publishing 8zug Medium PublishingHttpModule.Init() calling AppDomainUnloadListener.Register() 05/28/2012 16:15:56.08 w3wp.exe (0x0FE4) 0x17C8 CMS Publishing 8x0a High AppDomainUnloadListener.RegisterSelf() entered lock(this=34622967) 05/28/2012 16:15:56.08 w3wp.exe (0x0FE4) 0x17C8 CMS Publishing 8zug Medium PublishingHttpModule.Init() calling AppDomainUnloadListener.Register() 05/28/2012 16:15:56.08 w3wp.exe (0x0FE4) 0x17C8 CMS Publishing 8x0a High AppDomainUnloadListener.RegisterSelf() entered lock(this=34622967)
<meta http-equiv="X-UA-Compatible" content="IE=8" /><telerik:GridBoundColumn DataField="DateIn" HeaderStyle-Width="145px" DataType="System.DateTime" DataFormatString="{0:MMM/dd/yyyy}" HeaderText="Date In" ItemStyle-HorizontalAlign="Left"> <FilterTemplate> <div style="width:35px;float:left; padding-top:2px;">From:</div> <div style="float:left; padding-bottom:1px;"><telerik:RadDatePicker ID="FromDateInPicker" runat="server" Width="90px" ClientEvents-OnDateSelected="FromDateSelected" DbSelectedDate='<%# startDateIn %>'><DateInput Font-Size="11px" /><Calendar><SpecialDays><telerik:RadCalendarDay Repeatable="Today" ItemStyle-CssClass="rcToday" /></SpecialDays></Calendar></telerik:RadDatePicker></div> <div style="width:35px; clear: both; float:left; padding-top:2px;">To:</div> <div style="float:left;"><telerik:RadDatePicker ID="ToDateInPicker" runat="server" Width="90px" ClientEvents-OnDateSelected="ToDateSelected" DbSelectedDate='<%# endDateIn %>'><DateInput Font-Size="11px" /><Calendar><SpecialDays><telerik:RadCalendarDay Repeatable="Today" ItemStyle-CssClass="rcToday" /></SpecialDays></Calendar></telerik:RadDatePicker></div> </FilterTemplate></telerik:GridBoundColumn>protected void RadGrid_Months_DataBound(object sender, EventArgs e){ foreach (GridBoundColumn col in RadGrid_Months.MasterTableView.AutoGeneratedColumns) { if(col.UniqueName != "Namn") col.Aggregate = GridAggregateFunction.Sum; }}With the previous RadEditor we could use an .aspx for a modal dialog from the toolbar. Now it seems it has to be .ascx user control, meaning all the dialogs we wrote as web pages before will not work now. Is this the case? The new radwindow still seems to use aspx’s for dialogs, so I’m curious why the ascx change for the RadEditor. I hope we can still use aspx's for dialogs, as converting them all to ascx's will be far from trivial for us.

div.RadTabStripTop_Vista .rtsLI
{
margin-right: 10px;
}
The problem is that with this space, I get my tabs in 2 lines instead of 1.
I tried to set a fixed width to each tab, but it is still changed with an inline style.
foreach (RadTab tab in rts)
{
tab.width = Unit.Pixel(115);
}
in CSS i get: style= "175px;"
I changed the rad tab strip width too.
<
telerik:RadTabStrip ID="rts" runat="server" Skin="Vista" MultiPageID="RadMultiPage1" OnClientTabSelected="onTabSelected"
SelectedIndex="0" Align="Justify" Width="700px">
It seems like the tabs are fiting their size or something.
How can I solve this?
Thanks!
My client is using RadCalendar.Net2 and it’s other family. I suppose Telerik has stopped supporting this version .We are facing following problem:
1 . If you type Jun-06-2012 or 06/06/2012 or 06-06-2012 in date control ,gets converted into July. It happens only end of the month.
According to the following Forum this seem to be a known bug in control.
What we can do in this scenario? Do we need to upgrade to new version or any small fix (workaround ) can fix this issue?
Any kind of help will be appreciated