Telerik Forums
UI for ASP.NET AJAX Forum
5 answers
72 views
I have a modal RadWindow which appears over the top of a lot of other controls.  The controls underneath the radwindow are activated when clicking within the RadWindow itself.  It seems to be happening when I click on a RadComboBox in the new window.  Any control directly underneath that in the parent form actually gets activated.

Ex.  Parent window has a RadComboBox, the new modal window has a RadComboBox directly above it.  Click on the RadComboBox in the modal window and the bottom combo box actually gets displayed.

Any ideas how to fix this?  Is it a z-index thing, or something else?
Georgi Tunev
Telerik team
 answered on 06 Dec 2010
5 answers
213 views
We started using SharePoint 2010 in our company, mostly as wiki. But after some time spend on it we are facing some serious issues. There are connected with original SharePoint Editor (this Ribbon style). Of course it looks nice and pretty but it's absolutely unusable.
For example if i want to select large amount of text and change style. My browser (no matter which IE, FF, Chrome) slows down, everything freezes while sharepoint is changing preview of text. I takes too much time. I couldn't find solution to this behavior so i started digging for some replacement. So i got Telerik_AJAX_Controls_For_Sharepoint2010_2010_3_1022_Trial.zip. Installation, then enabling Featues, IIS reset.

And here the problem begins, in help there are steps to take in SharePoint Designer.
1. Open a page in the Microsoft Office SharePoint Designer 2010. Select the page you wish to modify and choose Edit Page Layout.

I can't even find option to Edit Page Layout. When i took some random page, edited it in advanced mode (which is not described in help)
Added line 
<%@ Register TagPrefix="telerik" Namespace="Telerik.SharePoint.FieldEditor" Assembly="RadEditorSharePoint, Version=6.0.2.0, culture=neutral, PublicKeyToken=1f131a624888eeed" %>

I stopped at next step, i can't find <PublishingWebControls:RichHtmlField ... >  tag on page. I tried to create new one, no success.

Funny thing that when i create new page in browser, i have RadEditor control below original Ribbon Editor. After saving and editing page again - it dissapears. Only original Editor.

What am I doing wrong? How to enable this? Our company forces us to use SharePoint, it has so many options, but with it's original slow editor it's impossible to work with.

Stanimir
Telerik team
 answered on 06 Dec 2010
1 answer
97 views

Hi,

I was just wondering if there are any future plans to integrate the context menu directly into the Button control to work like the split button demo? It would be nice to not have to worry about adding the extra menu control and then hooking it up through javascript every time I want to use a split button like that.
Pero
Telerik team
 answered on 06 Dec 2010
1 answer
136 views
Hi,

We are using the trial version 5.7.3.0 for SharePoint.

We are trying to add code such as
<a href="#" onclick="functionCall()">Click here</a>
But when the page is Checked in, the onclick event is removed, and the resulting code is
<a href="#">Click here</a>

We removed the filters "RemoveScripts" and "EncodeScripts", and added AllowScripts="true" to the RadHtmlField control.

Do you have any idea on how to allow the onclick event?

Thanks in advance.

Kind regards,
Xavier Stévenne
Stanimir
Telerik team
 answered on 06 Dec 2010
3 answers
162 views
Hi

I have downloaded RadEditor version 5.8.4 (RadEditorMOSS_5_8_4_Trial (1).zip) for MOSS 2007. I tried to deploy it on my Sharepoint Server 2007 with 64 bit processor, but it is not working fine.
Both the the Publishing HTML content and the Multiline list (Enhanced HTML) content is showing the RadEditor bar but the entire column becomes uneditable. Also data in the column vanishes.
Has anyone else faced this issue?

Thanks
Deepti
Stanimir
Telerik team
 answered on 06 Dec 2010
1 answer
105 views
Hello everybody,

I'm using the radchard and I'm trying to rotate the x axis labels. When I set the RationAngle property, the labels rotate.
The problem is, that the center of the rotation is in the middle. Is it possible to change the center of rotation to the left corner?

Thanks in advance...
Nikolay
Telerik team
 answered on 06 Dec 2010
5 answers
322 views
Have a problem where the position of the drop down portion of a RadCombox is skewed by the parent css.  More specifically, position:relative.  Where can I find the css class to affect the drop down manually?  Changing the parent css is not an option.  Please help .
Ali
Top achievements
Rank 1
 answered on 06 Dec 2010
6 answers
183 views
Hello All,

In my RadGrid, I have a template column of checkbox .
- If any checkbox is checked  then click "delete" button to delete that row (just change status from 'Active' to 'Inactive', not delete that row from database),
  the status of that rows must changed to 'Inactive' (First time, All of rows have 'Active' Status)

In Web controls I can code but in RadControl I can't because of I've never used these controls before.

Plz help me..

This is my code in aspx.vb
------------------------------------------------------------------------------------------------------
Protected Sub btnMultipleRowDelete_Click(ByVal sender As Object, ByVal e As EventArgs)
Dim i As Integer = 0
For Each row As GridViewRow In GridView1.Rows
Dim MatId As String = Convert.ToString(GridView1.DataKeys(row.RowIndex).Value)
Dim checkbox As CheckBox = CType(row.FindControl("CheckBox1"), CheckBox)
If checkbox.Checked Then
i = i + 1
Dim a As String
a = GridView1.DataKeys(row.RowIndex).Values("MatStatus").ToString()

SqlMaterial.UpdateCommand = "Update Material SET [MatStatus] = 'Inactive' Where MatId ='" + MatId + "'"
SqlMaterial.Update()

Dim sb As New StringBuilder
sb.Append("<script type='text/javascript' language='javascript'>")
sb.Append("alert('Delete Complete');")
'sb.Append("document.location ='manageMatTypeData.aspx';")
sb.Append("</script>")
Page.ClientScript.RegisterStartupScript(Page.GetType, "RedirectScript", sb.ToString)
End If

Next row
If (i = 0) Then
Page.ClientScript.RegisterStartupScript(Page.GetType, "RedirectScript", "<script language='javascript'>alert('Please select the row you want to delete');</script>")

End If

End Sub
-------------------------------------------------------------------------------------------
Thanks very much,
Koi
Koi
Top achievements
Rank 1
 answered on 06 Dec 2010
1 answer
70 views
hide expand collapse as creates problem in export with GridTableView.
Princy
Top achievements
Rank 2
 answered on 06 Dec 2010
6 answers
761 views
How to bind content in radeditor inside the gridview?
Im using the code below but it doesnt work.

<telerik:RadEditor ID="radEditorID run="server" EditModes="Design" Skin="WebBlue" ToolsFile="Telerik/EditorToolsFile.xml"  Height="80px" Width="450px" >                                           
                        <Content>'<%# Bind("Customer_Name") %>'</Content>
</telerik:RadEditor>       

This is the error that is throwing.
A call to Bind must be assigned to a property of a control inside a template.   at System.Web.UI.ControlBuilder.AppendSubBuilder(ControlBuilder subBuilder)
   at System.Web.UI.TemplateParser.AppendSubBuilder(ControlBuilder builder, ControlBuilder subBuilder)
   at System.Web.UI.TemplateParser.ProcessCodeBlock(Match match, CodeBlockType blockType, String text)
   at System.Web.UI.TemplateParser.ParseStringInternal(String text, Encoding fileEncoding)
   at System.Web.UI.TemplateParser.ParseString(String text, VirtualPath virtualPath, Encoding fileEncoding)



I found some posting in the forum but I think this is the old radeditor for the prometheus theres no content property inline.

<telerik:RadEditor ID="RadEditor1" Content=' <%# Bind("ShortDescription") %>'  runat="server"></telerik:RadEditor>

http://www.telerik.com/community/forums/thread/b311D-bdeceh.aspx


Jayesh Goyani
Top achievements
Rank 2
 answered on 06 Dec 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?