Telerik Forums
UI for ASP.NET AJAX Forum
8 answers
402 views
Hello,
For all the RadComboBox I'm using, a text appears in the arrow cell. This text is "select" and i don't want text in this cell !!
I've seen in the html code it is a "<a>" tag which is generated in this cell and this is it which contains this text.
I've also seen in the RadComboBox.cs file that this tag is generated like this :

HyperLink arrowLink = new HyperLink();
arrowLink.Text = "select";

This is generated for all combox i'm creating !

So how to remove this without modify the RadComboBox source code ?

Thanks
Jack
Top achievements
Rank 1
Iron
 answered on 01 Sep 2017
1 answer
159 views

Hallo,

 

I'm trying to apply the RadMap in a website and found the following issue:

I took your example of mapping shapes and tiles and adjusted the tileserver by adding a link to a tile server that our company is also using in other projects. The tiles are shown on the screen en the created map can be exported to a SVG file through the RadClientExportManager. But while the PNG- and PDF export of the OSM example link is working fine, the PNG- and PDF export of our own tile server maps does not work.

I checked the setup of OSM and our own tileserver. The result on the screen and the source html is exactly the same, except for the reference to the images.

The new references are with a https link instead of a http link and include a parameter with a reference to an apikey:

https://aaaa.bbbbbbb.net/#= zoom #/#= x #/#=y #.png?apikey=xxxxxxxxx

I did not get the appliction working by using the special MapLayer.Key, like is done with the Bing maps. So I have to apply the URL parameter.

The user interaction for popping up the PNG file is not shown at all and the PDF file is created without the map.

Any idea?

 

Hans Wapenaar

 

Hans
Top achievements
Rank 1
 answered on 01 Sep 2017
3 answers
290 views

Posted this in the wrong section initially... 

 

I was wondering if there were any plans to introduce a sort of collaborative real-time editor, similiar to how Google allows users to edit documents at the same time, and visually see the edits as they take place.

Rumen
Telerik team
 answered on 01 Sep 2017
6 answers
147 views

 

Hello

Does RadCaptcha use Silverlight?  In IE 11 I get a Silverlight warning on my pages that have RadCaptcha on them, I also get it on the RadCaptcha demo page, image attached.  is there any way to avoid this warning?

Jose Antonio de Alarcon
Top achievements
Rank 1
 answered on 01 Sep 2017
4 answers
1.5K+ views

Hi, I have a Radcombobox as a data item within a RadGrid. I have needdatasource and itemdatabound methods for the RadGrid during which I load the Radcomboboxes in the Grid. 

 

 <telerik:RadGrid  
                            id="testMappingGrid" 
                            runat="server" 
                            HorizontalAlign="Center" 
                            Visible="true" 
                            Width="782px" 
                            OnNeedDataSource="testMappingGrid_NeedDataSource" 
                            OnItemDataBound="testMappingGrid_ItemDataBound"
                            EnableViewState="true"
                            Skin="Silk" MasterTableView-EnableViewState="true">
                            <MasterTableView runat="server" AutoGenerateColumns="false" DataKeyNames="prodID">
                                <Columns>
                                    <telerik:GridBoundColumn DataField="prodID" DataType="System.Int32" 
                                        HeaderText="ID" SortExpression="prodID" 
                                        UniqueName="prodID" Visible="True" Display="true">
                                    </telerik:GridBoundColumn>
                                    <telerik:GridBoundColumn DataField="prodName" HeaderText="Product" 
                                        SortExpression="prodName" UniqueName="prodName" ItemStyle-Width="200px">
                                    </telerik:GridBoundColumn>
                                    <telerik:GridTemplateColumn HeaderText="Test Tool" SortExpression="testTool"  UniqueName="testTool" ItemStyle-Width="120px">
                                        <ItemTemplate>
                                            <telerik:RadComboBox ID="testTool"
                                                runat="server" 
                                                DataSourceID="testtoolsSqlDataSource"  
                                                Skin="Metro" 
                                                OnSelectedIndexChanged="testTool_OnSelectedIndexChanged"   
                                                DataTextField="Name" 
                                                DataValueField="ToolsID" 
                                                Width="120px"
                                                Height="200px" 
                                                AutoPostBack="true" />
                                        </ItemTemplate>
                                    </telerik:GridTemplateColumn>
                                    <telerik:GridTemplateColumn HeaderText="Test Project" SortExpression="testToolProject"  UniqueName="testToolProject" ItemStyle-Width="142px">
                                        <ItemTemplate>
                                            <telerik:RadComboBox ID="testProjName"
                                                CausesValidation="false"
                                                Height="200px"
                                                runat="server"
                                                Width="142px"
                                                DropDownWidth="200px"
                                                Skin="Metro" 
                                                AutoPostBack="true" EnableViewState="true" ViewStateMode="Enabled"
                                                >
                                            </telerik:RadComboBox>

<...>

-----------------------------------------------------------------------------------------------

 

The Radcomboxes are losing selected values after postback. Is there a way to retain selected values in a Radcombobox across postbacks?

 

Thanks,

Sandeep

Ghezzo
Top achievements
Rank 1
 answered on 01 Sep 2017
1 answer
145 views

We are noticing Telerik client-side (Javascript) code referencing a NULL object after clearing the Nodes in a TreeView control on the client side.

With the following sample file, we can see the error after expanding, then collapsing the root node:

<%@ Page Language="C#" AutoEventWireup="true" Inherits="System.Web.UI.Page" %>
 
<script runat="server">
    void Page_Load(object sender, EventArgs e)
    {
        var node = new RadTreeNode("1");
        node.ExpandMode = TreeNodeExpandMode.ServerSideCallBack;
        node.Nodes.Add(new RadTreeNode("2"));
        TV.Nodes.Add(node);
    }
</script>
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<head>
<title>Telerik TreeView Test</title>
</head>
 
<body>
 
<form id="DialogForm" runat="server">
    <telerik:RadScriptManager ID="SM" runat="server" />
    <telerik:RadTreeView ID="TV" runat="server" OnClientNodeCollapsed="collapse" />
</form>
 
<script type="text/javascript">
    function collapse(sender, args) {
        var node = args.get_node();
        sender.trackChanges();
        node.get_nodes().clear();
        sender.commitChanges();
    }
</script>
 
</body>
</html>

 

Can we accomplish clearing the nodes with error by setting a value somewhere, or do we need to wait for a patch to fix this issue?

Peter Milchev
Telerik team
 answered on 01 Sep 2017
0 answers
58 views

How to custom template in header filter context menu. Don't use default template header filter context menu.

Thanks

Simple
Top achievements
Rank 1
 asked on 01 Sep 2017
1 answer
297 views

I have a datepicker to filter a GridDateTimeColumn of a RadGrid. Since the default size of the filter textbox was too big, I have made it smaller, along with the datepicker button. However, I wasn't able to resize the calendar icon of the datepicker button which is now overflowing (see attached image).

I tried using the debug tools of every browser to find out the name of the glyph icon or the CSS class that implement it but wasn't successful.

Is there a way to change or resize this icon, maybe through jQuery?

Thanks in advance!

Gonzalo
Top achievements
Rank 1
 answered on 31 Aug 2017
0 answers
115 views

Hi,

We try to customize editor font names. We added 5 font names which not include "Times New Roman" but when refresh the page, we still see the default one is "Times New Roman" ( see attachment ). Can we change the default value as the first one in the dropdownlist?

Thanks in advance,

Lan

lan luo
Top achievements
Rank 1
Iron
 asked on 31 Aug 2017
0 answers
176 views

I have a radwizard with each tab having a user control. I have the RenderedSteps="Active" set in my wizard but it calls the page load for all the user controls. I was expecting to see the page load only for the first step to be called.

What am i missing?

 

<telerik:RadWizard ID="wizEnrollment" runat="server" RenderMode="Lightweight" OnPreRender="wizEnrollment_PreRender" RenderedSteps="Active" 
            OnNextButtonClick="ContinueButton_Click" OnFinishButtonClick="UpdateBeneficiaryDesignationButton_Click"
            OnCancelButtonClick="FinishButton_Click"  >
            <WizardSteps>
                <telerik:RadWizardStep ID="DeferralElectionStep" Title="Deferral Elections" runat="server" CausesValidation="true" ValidationGroup="DeferralElections">
                    <iSys:deferralElections ID="ucDeferralElections" runat="server" />
                </telerik:RadWizardStep>
                <telerik:RadWizardStep ID="DistributionELectionStep" Title="Distribution Elections" runat="server" CausesValidation="true" ValidationGroup="DistributionElections">
                    <iSys:paymentOptions ID="ucPaymentOptions" runat="server" />
                </telerik:RadWizardStep>
                <telerik:RadWizardStep ID="FundAllocationStep" Title="Fund Allocations" runat="server" CausesValidation="true" ValidationGroup="FundAllocations">
                    <iSys:fundBucket ID="ucFundAllocations" runat="server" />
                </telerik:RadWizardStep>
                <telerik:RadWizardStep ID="EnrollmentSummaryStep" Title="Enrollment Summary" DisplayCancelButton="true" StepType="Finish" runat="server" CausesValidation="false">
                    <iSys:summary ID="ucEnrollmentSummary" runat="server" />
                </telerik:RadWizardStep>
            </WizardSteps>
        </telerik:RadWizard>
MBEN
Top achievements
Rank 2
Veteran
 asked on 31 Aug 2017
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?