Telerik Forums
Community Forums Forum
5 answers
517 views
Dear Telerik,

It would be beneficial if you were able to supply debug builds to subscriptions as an optional download.    It would help greatly with debugging.


Regards,
Jason

Gopala
Top achievements
Rank 1
 answered on 26 Oct 2011
1 answer
116 views
hello sir
may i use telerik control in my web site
but i open my site in tablet some drag and drop not working in android tablet

plz some suggestion to me

thanks
bimal
Sebastian
Telerik team
 answered on 26 Oct 2011
0 answers
87 views
hi everyone, i have a question about my radgridview that i created. i have this gridview that displays information to my grid from a database using the adodb connection, now my problem is when the list appears on the grid it seems normal, but when i click the column header to sort the list it doesnt sort it, my column is composed of numbers from 1 to 21, and when i click the column header the number 1 on top and followed by number 10,11,12, etc. where it should be 21 going down to 1...thanks...
Imo
Top achievements
Rank 1
 asked on 25 Oct 2011
0 answers
86 views

Hi… we’re looking for a kick-ass Telerik developer who knows their way around the various Telerik Silverlight controls. We are embedding a number of controls from the GridView, TreeView, Chart and DataFilter, to the Slider, ColorPicker and Calendar. Our application is a mapping application based on Microsoft’s Bing Maps platform. We are working with large data sets (1million+) and really need someone who can get under the hood of the Telerik controls to give them a look and feel that is distinctly ours.

Our office is in Orange County CA, however, we have a large development team in India, and would prefer someone located in India that can work with our team there. This project is for several months and can easily lead to a full time job if interested.

If this sounds like something you can do, then please ping me at brentm@localligence.com.

Thxs guys!

Brent

Brent
Top achievements
Rank 1
 asked on 24 Oct 2011
5 answers
227 views
Team,

I want to place a dropdown on radtabstrip control. But, I couldn't place a dropdown control inside the <tags> of <telerik:RadTabStrip>. I tried with radtoolbar control. But, I am not getting tab view with this control. I have attached my requirement. Kindly, look it out and suggest the best way to achieve it.
Kate
Telerik team
 answered on 23 Oct 2011
1 answer
132 views
It is our pleasure to announce the immediate availability of Telerik Reporting Q1 2008 SP1. The full Release notes are located here.

Happy Coding!

Telerik Team
Vishal
Top achievements
Rank 1
 answered on 19 Oct 2011
0 answers
100 views
Hi,

I want to set auto width of RadCombo based on the width of data. I'm using following code-

<telerik:RadComboBox Style="z-index: 9001;margin-top:-2px;" ID="rcbDepartments" MarkFirstMatch="true"
        AllowCustomText="true" Height="200px" Width="230px" DropDownWidth="270px" HighlightTemplatedItems="true"
        EnableAutomaticLoadOnDemand="true" Filter="Contains" ShowMoreResultsBox="true" AutoPostBack="true"
        EnableVirtualScrolling="true" ItemsPerRequest="20"  runat="server">
    </telerik:RadComboBox>

Please let me know if there is any way...

Regards, Pravin
Pravin
Top achievements
Rank 1
 asked on 13 Oct 2011
1 answer
68 views
Hi Telerik team,

    In radgrid rowselected event is not working if it in xmlhttppanel. How can I solve the issue?

My source code is below:

<

 

div>

 

 

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

 

 

function OnClientClick() {

 

 

var panel = $find("<%=RadXmlHttpPanel1.ClientID%>");

 

 

var item = document.getElementById("<%=TextBox1.ClientID%>").value;

 

panel.set_value(item);

}

 

function OnRowSelectedHandler(sender, args) {

 

alert();

 

var item = args.getDataKeyValue("CustomerID");

 

 

var panel = $find("<%=RadXmlHttpPanel2.ClientID%>");

 

panel.set_value(item);

}

 

</script>

 

 

<asp:ScriptManager ID="ScriptManager1" runat="server">

 

 

</asp:ScriptManager>

 

 

<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" Skin="Default">

 

 

</telerik:RadAjaxLoadingPanel>

 

 

<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>

 

 

<asp:Button ID="Button1" runat="server" Text="Button" OnClientClick="OnClientClick();return false;" />

 

 

<telerik:RadXmlHttpPanel ID="RadXmlHttpPanel1" runat="server" LoadingPanelID="RadAjaxLoadingPanel1"

 

 

OnServiceRequest="RadXmlHttpPanel1_ServiceRequest">

 

 

<uc6:ucXmlgrid ID="ucXmlgrid1" runat="server" />    //This is radgrid

 

 

</telerik:RadXmlHttpPanel>

 

 

<div style="padding-top: 10px">

 

 

<telerik:RadXmlHttpPanel ID="RadXmlHttpPanel2" runat="server" LoadingPanelID="RadAjaxLoadingPanel1"

 

 

OnServiceRequest="RadXmlHttpPanel2_ServiceRequest">

 

 

<uc5:ucXmlDetail ID="ucXmlDetail1" runat="server" />

 

 

</telerik:RadXmlHttpPanel>

 

 

</div>

 

 

</div>

Source code in ucXmlgrid1 is as below:

 

 

<telerik:RadGrid ID="rgCustomer" runat="server" AutoGenerateColumns="False" CellSpacing="0"

 

 

AllowMultiRowSelection="false" GridLines="None">

 

 

<HeaderContextMenu CssClass="GridContextMenu GridContextMenu_Default">

 

 

</HeaderContextMenu>

 

 

<MasterTableView DataKeyNames="CustomerID" ClientDataKeyNames="CustomerID">

 

 

<CommandItemSettings ExportToPdfText="Export to PDF"></CommandItemSettings>

 

 

<RowIndicatorColumn FilterControlAltText="Filter RowIndicator column">

 

 

<HeaderStyle Width="20px"></HeaderStyle>

 

 

</RowIndicatorColumn>

 

 

<ExpandCollapseColumn FilterControlAltText="Filter ExpandColumn column">

 

 

<HeaderStyle Width="20px"></HeaderStyle>

 

 

</ExpandCollapseColumn>

 

 

<Columns>

 

 

<telerik:GridBoundColumn FilterControlAltText="Filter column column" UniqueName="column"

 

 

DataField="ContactName" HeaderText="Contact Name">

 

 

</telerik:GridBoundColumn>

 

 

<telerik:GridBoundColumn FilterControlAltText="Filter column1 column" UniqueName="column1"

 

 

DataField="CompanyName" HeaderText="Company Name">

 

 

</telerik:GridBoundColumn>

 

 

<telerik:GridBoundColumn FilterControlAltText="Filter column2 column" UniqueName="column2"

 

 

DataField="ContactTitle" HeaderText="Contact Title">

 

 

</telerik:GridBoundColumn>

 

 

<telerik:GridBoundColumn FilterControlAltText="Filter column3 column" UniqueName="column3"

 

 

DataField="Address" HeaderText="Address">

 

 

</telerik:GridBoundColumn>

 

 

<telerik:GridBoundColumn FilterControlAltText="Filter column4 column" UniqueName="column4"

 

 

DataField="City" HeaderText="City">

 

 

</telerik:GridBoundColumn>

 

 

<telerik:GridBoundColumn FilterControlAltText="Filter column5 column" UniqueName="column5"

 

 

DataField="Country" HeaderText="Country">

 

 

</telerik:GridBoundColumn>

 

 

</Columns>

 

 

<EditFormSettings>

 

 

<EditColumn FilterControlAltText="Filter EditCommandColumn column">

 

 

</EditColumn>

 

 

</EditFormSettings>

 

 

</MasterTableView>

 

 

<FilterMenu EnableImageSprites="False">

 

 

</FilterMenu>

 

 

<ClientSettings EnableRowHoverStyle="True">

 

<%

--<Selecting AllowRowSelect="True" />--%>

 

 

<ClientEvents OnRowSelected="OnRowSelectedHandler" />

 

 

</ClientSettings>

 

 

</telerik:RadGrid>

 

Pero
Telerik team
 answered on 28 Sep 2011
1 answer
111 views
Max file size on a support ticket is 20Megs, can you bump that up perhaps?  I'm having to share out of my dropbox (database zipped is 93Megs when I need to send it as an example)

Steve
Georgi Tunev
Telerik team
 answered on 28 Sep 2011
1 answer
86 views
Please, please, please fix this.  The column on the left with the trees and the column on the right with the text should be independent.  i.e. When clicking through multiple levels on the tree it resets the entire thing to top every time.  So it's click, scroll back down, click, scroll back down, click, scroll back down just to navigate the tree.  The scroll position on the tree should not change just because you clicked on another item.

Incredibly annoying.
Anthony
Telerik team
 answered on 26 Sep 2011
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?