Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
88 views
Hello,
We are using the radeditor as the field editor for some of our fields and we just noticed that when you edit a page, the editor is locked by default. If I click on the HTML mode button and back to WYSIWYG button then the control is editable again. We have recently downgraded from 5.3.2 because the production server is already running 2 other projects with 4.5.4. This issue wasn't occurring in the 5.3.2 version
Thanks
Marin Bratanov
Telerik team
 answered on 27 Feb 2014
1 answer
185 views
Hi

RadEditor - Click on Insert link - then popup is opening. We are trying to change popup header text from "Insert link" to something else. We tried using Javascript something like below on page load
function pageLoad(sender, args) {
                   $(".rwTitlebarControls em").text("new Text....");
    }


On first time click it is not showing required text. It works only on second time onward click. Please suggest solution

More info. - RadEditor is inside User Control which is getting loaded only when user drag it on page. It is on partial postback only. Attached doc has popup screen where highlighted text needs to be change.

Please suggest.

thanks,
Pradip

Ianko
Telerik team
 answered on 27 Feb 2014
8 answers
125 views
Hi,

we want to use the telerik Radeditor in our "SharePoint 2010 Enterprise Wiki" but i have big problems if i insert a webpart into a wiki-page. (I activated the editor as Website-Feature (Use RadEditor to edit List Items / Use RadEditor to edit HTML fields) )
For Example: If i insert a listview webpart and select then another view of this list - the Radeditor insert the default view and the selected view into the page.

Is there a solution for this problem? Does anyone have this problem too?

Greetings from Germany,
Andy
Ianko
Telerik team
 answered on 27 Feb 2014
3 answers
147 views
Some of our users use very low resolution on their monitors, so the button we have at the bottom (in FooterTemplate) of our RadComboBox is not visible unless they scroll down using the browser scrollbar. This works fine in IE <= 10, but in IE 11 the RadComboBox collapses whenever you click the browser scrollbar, so they cannot click the button. And I just confirmed this occurs in Firefox and Chrome as well.

I tried to setting the CloseDropDownOnBlur and EnableScreenBoundaryDetection properties to false, and also setting a very high CollapseDelay value, without effect. I'm brand new to Telerik controls, so any help would be appreciated.

<telerik:RadComboBox ID="selObjectsName" CssClass="nonavigate"
                                CollapseDelay="1000000000" CloseDropDownOnBlur="false" 
                                 
                                ShowToggleImage="false" 
                                HighlightTemplatedItems="true"
                                MinFilterLength="3"
                                OnSelectedIndexChanged="ComboBox_OnSelectedIndexChanged"
                                runat="server"
                                EnableLoadOnDemand="true"
                                AllowCustomText="true"
                                DropDownWidth="650px"
                                MaxHeight="188px"
                                ExpandDirection="Down"
                                ShowDropDownOnTextboxClick="false"
                                Style="width: 500px !important"
                                OnItemsRequested="IncrementalSearchEvent"
                                OnItemDataBound="ComboBox_ItemDataBound"
                                AutoPostBack="true"
                                EnableScreenBoundaryDetection="false"
                                CausesValidation="false" >
                                <HeaderTemplate>
                                    <table border="0" width="100%">
                                        <tr>
                                            <td width="20">
                                                  
                                            </td>
                                            <td width="90">
                                                ID
                                            </td>
                                            <td width="200">
                                                Family Name
                                            </td>
                                            <td width="190">
                                                Current Division
                                            </td>
                                        </tr>
                                    </table>
                                </HeaderTemplate>
                                <ItemTemplate>
                                    <table border="0" width="100%">
                                        <tr style="cursor: pointer">
                                            <td width="20">
                                                <img src="<%# DataBinder.Eval(Container.DataItem, "ImageUrl") %>" alt="" />
                                            </td>
                                            <td width="90">
                                                <%# DataBinder.Eval(Container.DataItem, "FamilyId")%>
                                            </td>
                                            <td width="200">
                                                <%# DataBinder.Eval(Container.DataItem, "FamilyName")%>
                                            </td>
                                            <td width="190">
                                                <%# DataBinder.Eval(Container.DataItem, "Division")%>
                                            </td>
                                    </table>
                                </ItemTemplate>
                                <FooterTemplate>
                                    <asp:Button ID="btnAddFamily" runat="server" Text="No Match Found - Add as New Family" CssClass="button-blue" Width="565px" OnClick="btnAddFamily_OnClick" CausesValidation="false" Style="margin-bottom: 5px" />
                                </FooterTemplate>
                            </telerik:RadComboBox>
Hristo Valyavicharski
Telerik team
 answered on 27 Feb 2014
1 answer
56 views
Hello

We are trying to make it possible for the user to PRINT all pageViews in a particular form. We figured the simplest option would be to use the javascript print() function but unfortunately we have been unable to display all pageviews vertically.

We are using one RadMultiPage that houses all of the dynamically created pageviews with no TabStrip.

Is there anyway to display all? 

Regards

A
Nencho
Telerik team
 answered on 27 Feb 2014
4 answers
118 views
Hi, 

The highlighted time slot in my scheduler(day/week view) always shows a 30-minute range even if the appointment is set to 8:00-11:00 as for my example.
How will I able to extend the highlight up to the End Time to make it look accurate?
Please see attachment to see example. Thanks in advance :)
web
Top achievements
Rank 1
 answered on 27 Feb 2014
2 answers
57 views
Hi, 

I as thinking of using the Reordered server event to catch the reordering of tabs and to save the change to a database. I know e.Offset is the difference between the source index and the destination index, however it is always positive, so if I drag a tab by 1 to the left or to the right, the offset is still always positive 1.

Is there any way to detect the drag direction?

The code I was planning to use is something like this:

void tabsDescriptions_Reordered(object sender, RadTabStripReorderedEventArgs e)
{
    int descriptionId = (int.Parse(e.Tab.Value));
    int destinationIndex = (e.Tab.Index + e.Offset);
    int destinationId = int.Parse(tabsDescriptions.Tabs[destinationIndex].Value);
    if (e.Offset > 0) //moving after destination
    {
        ProductDescriptionsController.MoveProductDescriptionAfter(descriptionId, destinationId, int.Parse(txtProductId.Text), System.Threading.Thread.CurrentThread.CurrentUICulture.Name);
    }
    else //moving before destination
    {
        ProductDescriptionsController.MoveProductDescriptionBefore(descriptionId, destinationId, int.Parse(txtProductId.Text), System.Threading.Thread.CurrentThread.CurrentUICulture.Name);
    }
}
Daniel
Top achievements
Rank 1
 answered on 27 Feb 2014
4 answers
137 views
Hi. i want to do some operation on mouse over on every tile in TileList. how can do this. plzzz help as soon as possible.
Shinu
Top achievements
Rank 2
 answered on 27 Feb 2014
3 answers
90 views

I am having the issue with a dropdown list so I am reporting it here but there seems to be a lot of chatter about javascript and IE 11 and Telerik controls. First, I have the latest Telerik controls, Q3 I believe. The framework that is in question is 4.5.1. I am getting a . I am getting script1015 error on drop down lists where the description is "unterminated string constant".


I see a lot of back and forth on forums about framework 4.0 has some hotfix. I tried to apply thought but my framework is newer then the hotfix so it wont let me apply them obviously.



The code works with Firefox and Chrome. So it seems to be IE11 issue but the telerik controls doesn't seem to be IE 11 compatible if I cant get it to run. Please advise what else you need from me to help investigate or please point me to anything you would like for me to try.



Thanks.

Bozhidar
Telerik team
 answered on 27 Feb 2014
0 answers
151 views
Hello team,

I m working on radtreeview latest version. my requirement is that i want to customize the css of my treeview. i tried a lot on this , but it dont give me adject what i want.
mainly which problem i faced is that:

How can i hide i images "Nodespan" even if there is not exits images in my folder.
How can i hide the border the nodes.

i have atttached my CSS file and expected treeview node image. 
Plaese help me out. its urgent for me.

CSS code

.RadTreeView_myskin{color:black;font:normal 12px/16px "Segoe UI",Arial,Helvetica,sans-serif}.RadTreeView_myskin .rtHover .rtIn{color:#363636;border:0px solid #97d7fc;background-color:#def0fc;background-image:url('TreeView/ItemHoveredBg.png')}.RadTreeView_myskin .rtSelected .rtIn{color:#363636;border:0px solid #97d7fc;background-color:#aedaf5;background-image:url('TreeView/ItemSelectedBg.png')}.RadTreeView_myskin .rtEdit .rtIn{border-color:#97d7fc;background:#ffffff}.RadTreeView_myskin .rtEdit .rtIn input{color:black;font:normal 12px/16px "Segoe UI",Arial,Helvetica,sans-serif}.RadTreeView_myskin .rtChecked,.RadTreeView_myskin .rtUnchecked,.RadTreeView_myskin .rtIndeterminate{background-image:url('Common/radFormToggleSprite.png');_background-image:url('Common/radFormToggleSpriteIE6.png')}.RadTreeView_myskin .rtLoadingIcon{background-image:url('Common/loading_small.gif')}.RadTreeView_myskin .rtSelected .rtLoadingBefore,.RadTreeView_myskin .rtSelected .rtLoadingAfter,.RadTreeView_myskin .rtSelected .rtLoadingBelow{color:#333333}.RadTreeView_myskin .rtPlus,.RadTreeView_myskin .rtMinus{background-image:url('TreeView/PlusMinus.png')}.RadTreeView_myskin .rtLines .rtLI,.RadTreeView_myskin .rtLines .rtLI .rtUL,.RadTreeView_myskin .rtLines .rtTop,.RadTreeView_myskin .rtLines .rtMid,.RadTreeView_myskin .rtLines .rtBot,.RadTreeView_myskin .rtLines .rtLast .rtTop{background-image:none}.RadTreeView_myskin_disabled .rtIn,.RadTreeView_myskin .rtDisabled .rtIn{color:#cccccc}


 div.RadTreeView_myskin .rtIn {

font-family: Segoe UI, Arial, Helvetica, sans-serif;

color: #002e66;

font-size: 13px;

line-height: 16px;

font-weight: bold;

background-color: #ffffff;

border-right-color: #0096d6;

background-image: none;

height: 0px;

border-bottom-color: #1baae3;

padding: 0px;

margin-left: 0px;

width: 10px;

text-indent: 0px;

background-position: 0% 0%;

background-repeat: no-repeat no-repeat;

}

 div.RadTreeView_myskin .rtHover .rtIn {

color: #005ccc;

background-color: #ffffff;

border-bottom-color: #97d7fc;

padding: 0px 0px 20px;

border-style: solid;

border-width: 0px;

font-family: Segoe UI, Arial, Helvetica, sans-serif;

border-right-color: #97d7fc;

border-top-color: #97d7fc;

background-position: 0% 0%;

}

 div.RadTreeView_myskin .rtSelected .rtIn {

border-right-color: #97d7fc;

border-bottom-color: #97d7fc;

border-style: solid;

border-width: 0px;

color: #005ccc;

}

 div.RadTreeView_myskin .rtMinus {

 background-image : url('TreeView/PlusMinus.png');


}

 div.RadTreeView_myskin .rtPlus {

background-image: url('TreeView/tabMenu_east_blue.png');

}
div.RadTreeView_myskin .rtLI {
    font-weight: bold;
}
div.RadTreeView_myskin .noChild {
    font-weight: normal;
}
Anshul
Top achievements
Rank 1
 asked on 27 Feb 2014
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?