Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
84 views
I would like to use a radtreeview as a Question and Answer List the parent is the question and the child nodes are the answers to the question. I need only one child node checkable under each parent node Anyone have an idea of how to make this happen. Attached is a screenshot of the treeview.
Shinu
Top achievements
Rank 2
 answered on 30 Sep 2010
1 answer
376 views
Hi,

If I select any item from the combobox, the whole screen is refreshing(flicker)
so is there any way we can prevent whole page post back when i select item from RadComboBox?

Shinu
Top achievements
Rank 2
 answered on 30 Sep 2010
5 answers
251 views
I have a combobox bound to an objectdatasource, when I select an item and move to a new control the combo box resets to unlected. I created a form with 3 comboboxes, 1 manually populated, 1 bound to na objectdatasource and 1 bound to a sqldatasource, only the object bound combobox exhibits this behaviour.
below is my aspx code, there is no code behind

<%@ Page Title="" Language="vb" AutoEventWireup="false" MasterPageFile="~/master_default.Master" CodeBehind="Testing.aspx.vb" Inherits="LearningDepot.Testing" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">  
 
    <telerik:RadComboBox ID="RadComboBox1" runat="server" DataSourceID="ODSLookup"
        DataTextField="LookupKey" DataValueField="ID">
<CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation>
    </telerik:RadComboBox>
       
    <telerik:RadComboBox ID="RadComboBox2" runat="server">
        <Items>
            <telerik:RadComboBoxItem runat="server" Text="Cell" Value="1" />
            <telerik:RadComboBoxItem runat="server" Text="Home" Value="2" />
            <telerik:RadComboBoxItem runat="server" Text="Office" Value="3" />
            <telerik:RadComboBoxItem runat="server" Text="Fax" Value="4" />
        </Items>
<CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation>
    </telerik:RadComboBox>
   
    <telerik:RadComboBox ID="RadComboBox3" runat="server" DataSourceID="SDSLookup"
        DataTextField="LookupKey" DataValueField="LookupId">
<CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation>
    </telerik:RadComboBox>

    <telerik:RadTextBox ID="RadTextBox2" runat="server">
    </telerik:RadTextBox>

    <asp:ObjectDataSource ID="ODSLookup" runat="server"
        SelectMethod="DataList" TypeName="LearningDepotAPI.Lookups">
        <SelectParameters>
            <asp:Parameter DefaultValue="PhoneType" Name="lookupGroup" Type="String" />
            <asp:Parameter DefaultValue="1" Name="recordStatus" Type="Object" />
            <asp:Parameter DefaultValue="1" Name="SortBy" Type="Object" />
        </SelectParameters>
    </asp:ObjectDataSource>

    <asp:SqlDataSource ID="SDSLookup" runat="server"
        ConnectionString="<%$ ConnectionStrings:pmbLD_DB %>"
        SelectCommand="pmbLDsp_COLL_Lookup_ByKey" SelectCommandType="StoredProcedure">
        <SelectParameters>
            <asp:Parameter DefaultValue="PhoneType" Name="LookupGroup" Type="String" />
            <asp:Parameter DefaultValue="1" Name="StatusFlag" Type="Int32" />
        </SelectParameters>
    </asp:SqlDataSource>
</asp:Content>

<asp:Content ID="Content3" ContentPlaceHolderID="ContentPlaceHolder2" runat="server">
</asp:Content>

Mike
Top achievements
Rank 1
 answered on 29 Sep 2010
4 answers
141 views
Hi,
 there is a good example with related combos: http://demos.telerik.com/aspnet-ajax/combobox/examples/functionality/multiplecomboboxes/defaultvb.aspx
I can't handle with pre-selection in last Combobox. For example if I choose Europe as continent, then France as country I would like to pre-select Paris as a city. I would know I wanted select Paris during Cities binding, becasue some indicator tells me about it during SELECT statement.

Is it possible somewhere in code?

I tried hard coding add RadComboBox3.SelectedIndex = "1" after DataBind() but with no result

Protected Sub LoadCities(ByVal countryID As String)
            Dim connection As New SqlConnection(ConfigurationManager.ConnectionStrings("TelerikConnectionString").ConnectionString)

            'select a city based on the countryID
            Dim adapter As New SqlDataAdapter("SELECT * FROM Cities WHERE CountryID=@CountryID ORDER By Name", connection)
            adapter.SelectCommand.Parameters.AddWithValue("@CountryID", countryID)

            Dim dt As New DataTable()
            adapter.Fill(dt)

            RadComboBox3.DataTextField = "Name"
            RadComboBox3.DataValueField = "ID"
            RadComboBox3.DataSource = dt
            RadComboBox3.DataBind()
        End Sub


Thanks in advance for your help
ToMa
Top achievements
Rank 1
 answered on 29 Sep 2010
2 answers
184 views
Hi all,

I'm using the filter for my Grid. Everything's good.
But I'm not happy with the Filter Textbox which makes my Grid wider.
Do you know how to make it smaller?

Thanks!

Andy.
Andy
Top achievements
Rank 1
 answered on 29 Sep 2010
2 answers
145 views
Hi all!

I would like to change the filter textbox because it makes my RadGrid wider
Does anyone know how to do it?

Thanks!

Andy.
Andy
Top achievements
Rank 1
 answered on 29 Sep 2010
2 answers
170 views
I'm trying to create a menu such that the second level items are checkboxes and added programmaticly.
Here is what I would like to create, an options menu such that it shows it show Export and Columns.  Then Columns will show the checkbox items which need to be created dynamically.

Options
 - Export
 - Columns
   -- CheckBox Item 1
   -- CheckBox Item 2

Jerome
Top achievements
Rank 1
 answered on 29 Sep 2010
3 answers
128 views
I have a combobox that uses load on demand.  When an item is selected, the selectedindexchanged event populates the second combobox.  When an item is selected in the 2nd combo box (everything works fine up to this point) and then the combobox loses focus, immediatetly the 2nd combobox reverts to the item at the beginning of the list and not the selected item.
Simon
Telerik team
 answered on 29 Sep 2010
2 answers
267 views
I have some drop down menus (based on css and javascript) which I want to come over the radwindows.
In previous version(2009_3_1208), this was working:

<telerik:radwindowmanager runat="server"                              
                            style="z-index:0"

However, in "Q1 2010" version, its not working. Also the z-index changed from 3000 to 100,000 :(
Raheel Ashraf
Top achievements
Rank 1
 answered on 29 Sep 2010
1 answer
127 views
I have a whole slew of 'appointments' that I need to display. And timeline seems to be the way to do it except that I want to have it that each appointment is on a different line. So if I have an appt on the 29th, and then another on the 30th, I want them to appear on different lines.

Is that something the scheduler can do or do I have to build it myself?

TIA - Jeff.
Veronica
Telerik team
 answered on 29 Sep 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?