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

I am having an issue where when I try to upload a 125MB .FLV or a 53 MB .FLV on my live site the Ajax UI never starts and I eventually get a connection reset error. The uploader starts up with no problem, however, when I use a 5 MB .FLV. My maxRequestLength is set to 1024000 but I do not think any of those settings are wrong because when I try it on my local machine I can upload the 125 MB .FLV. Can you think of any reason why this would be happening live and not local?

I also tried setting the executionTimeout="360000" but it just took longer to throw the error.

Any help would be appreciated.

Thanks,

Aaron
Peter
Telerik team
 answered on 30 Sep 2010
0 answers
243 views
I'm use Chart with auto refresh and use Timer in every 2 second. but always see flicker/blink.

How to Auto refresh Chart without flicker (blink) in every 2 second. But not use Javascript.

Please help me...
Heri .
Top achievements
Rank 1
 asked on 30 Sep 2010
2 answers
93 views
Hi,

I use the RadDatePicker to let the user select a date. Instead of displaying the whole date, only the year and the quarter should be displayed then. I thought of an ICustomerFormatter and IFormatProvider to write a new custom format for the quarter portion of the date. So I have to pass my own format provider to the control. How do I do that? I tried to overwrite RadDatePicker but this seems not enough, because the input control itself is a RadDatePicker-Control.
Any ideas to start with, or is it just the wrong way to achieve the displaying of my own custom format?
jbssa
Top achievements
Rank 1
 answered on 30 Sep 2010
2 answers
127 views
Hi,
I'm getting ??? in my file names when using your custom ftp provider.
Is there some way to set encoding of file names in the fileexplorer?

Regards,
Mattias
Dobromir
Telerik team
 answered on 30 Sep 2010
1 answer
58 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
342 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
206 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
125 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
159 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
118 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
Narrow your results
Selected tags
Tags
+? more
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Andrey
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Andrey
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?