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

I have met issues for binding RadTextBox as TreeListTemplateColumn.
1. Which sever side event can be triggered when text box value changed?
2. How to auto select current tree list row as well when the text box is focused?
3. This tree list is in the radwizard as one step. Every time I have to press enter key to fire RadTextBoxSN_TextChanged, ance once it fired, the page will automatically move to next wizard step. I wrote the manual next button event for wizard and no idea how this happened. Please help.

<telerik:TreeListTemplateColumn HeaderStyle-Width="170px" DataField="LotSerialNumber" UniqueName="LotSerialNumber" HeaderText="Lot/Serial Number">
                                                    <ItemTemplate>
                                                        <div style="text-wrap: none; word-break: keep-all; table-layout: fixed">
                                                            <telerik:RadTextBox ID="RadTextBoxSN" runat="server" OnTextChanged="RadTextBoxSN_TextChanged" ToolTip='<%# Eval("TXN_ID")%>' Text='<%# Eval("LotSerialNumber")%>' Width="125px">
                                                            </telerik:RadTextBox>
                                                            <asp:LinkButton ID="btnSearch" runat="server">
                                                    <img style="border: 0px; vertical-align: bottom" src="~/../Images/search.gif" />
                                                            </asp:LinkButton>
                                                            <asp:LinkButton ID="btnValid" runat="server" Visible="false" Enabled="false">
                                                    <img id="ImgValid" style="border: 0px; vertical-align: bottom" src="~/../Images/success.gif" />
                                                            </asp:LinkButton>
                                                            <asp:LinkButton ID="btnInvalid" runat="server" Visible="false" Enabled="false">
                                                    <img id="ImgInvalid" style="border: 0px; vertical-align: bottom" src="~/../Images/error.gif" />
                                                            </asp:LinkButton>
                                                        </div>
                                                    </ItemTemplate>
                                                </telerik:TreeListTemplateColumn>




















Eyup
Telerik team
 answered on 19 Feb 2015
1 answer
100 views
When entering text into the AutoComplete control configured for token input type when the 12th character is entered the X button displays overlaying the last few characters entered.  Upon entering additional characters the text will shift to the left and the first few character are shifted outside the token and are not visible. Is there anyway to increase the size of the token so this does not happen? 

See attached screen shots.
Boyan Dimitrov
Telerik team
 answered on 19 Feb 2015
5 answers
94 views
I have a grid on a page with the skin MetroTouch on a jquery mobile page.   When the grid renders, the Jquery Mobile applies styles to elements of the grid, such as the filter.

I want to add --data-role="none"-- to all aspects of the grid and let it render with the MetroTouch style only.   How can I do this?

Peter
niv kfir
Top achievements
Rank 1
 answered on 19 Feb 2015
1 answer
132 views
Hi,
apologies if this is an obvious question but is is possible to get the tiles to render across then down rather than down then across. I have data from a database and it means that when looking for a person it is  non-intuitive.

thanks

Chris 
Marin Bratanov
Telerik team
 answered on 19 Feb 2015
1 answer
155 views
Hi,

I'm trying to get multiple maps showing on the same page and looking to handle it in twitter bootstrap tabs.  The issue I'm facing is that the map is cut off when navigating to a second tab, I have tried calling the resize function without any success.  My markup is like this

<div class="centered-pills">
    <ul class="nav nav-pills" id="myTab">
        <li class="active">
            <a href="#response" data-toggle="pill" >Response</a>
        </li>
        <li><a href="#eng" data-toggle="pill">Eng</a></li>
        <li><a href="#bias" data-toggle="pill">Bias</a></li>
        <li><a href="#sus" data-toggle="pill">Sus</a></li>
    </ul>
</div>
     
<div class="tab-content">
    <div class="tab-pane active" id="response">
        <telerik:RadMap runat="server" ID="RadMap1" Zoom="2" Height="600px" MinZoom="2" MaxZoom="2" Pannable="false" CssClass="Map" >
            <ClientEvents OnShapeCreated="shapeCreated" OnShapeMouseEnter="shapeMouseEnter" OnShapeMouseLeave="shapeMouseLeave" />
                <LayersCollection>
                    <telerik:MapLayer ClientDataSourceID="RadClientDataSource1" Type="Shape" Opacity="1" TitleField="name" ValueField="response" Key="response" />
                </LayersCollection>
            <CenterSettings Longitude="32" Latitude="7" />
        </telerik:RadMap>
    </div>
 
    <div class="tab-pane" id="eng">
        <telerik:RadMap runat="server" ID="RadMap2" Zoom="2" Height="600px" MinZoom="2" MaxZoom="2" Pannable="false" CssClass="Map" >
            <ClientEvents OnShapeCreated="shapeCreated" OnShapeMouseEnter="shapeMouseEnter" OnShapeMouseLeave="shapeMouseLeave" />
                <LayersCollection>
                    <telerik:MapLayer ClientDataSourceID="RadClientDataSource1" Type="Shape" Opacity="1" TitleField="name" ValueField="eng" Key="eng" />
                </LayersCollection>
            <CenterSettings Longitude="32" Latitude="7" />
        </telerik:RadMap>
    </div>
 
    <div class="tab-pane" id="bias">
        <telerik:RadMap runat="server" ID="RadMap3" Zoom="2" Height="600px" MinZoom="2" MaxZoom="2" Pannable="false" CssClass="Map" >
            <ClientEvents OnShapeCreated="shapeCreated" OnShapeMouseEnter="shapeMouseEnter" OnShapeMouseLeave="shapeMouseLeave" />
                <LayersCollection>
                    <telerik:MapLayer ClientDataSourceID="RadClientDataSource1" Type="Shape" Opacity="1" TitleField="name" ValueField="sus" Key="sus" />
                </LayersCollection>
            <CenterSettings Longitude="32" Latitude="7" />
        </telerik:RadMap>
    </div>
 
    <div class="tab-pane" id="sus">
        <telerik:RadMap runat="server" ID="RadMap4" Zoom="2" Height="600px" MinZoom="2" MaxZoom="2" Pannable="false" CssClass="Map" >
            <ClientEvents OnShapeCreated="shapeCreated" OnShapeMouseEnter="shapeMouseEnter" OnShapeMouseLeave="shapeMouseLeave" />
                <LayersCollection>
                    <telerik:MapLayer ClientDataSourceID="RadClientDataSource1" Type="Shape" Opacity="1" TitleField="name" ValueField="bias" Key="bias" />
                </LayersCollection>
            <CenterSettings Longitude="32" Latitude="7" />
        </telerik:RadMap>
    </div>
</div>



$('#myTab a').click(function (e) {
    e.preventDefault();
    $(this).tab('show');
})

any help would be appreciated
Ianko
Telerik team
 answered on 19 Feb 2015
1 answer
28 views
Hi,

I am using Telerik RadHtmlChart  control in my page to display reports. In our phone app we are using Telerik RadChart and also TrackBall feature is enabled. I want to create the same thing in my web page also. How can I implement track ball in my page having RadHtmlChart (AreaSeries). Is trackball feature is available in RadHtmlChart control?  Any one please help. Thanks in advance.
Danail Vasilev
Telerik team
 answered on 19 Feb 2015
1 answer
259 views
Is there a RAD NumericUpdown control for ASP.net? Can one be created? Please advise. Thanks.
Marin
Telerik team
 answered on 19 Feb 2015
12 answers
356 views

Hi,

I have a pivot grid where some of the fields holds "long" texts. Sometimes the “rows” in the grids are not aligned correctly with the “column rows” – especially when the text wraps. I tried my example in a completely empty project on a page having only the pivot grid but the problem does not go away (no CSS or other layout applied).

(IE9)

Vasil
Telerik team
 answered on 19 Feb 2015
1 answer
88 views
Greetings,

I am trying our the RadMediaPlayer and love the idea of having the poster before the video begins. However in order to use this I also need to poster to show after the video completes. Does anyone know how I can accomplish this? Truly I can't be the only one who has ever thought of this?! 

I personally think it should be a configurable option that supports a different poster option. Maybe even with URL support similar to the banners.
Eyup
Telerik team
 answered on 19 Feb 2015
4 answers
132 views
Getting below error while binding Combo Box on demand in RadGrid with BatchEdit Mode. Please help

 The target &#39;ctl11$RadGridSearchResult$ctl11_RadGridSearchResult_ctl00_Actplc$Actplc&#39; for the callback could not be found or did not implement ICallbackEventHandler. 

public class CreateRadComboTemplate : ITemplate
    {
        private string tempName;
        private int catId;
        public CreateRadComboTemplate(string templateName, int catId)
        {
            this.tempName = templateName;
            this.catId = catId;
        }

        public void InstantiateIn(System.Web.UI.Control container)
        {
            RadComboBox rcBox = new RadComboBox();
            rcBox.ID = this.tempName;
            rcBox.ItemsRequested += rcBox_ItemsRequested;
            rcBox.EnableAutomaticLoadOnDemand = true;
            container.Controls.Add(rcBox);
        }

        void rcBox_ItemsRequested(object sender, RadComboBoxItemsRequestedEventArgs e)
        {
            //throw new NotImplementedException();
        }
    }
Jaya
Top achievements
Rank 1
 answered on 19 Feb 2015
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?