Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
120 views
Hi,

I can get de selected items on a fileexplorer, from the server?

Thanks
Fiko
Telerik team
 answered on 26 Aug 2009
7 answers
248 views
Hi

I have a strange problem with RadSplitter:

A RadSplitter has a RadSlidingZone with a RadSlidingPane
which contains an asp:RadioButtonList and asp:CheckBox

1) I click to slide out the RadSlidingPane
2) I change the selected state of the RadioButtonList
3) I dock the RadSlidingPane

The RadioButtonList immediately reverts back to it's original selected state

(Changing the CheckBox state is fine)
(I'm using the latest ASP.NET Ajax controls)

I've simplified the ASPX code to that below:

Any help appreciated...

Regards

Martin

----------------------------------------------------------
-- ASPX code
----------------------------------------------------------


        <telerik:RadSplitter ID="RadSplitter1" runat="server" Height="660px" Width="800px" Skin="Telerik" >

            <telerik:RadPane ID="RadPaneLeft" runat="server" Width="22px" Scrolling="None" Height="100%" >

                <telerik:RadSlidingZone ID="RadSlidingZone1" runat="server" Width="22px"
                        BackColor="White" Height="100%" SlideDirection="Right" SlideDuration="10" ClickToOpen="True" >

                    <telerik:RadSlidingPane ID="RadSlidingPaneOrderBy" runat="server"
                        Title="Order By" Width="300px" TabView="TextOnly" >

                        <asp:RadioButtonList ID="RadioButtonDirection" runat="server" RepeatDirection="Horizontal"  >
                            <asp:ListItem Text="Asc" Selected="True" ></asp:ListItem>
                            <asp:ListItem Text="Desc"></asp:ListItem>
                        </asp:RadioButtonList>

                        <asp:CheckBox ID="CheckBoxListPageBreak" runat="server" Text="Page break on group" Checked="false" />

                    </telerik:RadSlidingPane>
                </telerik:RadSlidingZone>
            </telerik:RadPane>

            <telerik:RadSplitBar ID="RadSplitBar1" runat="server" EnableResize="False" Visible="True" />

            <telerik:RadPane ID="RadPaneRight" runat="server">
            </telerik:RadPane>

        </telerik:RadSplitter>
Martin
Top achievements
Rank 1
 answered on 26 Aug 2009
1 answer
48 views
I have dropped a scheduler control onto my UserControl.   Everything looks good at design time but when I run the project all I see is text for all the links and data on the scheduler.

I have tried nesting the scheduler in the RadAjaxPanel as well as <div> tags with no luck.  

I had this same problem before with the tab control but was fixed by slapping it in an AjaxPanel...   PLEASE HELP!!
Peter
Telerik team
 answered on 26 Aug 2009
1 answer
93 views

Hi

Issue in Radtoolbar Q2 2009 version, Isseparator is not working properly

Yana
Telerik team
 answered on 26 Aug 2009
2 answers
111 views
Is it possible to center the inlineinserttemplate/inlineedittemplate?  The default positioning over the day itself is problematic for some users, and I was hoping to force the positioning of the inline templates.
Peter
Telerik team
 answered on 26 Aug 2009
2 answers
185 views

I have a grid with the following column

<telerik:GridCheckBoxColumn UniqueName="Active" DataField="Active" HeaderText="Active"  > 
                        </telerik:GridCheckBoxColumn> 

The problem is in the grid for the filter it shows a text box with the filter icon next to it.  I want the filter to be a checkbox, just like the fields are in the grid.  Why do the filter not match the rest of the grid
Eric Klein
Top achievements
Rank 1
 answered on 26 Aug 2009
1 answer
68 views
Is anyone else out there having issues with even a blank brand new appointment loading really really really slowly?  I've tried the optimization tips of using regular text boxes instead of telerik input boxes, but am still having major time delays.
Peter
Telerik team
 answered on 26 Aug 2009
1 answer
67 views
Hi All
I am trying to build a user controls todisplay a very long Tree so i Wrap the Tree inside RadComboBox
and  every thing worked just fine  but when I Switch from English to Arabic I Noticed that the Plus Sign is disappeded
I compare the Html for both Arabic and English via ViewSource in IE and they both are the Same  and a fter long time searching and trail and error we found that if We  remove the  http://www.w3.org/TR/html4/loose.dtd 
from the Page Header the Tree work fine in both arabic and English but this cause a big problim with the Menus
if any one have any Idea what cause this I will be very greatful
following are the code for the User control Html 

I am Using VS2008 , Windows Server 2008 and and SharePoint2007 as Deployment Enviroment

the user controls
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

 

 

<%

@ Control Language="C#" AutoEventWireup="true" CodeBehind="ucTimeFilter.ascx.cs"

 

 

Inherits="PMS.UI.ucTimeFilter" %>

 

<%

@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>

 

<

 

script language="javascript" type="text/javascript">

 

 

function ShowTooltip(element) {

 

 

if (element.childNodes[2] != null) {

 

element.title = element.childNodes[2].value;

}

}

 

var div1 = document.getElementById("dvTreeView");

 

div1.onclick = StopPropagation;

 

function StopPropagation(e) {

 

 

if (!e) {

 

e = window.event;

}

e.cancelBubble =

true;

 

}

 

function nodeClicking(sender, args) {

 

 

var comboBox = $find("<%= rcbTimePath.ClientID %>");

 

 

var node = args.get_node()

 

comboBox.set_text(node.get_text());

comboBox.trackChanges();

comboBox.get_items().getItem(0).set_value(node.get_text());

comboBox.commitChanges();

comboBox.hideDropDown();

} 

 

function comboLoad(sender, eventArgs) {

 

sender.set_text(sender.get_items().getItem(0).get_value());

} 

 

function OnClientDropDownOpenedHandler(sender, eventArgs) {

 

 

var tree = sender.get_items().getItem(0).findControl("rtvTime");

 

 

var selectedNode = tree.get_selectedNode();

 

 

if (selectedNode) {

 

selectedNode.scrollIntoView();

}

}

 

</

 

script>

 

<

 

table width="100%">

 

 

<tr>

 

 

<td style="width: 20%">

 

 

<asp:Label ID="lblYear" Text="<%$Resources:PMS, Year %>" runat="server" CssClass="CssHeader" />

 

 

</td>

 

 

<td>

 

 

<telerik:RadComboBox ID="rcbTimePath" runat="server" Height="140px" Width="215px" 

 

 

ShowToggleImage="True" Skin="WebBlue" OnClientLoad="comboLoad" OnClientDropDownOpened="OnClientDropDownOpenedHandler"

 

 

Style="vertical-align: middle;" EnableViewState="true" EnableItemCaching="false">

 

 

<ItemTemplate>

 

 

<div id="dvTreeView" runat="server">

 

 

<asp:TreeView ID="TreeView1" runat="server" ImageSet="Msdn"

 

 

NodeIndent="10" ShowLines="True" DataSource="XMLTimePath">

 

 

<ParentNodeStyle Font-Bold="False" />

 

 

<HoverNodeStyle BackColor="#CCCCCC" BorderColor="#888888" BorderStyle="Solid" Font-Underline="True" />

 

 

<SelectedNodeStyle BackColor="White" BorderColor="#888888" BorderStyle="Solid" BorderWidth="1px"

 

 

Font-Underline="False" HorizontalPadding="3px" VerticalPadding="1px" />

 

 

<NodeStyle Font-Names="Verdana" Font-Size="8pt" ForeColor="Black" HorizontalPadding="5px"

 

 

NodeSpacing="1px" VerticalPadding="2px" />

 

 

<DataBindings>

 

 

<asp:TreeNodeBinding DataMember="YearName" TextField="text" ValueField="Value" />

 

 

<asp:TreeNodeBinding DataMember="HalfYearName" TextField="text" ValueField="Value" />

 

 

<asp:TreeNodeBinding DataMember="QuarterName" TextField="text" ValueField="Value" />

 

 

</DataBindings>

 

 

</asp:TreeView>

 

 

<telerik:RadTreeView ID="rtvTime" runat="server" OnClientNodeClicking="nodeClicking"

 

 

EnableDragAndDrop="false" DataSourceID='XMLTimePath' OnNodeClick="rtvTime_NodeClick"

 

 

MaxDataBindDepth='<%# FileMaxDataBindDepth %>'>

 

 

<DataBindings>

 

 

<telerik:RadTreeNodeBinding DataMember="YearName" TextField="text" ValueField="Value" />

 

 

<telerik:RadTreeNodeBinding DataMember="HalfYearName" TextField="text" ValueField="Value" />

 

 

<telerik:RadTreeNodeBinding DataMember="QuarterName" TextField="text" ValueField="Value" />

 

 

</DataBindings>

 

 

<CollapseAnimation Type="None" Duration="0" />

 

 

<ExpandAnimation Type="None" Duration="0" />

 

 

</telerik:RadTreeView>

 

 

</div>

 

 

</ItemTemplate>

 

 

<ExpandAnimation Duration="0" Type="None" />

 

 

<CollapseAnimation Duration="0" Type="None" />

 

 

<Items>

 

 

<telerik:RadComboBoxItem Text="" />

 

 

</Items>

 

 

<CollapseAnimation Type="None" Duration="0"></CollapseAnimation>

 

 

</telerik:RadComboBox>

 

 

<asp:XmlDataSource ID="XMLTimePath" runat="server" XPath="/Time/YearName" EnableCaching="false">

 

 

</asp:XmlDataSource>

 

 

</td>

 

 

</tr>

 

</

 

table>

 

 

 

 

 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

 

jafar
Top achievements
Rank 1
 answered on 26 Aug 2009
2 answers
78 views
In IE when justifying left/right/center a specific highlighted area, the hole paragraph gets justify, this is not an issue in other browsers, however, it seems each line needs to be paragraph in order for the functionality to work properly (only in IE), other browsers seem to work correctly, any input on how to make the behavior consistent across browsers would be greatly appreciated.
Rumen
Telerik team
 answered on 26 Aug 2009
6 answers
506 views
Hi there,

In the moment that you insert a row on RadGrid, it is possible to obtain a keyvalue of that row ?

Thanks any help.

Marcio Nascimento
Marcio Nascimento
Top achievements
Rank 1
 answered on 26 Aug 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?