Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
27 views
Hello All!

Im new to tekerik products and am currently trying to figure out how to remove RadMenu items from my search index in MOSS 2007.

Any time a search is done with text that appears on the RadMenu, it returns results for every page that the menu is displayed on.  I would like to prevent RadMenu lists/text from being indexed.

Any ideas would be helpfull.

Thanks!
Vesko
Top achievements
Rank 2
 answered on 03 Dec 2009
1 answer
67 views
Is it possible to work with server.execute and RadAjaxManagerProxy?

Default.aspx has the code like

<

 

form id="form1" method="post" runat="server">

 

<

 

asp:ScriptManager ID="ScriptManager" runat="server" />

 

<

 

telerik:RadAjaxManager ID="AjaxManager1" runat="server">

 

</

 

telerik:RadAjaxManager>

server.execute("test.aspx")

 

</

 

form>

 



This page is using a server.execute("test.aspx")

test.aspx page

<

 

telerik:RadAjaxManagerProxy ID="AjaxManagerProxy2" runat="server">

 

 

<AjaxSettings>

 

 

<telerik:AjaxSetting AjaxControlID="RadMenu1">

 

 

<UpdatedControls>

 

 

<telerik:AjaxUpdatedControl ControlID="RadMenu1" />

 

 

</UpdatedControls>

 

 

</telerik:AjaxSetting>

 

 

</AjaxSettings>

 

</

 

telerik:RadAjaxManagerProxy>

 

 

<

 

telerik:RadMenu ID="RadMenu1" runat="server" Style="z-index: 2;" />


Anyone has an idea how to run the radmanagerproxy on this page properly ? (Page coding is at VB)

Iana Tsolova
Telerik team
 answered on 03 Dec 2009
1 answer
170 views
My web page has a Radgrid with a RadComboBox and other controls inside EditItemTemplate tags.
When the RadComboBox OnSelectedIndexChanged is fired in edit mode, i can find other items in edit mode and do things with them.
I use Radgrid.EditItems[0].ItemIndex to find the edit index then i go from there however;

In insert mode Radgrid.EditItems[0].ItemIndex doesnt work hence i cannot find controls.

How can i find controls in insert mode on RadComboBox OnSelectedIndexChanged?

Princy
Top achievements
Rank 2
 answered on 03 Dec 2009
7 answers
165 views
Hello,

In my rad scheduler i've set the working hours as 9 AM - 5 PM. But when i add an event exceeding 5 PM, say 4 PM - 8 PM, i'm getting an arrow mark at the bottom of the event. So what does the arrow mark point to and how can i change its link or how can i hide it from getting displayed? Here is the screen shot.

http://yfrog.com/bgradschedulerarrowj

Note: I'm using it in SharePoint and when i click the arrow it is taking me to the master page gallery. The URL of the arrow is pointing to #.

Thank you.
NLV
Top achievements
Rank 1
 answered on 03 Dec 2009
2 answers
99 views
Hi All,

I have a grid with master table, and this grid have a detailed table. I enabled client side selection (EnableDragToSelectRows="true").
The problem is when I try to select detail table rows with draging It selects the rows withing the drag range along with mastertable rows that are below the expanded master table row ( eventhough they are not in drag range).

Please help me out with this scenario.

Thanks,

Kalpesh
Kalpesh Patel
Top achievements
Rank 1
 answered on 03 Dec 2009
1 answer
95 views
Hi,

I have trouble to access the controls which are in template column header.  Please advice how I can get the controls.

Cheers
Shinu
Top achievements
Rank 2
 answered on 03 Dec 2009
2 answers
317 views
Hi,

I have a RADTreeView which initiates an AJAX request using the AJAX manager. This will not postback and thus not execute the Page_Load event handler, correct?

How can I identify then, when the page is not being posted back to the server but an ajax request has been raised by the user clicking an item in the treeview?

Thanks
Carl
Top achievements
Rank 1
 answered on 03 Dec 2009
4 answers
277 views
I'm trying to shrink the ToolBar height to match the height of my button images (*.GIF files). The RadToolBar Height property is buggy and doesn't work properly. My buttons are only 9 pixels high so I should be able to shrink the ToolBar height by about 30%. I have tried all the CSS/Style examples on the forums and none of them work correctly.

 I want to shrink the height to the minimum possible given my 9 pixel high button images. I do not want to apply this height shrinking to all tool bars on the page. Only some of them. I want to leave the rest of the tool bars at the stock height. I'm running Visual Studio 2008 SP1 with Telerik 2009 Q3, IE8 and Firefox. I'm currently using the Office 2007 Skin but it would be nice if the shrinking solution worked with all skins without modification.

Here is my test page. I have attached the button GIF files.

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="TelerikWebForm.aspx.cs" Inherits="TelerikWebForm" %> 
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
 
<html xmlns="http://www.w3.org/1999/xhtml">  
<head runat="server">  
    <title></title>  
    <telerik:RadStyleSheetManager id="RadStyleSheetManager1" runat="server" /> 
</head> 
<body> 
    <form id="form1" runat="server">  
    <telerik:RadScriptManager ID="RadScriptManager1" runat="server">  
        <Scripts> 
            <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.Core.js" /> 
            <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQuery.js" /> 
        </Scripts> 
    </telerik:RadScriptManager> 
    <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">  
    </telerik:RadAjaxManager> 
    <div> 
        <br/><br/><br/> 
        <telerik:RadToolBar ID="rtbRecNavCtl" Runat="server">  
            <Items> 
                <telerik:RadToolBarButton runat="server"   
                    ImageUrl="RecNavFirst.gif" CausesValidation="False" Value="F">  
                </telerik:RadToolBarButton> 
                <telerik:RadToolBarButton runat="server"   
                    ImageUrl="RecNavPrev.gif" CausesValidation="False" Value="P">  
                </telerik:RadToolBarButton> 
                <telerik:RadToolBarButton runat="server"   
                    ImageUrl="RecNavNext.gif" CausesValidation="False" Value="N">  
                </telerik:RadToolBarButton> 
                <telerik:RadToolBarButton runat="server"   
                    ImageUrl="RecNavLast.gif" CausesValidation="False" Value="L">  
                </telerik:RadToolBarButton> 
            </Items> 
        </telerik:RadToolBar> 
        <br/><br/><br/> 
    </div> 
    </form> 
</body> 
</html> 

Thank You,
Greg
Greg
Top achievements
Rank 1
 answered on 02 Dec 2009
2 answers
121 views
protected void Page_Load(object sender, EventArgs e)
        {
             RadToolBarItem itemToCheck = toolbarNav.FindItemByValue("Trucks");
              itemToCheck.Checked = false;
        }

Checked is not there. Why isn't it there? Is there something else I should be using?
Boone
Top achievements
Rank 2
 answered on 02 Dec 2009
2 answers
166 views
Hi all,

I have added node templates using the following code:

<NodeTemplate> 
                <img alt="node type" src="/Media/help_16.png" class='nodeClass<%# Eval("NodeTypeId") %>' /> 
                <asp:Label ID="text" runat="server"><%# Eval("Title") %></asp:Label> 
            </NodeTemplate> 

this works fine on all of my nodes when they are loaded remotely, however when i want to add a new node on the client-side using something like this:

currentNode.get_nodes().add(newNode); 

it will add the node, but it will ignore the template.

is this a bug, or am i missing something?

currentNode doesn't have access to the controls collection that you have when you add a node server side, nor can i find a way to add a template when adding a node to the currentNode.get_nodes() array in javascript.

any thoughts would be greatly appreciated.

thanks

Nick

nick b-w
Top achievements
Rank 1
 answered on 02 Dec 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?