Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
96 views

I am using Telerik RadTreeView and I am adding Nodes programatically with the following code

     subnode.NavigateUrl = "javascript:selectedNode('" + subnode.Text + "','" + "content" + "','" + myDataReader2["moduleId"] + "')";

RadTreeView1.Nodes.Add(subnode);

Thus when i am clicking the node then the javascript function selectedNode is executed. But when I am changing the selected node programmatically by using a button for ex:

 node.Focus();
 node.Selected = true; 

The javascript is not executed. Is there any way to execute its navigateurl property programmatically?.

Boyan Dimitrov
Telerik team
 answered on 21 Nov 2012
4 answers
123 views
I have an area in my toolbar that has a menu in it. When the user hovers over the menu I wanted an area to appear allowing them to configure some options.

I created a template for the menu subitem and placed some RadComboBox's on it.

The problem is that if the user clicks one of the combo boxes and begins to scroll down the mouse is technically outside the bounds of the menu item so the template disappears leaving just combobox content displaying.

Is there a way to make the menuitem sticky somehow or is there a better way to acheive my goal?
Tom
Top achievements
Rank 1
 answered on 21 Nov 2012
8 answers
159 views
Hi, im using a RadNotification in a user control (ascx). The control is loaded dynamically on the page either in a placeholder or in a RadTabStrip (both methods are experiencing the issue). It seems I cant define any property of the RadNotification in code-behind except at Page Loading/Init (I try to set the Title, Text and ContentIcon based on some conditions before calling .Show() ). I also tried fixing the user control on the page (not dynamically loaded) and still same issue.

 I try the same on another page where RadNotification is fixed on the page (not in user control) and then it works good.

Any idea?

TIA
Marin Bratanov
Telerik team
 answered on 21 Nov 2012
1 answer
100 views
is there a way to make default Edit mode HTML View 
Rumen
Telerik team
 answered on 21 Nov 2012
3 answers
62 views
hi guys
we got a problem with the Drag'n'Drop / Move functionality of RadFileExplorer in IE9 if the document mode is set to something else than IE9 standards. I've tested it with IE8 and that seems to work...
the problem is just happening in IE9.
We try to use the RadFileExplorer on SharePoint 2010 and there is a meta tag in the masterpage that defines the document mode to IE8:
<meta http-equiv="X-UA-Compatible" content="IE=8"/>
We cannot adjust this value to 9 or just remove it, because then the SharePoint 2010 has other problems.

You can reproduce this behaviour also on your FileExplorer demos with IE9.
http://demos.telerik.com/aspnet-ajax/fileexplorer/examples/client-sideapi/clientsideevents/defaultcs.aspx
Set the Document Mode in the developer tools to 'Internet Explorer 8 or 7' and try to drag'n'drop / move a file into another folder in the tree and nothing happens. after that, client side functionalities like changing a folder aren't working also.

Could you please help me with this?
Thanks in advance!
Matthias
Vessy
Telerik team
 answered on 21 Nov 2012
1 answer
24 views

One of your clients is complaining that there is no sixth level heading in In paragraphs style drop down (h6 tag)
Rumen
Telerik team
 answered on 21 Nov 2012
1 answer
69 views

All URLs when copied in the design view of the RadEditor become fully qualified. This happens in IE, Chrome, and Firefox. 


Steps to reproduce:

 

  1. In design view, copy existing link.
  2. Paste that link in design view


I was able to reproduce this on your demo page http://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx

 

Rumen
Telerik team
 answered on 21 Nov 2012
1 answer
98 views
Hey guys,

I have a question concerning the tableWizard's style  itself, not concerning the CSS selector for a table, placed into the ContentArea of the Editor.
I have created a custom skin for my Editor and everything is working fine, until I open the Table Wizard. It has obviously completely lost its style('s). Can anybody tell me, what I have to consider, when I create a custom skin in order to keep the Table Wizard look as usual? Da I have to copy certain default styles to my Skin-File and if so, to where?

My radEditor's contentArea is rendered in Iframe-Mode, the skind propertty is set to the skin name and the EnableEmbeddedSkins-property is set to false

Best regards!
Peter

here is a link to the obviously totally broken style:

LINK
Rumen
Telerik team
 answered on 21 Nov 2012
2 answers
58 views
We are using Telerik RadControls 2012 Q3.
In our project we are also using JQuery-UI tabs and we have the following html structure:

<div id="tabs">
    <ul>
        <li><a href="#tabs-1">Tab1</a></li>
        <li><a href="#tabs-2">Tab2</a></li>
    </ul>
    <div id="tabs-1">
            Tab1 Content
    </div>
    <div id="tabs-2">
             <iframe width="100%" height="700px" src="Editor.aspx" scrolling="no" frameBorder="0" id="IframeArticleEditor" />
    </div>
 </div>

RadEditor is included in Editor.aspx.
Obviously, when the page is loaded, tab2 with RadEditor is hidden.

After page is loaded, when we enable Tab2, toolbar layout in RadEditor is crashed.
Also, RadEditor layout is crashed if you try to change its size by moving right bottom corner.
This issue occurs in IE9 only, Chrome and Firefox works well.

Attached hereto please find a test project.

Rumen
Telerik team
 answered on 21 Nov 2012
3 answers
177 views
I have a RadGrid that I am using in a web application for a client. The issue I am facing presently is that when the horizontal scrolling reaches the last column on the right of the grid, all of the cells in the grid resize (growing in both width and height). I have some screen shots hosted here:

1) Far Left
2) Second to Last Column
3) Last Column (every cell resizes)

I have specified the following settings when I bind my data source in the code behind:
 AutoGenerateColumns = true;
 ClientSettings.Scrolling.AllowScroll = true;
 ClientSettings.Scrolling.SaveScrollPosition = true;
 ClientSettings.Scrolling.FrozenColumnsCount = 5;
 ClientSettings.Scrolling.UseStaticHeaders = true;
 Width = Unit.Pixel(1200);
 MasterTableView.TableLayout = GridTableLayout.Fixed;

And in my ColumnCreated event I have the following code:
if (e.Column.UniqueName == "ID")
    e.Column.Display = false;
 
e.Column.HeaderStyle.HorizontalAlign = HorizontalAlign.Center;
e.Column.HeaderStyle.Width = Unit.Pixel(40);
 
if (e.Column.UniqueName == "Process")
    e.Column.HeaderStyle.Width = Unit.Pixel(100);
if (e.Column.UniqueName == "Act/Dept")
    e.Column.HeaderStyle.Width = Unit.Pixel(300);
if (e.Column.UniqueName == "Visit")
    e.Column.HeaderStyle.Width = Unit.Pixel(80);

Also, I have overridden the scroll bar's CSS such that:
 margin-right: 0px !important;

However this behavior is observed with and without this.

How can I resolve the cell resizing behavior that I am seeing?
Pavlina
Telerik team
 answered on 21 Nov 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?