Telerik Forums
UI for ASP.NET AJAX Forum
8 answers
140 views

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;
                }
            }
        }

I then see an 'unexpected error has occurred' and the Logs contain the following messages:
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)

If I'm way out in left field with this I'd appreciate any advice.
Rumen
Telerik team
 answered on 04 Jun 2012
4 answers
203 views
Hello,
Am using Rad Window to show Appointment details by click on Rad Scheduler Appointment.But Problem is,window is Opening in every Post back.I want to open this in only click event. And can i close window,when Page is Post backs.

Thanks And Regards
N.Vishnu Vardhan Reddy
Genus
Top achievements
Rank 1
 answered on 04 Jun 2012
3 answers
132 views
Hello,
i have a problem that i dont know how to solve.
I have some date picker isndie TemplateFilter of a grid that worked perfectly in previous version of telerik 2012.1.215.35 and just replacing the DLLs to the new version (2012.1.411.35) the width of the telerik control is not working anymore. I simply can't change the width of the radDatePicker controls nomatter what i do. I switched back to older version (2012.1.215.35) and the width worked perfectly again.

AGAIN: I specify that by simply copying the old DLLs of telerik over the new ones in my project sovled the WIDTH problem. Is there anything i should know about the new version that breaks my design ?
Also, i'm using IE 9.0.8112.16421, but inside the project i use this to force IE8 rendering:
<meta http-equiv="X-UA-Compatible" content="IE=8" />

However, the width problem with the new version is also on Firefox and not only in IE

The code is preaty simple:
<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>
Vasil
Telerik team
 answered on 04 Jun 2012
2 answers
254 views
Hello,

Im trying to get the sums shown in the footer of my grid. Works fine but when doing it using the aggregate functions it adds the text "SUM: " infront of the number.

How do i remove this?

Code im using to set the footer sums

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;
    }
}
Robert
Top achievements
Rank 1
 answered on 04 Jun 2012
11 answers
478 views

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.

Rumen
Telerik team
 answered on 04 Jun 2012
1 answer
115 views
Hi,

I have a rad tab strip on my page.
I want to have a space between the tabs, so I used this line of code as posted in your forum, and it worked:

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!


Kate
Telerik team
 answered on 04 Jun 2012
0 answers
168 views
HI,
I am using 2 radlistboxes for item transfer,in page load I'm binding items in source listbox from data base dynamically using linq query.
Please find its screen shot in attachment file.
But i want to display items like tree view mode.if parent item extend(click on "+" button) then should be view its child items and collapse(if click on "-" button).
Please help.

Thanks & Regards,
Santhosh Naik
Santhosh
Top achievements
Rank 1
 asked on 04 Jun 2012
3 answers
101 views
Hi,

I have read other places in the forum that you guys have gotten a lot of request for a download control. Similar to the Upload but for downloading large files.

At the time of that Forum post 2006 you hadn't talk about it or set a date yet. Do you know if you guys are still planning to do this control? and if so possible time-frame as many of us seem to be anxious for it.

Keep up the great work on the controls :)
Genady Sergeev
Telerik team
 answered on 04 Jun 2012
0 answers
182 views

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

Paritosh Singh
Top achievements
Rank 1
 asked on 04 Jun 2012
1 answer
239 views
i tried to set radlistbox hight 100% instead of fixed hight doesn't work. How to set radlistbox hight 100%?
Genady Sergeev
Telerik team
 answered on 04 Jun 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?