Telerik Forums
UI for ASP.NET AJAX Forum
8 answers
420 views

Hi

 Im working with the radpivotgrid, i change some column names in the pivot in the CellDataBound event (like Kostadin explains in this example http://www.telerik.com/forums/edit-grandtotalcolumns-in-radpivotgrid) and works fine, the problem is when i try to export to an Excel file, all the data is exported fine, except the column names that i edited, the column names in the exported excel file dont have the changes i maded, and other thing, there is a way to hide the columns of a PivotGridAggregateField and show only the grand total of this same field?

Eyup
Telerik team
 answered on 26 Jul 2019
5 answers
169 views
Hi, is there any way I can freeze columns in radtreelist with vertical and horizontal scrollbars?
I know there is no option for that, but is it possible from client-side?
Thanks
Peter Milchev
Telerik team
 answered on 26 Jul 2019
14 answers
1.1K+ views
I have the lastest edition of Radcontrols installed here.  However I am developing for Sitefinity 3.7 SP1.  I place a Radcombo box into a user control and populated the control using linqtosql.  Then added a search button to search the database. 

<asp:LinqDataSource ID="LinqDataSource2" runat="server"   
    ContextTypeName="Offices.BillingDataClassesDataContext" OrderBy="Name"   
    TableName="sc_Tribunals" Select="Distinct">  
</asp:LinqDataSource> 
<telerik:RadComboBox ID="rcbSearchBox" Runat="server"   
    DataSourceID="LinqDataSource2" DataTextField="Name" DataValueField="OfficeId"   
    MarkFirstMatch="True" AllowCustomText="True">  
</telerik:RadComboBox> 
<asp:Button ID="Button1" runat="server" onclick="Button1_Click"   
    Text="Search By City" /> 


The RadComboxBox appears work find with small amount of items lets say 10 items loaded.    The OfficeId value type is a GUID, and the DataTextField is a just a string contain city names.

If I select an item near the bottom of the dropdown then click anywhere on the page, the selected item drops and the RadCombo box selects an item near the top of the list.  I found this to be the case with the lastest version of Firefox and IE8/7. 

Am I missing something.
VIRUX
Top achievements
Rank 1
 answered on 26 Jul 2019
2 answers
353 views
I have a TreeView with checkboxes turned on and each child node has a datavalue and a textbox.  When a user types in the textbox, each time she hits the spacebar, the checkbox on that node and each parent node.  I need to disable this behavior.  Ideally, I would just disable the toggling to the checkboxes on spacebar.  Does anybody have any idea how to accomplish this?
Quinn
Top achievements
Rank 1
 answered on 25 Jul 2019
1 answer
222 views

Hi,

i am trying to represent year/month and year/quarter in the chart as in the attached pictures. Standard features in excel amongst other, but I can't find a solution for it in Telerik. 

 

Terje

Vessy
Telerik team
 answered on 24 Jul 2019
1 answer
102 views

Hello,

RadEditor controls toolbar (Bold, Italic, etc) is not working on the latest version of Firefox 68.0.1 (64-bit), i tried fixing the issue using ".onParentNodeChanged()" solution that i found on the forum but with no result.

<asp:Content runat="server" ContentPlaceHolderID="MainContent">
    <telerik:RadWindowManager ID="RadWindowManager1" runat="server" EnableShadow="True" Skin="IP" EnableEmbeddedSkins="false" VisibleTitlebar="true" VisibleStatusbar="false" AutoSize ="true">
                <Windows>
                    <telerik:RadWindow ID="rwdAddActionTaken" runat="server" Title="Add Response" Modal="true" Skin="IP" EnableEmbeddedSkins="false" 
                        VisibleTitlebar="true" ShowContentDuringLoad="false" VisibleStatusbar="false" Behaviors="Close" AutoSize="true" Width="700px" Height="550px"
                        OnClientShow="fixEditor">
                        <ContentTemplate>
                            <telerik:RadEditor RenderMode="Lightweight" runat="server" ID="RadEditor1" ContentAreaMode="Div" SkinID="DefaultSetOfTools"
                Height="675px">
                                        <Tools>
                                                    <telerik:EditorToolGroup Tag="Top">
                                                        <telerik:EditorTool Name="Bold" />
                                                        <telerik:EditorTool Name="Italic" />
                                                        <telerik:EditorTool Name="Underline" />
                                                        <telerik:EditorTool Name="StrikeThrough" />
                                                        <telerik:EditorSeparator Visible="true" />
                                                        <telerik:EditorTool Name="InsertOrderedList" />
                                                        <telerik:EditorTool Name="InsertUnorderedList" />
                                                        <telerik:EditorTool Name="Outdent" />
                                                        <telerik:EditorTool Name="Indent" />
                                                        <telerik:EditorSeparator Visible="true" />
                                                        <telerik:EditorTool Name="FontName" />
                                                        <telerik:EditorTool Name="RealFontSize" />
                                                        <telerik:EditorTool Name="ForeColor" />
                                                        <telerik:EditorTool Name="BackColor" />
                                                        <telerik:EditorSeparator Visible="true" />
                                                        <telerik:EditorTool Name="Undo"/>
                                                        <telerik:EditorTool Name="Redo" />
                                                        <telerik:EditorSeparator Visible="true" />
                                                        <telerik:EditorTool Name="Cut" />
                                                        <telerik:EditorTool Name="Copy" />
                                                        <telerik:EditorTool Name="PasteAsHtml" />
                                                        <telerik:EditorTool Name="PastePlainText" />
                                                    </telerik:EditorToolGroup>
                                                    <telerik:EditorToolGroup Tag="Middle">
                                                        <telerik:EditorTool Name="JustifyLeft" />
                                                        <telerik:EditorTool Name="JustifyCenter" />
                                                        <telerik:EditorTool Name="JustifyRight" />
                                                        <telerik:EditorSeparator Visible="true" />
                                                        <telerik:EditorTool Name="InsertLink" />
                                                    </telerik:EditorToolGroup>
                                                </Tools>                                   
                                            </telerik:RadEditor>  
                            </ContentTemplate>
                    </telerik:RadWindow>
                    </Windows>
            </telerik:RadWindowManager>
    <script type="text/javascript">
    function fixEditor()
    {
        $find("<%=RadEditor1.ClientID %>").onParentNodeChanged();
    }
</script>
</asp:Content>
Rumen
Telerik team
 answered on 24 Jul 2019
11 answers
1.0K+ views
Hi,
    I have several boundcolumn in my radgrid. I want to access one of the cell and assign hyperlink dynamically. How do I do this. Can anybody help. thanks in advance
Ryan
Eyup
Telerik team
 answered on 24 Jul 2019
1 answer
136 views

Hello,

I need to show the NestedViewTemplate for a row when that row is edited using in-place editing. How can I achieve this? So far what I have tried was calling the expand event on the Edit command like so:

if(e.CommandName == RadGrid.EditCommandName)
       {
           e.Item.FireCommandEvent(RadGrid.ExpandCollapseCommandName, new GridExpandCommandEventArgs(e.Item, sender, e));
           //e.Item.Expanded = true;
       }

 

The RadGrid.ExpandCollapse command is correctly being fired but the in-place editing is showing and the NestedViewTemplate is not showing as intended.

Eyup
Telerik team
 answered on 24 Jul 2019
2 answers
380 views
Hi,

I have a RadGrid working where on add and edit events a user control is defined to be used for user inputs.
Now I have a scenario where I want to clone one of the record from a button (placed on that user control).
When user clicks clone button, I want to fire up the "Add new record" event of RadGrid and populate data from the source record so the user may change some values and click save to clone the record.

I cannot find a way to fire the "Add new record" event from a custom button on the usercontrol. Any help ideas to achieve this are appreciated.

Thanks,
Bash
Mark
Top achievements
Rank 2
 answered on 23 Jul 2019
3 answers
752 views

 

I have the following button:

                  <telerik:RadLinkButton ID="lbtn" runat="server" Text="Delete"
                                       Height="34px" 
                                       style="margin-top:2px;"
                                       OnClientClicking="return false;">
                    <Icon CssClass="rbRemove"></Icon>
                </telerik:RadLinkButton>

 

It does that i need it to do however causes "Uncaught SyntaxError: Unexpected token return" javascript error.

What is wrong?

Thank you

Rumen
Telerik team
 answered on 23 Jul 2019
Narrow your results
Selected tags
Tags
+? more
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
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?