Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
321 views
Hello All,

I have created filter with multiple check boxs using RadComboBox  in RadGrid. Its working fine but the problem is when I apply filter it  rebinds datasource and all the check boxes are set to checked again, and I am loosing the applied filtered values. \

Also I want to change EmptyMessage and RadComboBox errow icon, if possible.

Admin please look into this.

Thank you!
Vishal
vishal
Top achievements
Rank 1
 answered on 04 Jul 2014
5 answers
980 views
i want to export radgrid in excel with column names (Header Texts). Am using below code to achieve this :-

RadGrid1.MasterTableView.ExportToExcel(); 

but it exports the data without header text,whereas i want to export the data with header text.

I am making div containing the grid as invisible at run time, which is my requirement.

Is there any way to export column headers too along with the data ??

Note :- I cannot show the grid on the page as it is specially created for the purpose of export.

Any kind of help will be highly appreciated
Princy
Top achievements
Rank 2
 answered on 04 Jul 2014
3 answers
380 views
Hello,

I am new to the Telerik TabStrip control.  I'm trying to figure out how to dynamically create tabs based on what is in a database table.  Some of my tabs will have nested tabs inside them (about three level deep max).  When the user clicks on any of the top row of tabs they will see a second row of tabs related to the tab they clicked on.  When they click on a tab in the second row they will see another row of tabs related to that one.  When they click on a tab in the third row I want to load a user control (.ascx) inside that tab. 

So-far, I've been able to create the top-level tabs dynamically, but I have not been able to figure out how to nest the second or third row of tabs inside the top level tab(s) so that I can show the user control page.

I would really appreciate a code example that would point me in the right direction.
Nencho
Telerik team
 answered on 04 Jul 2014
1 answer
105 views
Hello,

Is it possible to show an image on a series data label, or to have a type of graph, with custom icons ?

Attached is a screenshot, of the desired element.
Danail Vasilev
Telerik team
 answered on 04 Jul 2014
2 answers
113 views
Dear all,

I'm following this demonstration attempting to link an RadHtmlChart to the RadPivotGrid, however I think there's a bug that the radhtmlchart is not reading my item value correctly when the RadPivotGrid's item has zero value (see attachment1). 

From my investigation, I attempted to fix it by changing this part of code (see attachment2), instead of inserting item.YValue = null I use item.YValue = 0, however, the problem of this method is that the zero values will overlap others. So I wonder if there's a proper solution to this issue? Please kindly advise, thanks!

Regards.
Danail Vasilev
Telerik team
 answered on 04 Jul 2014
1 answer
118 views
Hi 

I'm working on Telerik RadGrid and using Telerik Q1 2013. 

I don't get the Batch option when designing the radGrid in the ASPX page. Please see attached image.

How can I get the Batch option for the grid?

Thanks
Princy
Top achievements
Rank 2
 answered on 04 Jul 2014
4 answers
122 views
Hello Telerik,

Currently I'm implementing a HtmlChart in asp.net. I'm translating a couple of excel sheets into asp.net.
please find attached two files. one of the excel example. one of the current barseries i've made up so far.

my question is: how can I bind grouped data? i want the Y axis to be displayed by year, and then by month. Now only the month is displayed.
could you assist me in defining the correct barseries?

<div class="LeftMonitorDiv">
        <telerik:RadPivotGrid ID="CAK_A1_PivotGrid" runat="server"
            AggregatesLevel="0" AllowPaging="True" Culture="nl-NL"
            DataSourceID="CAK_A1_UniekeClienten_Datasource"
            UseQueryableDataProvider="True"
            ExportSettings-FileName="CAK_A1_UniekeClienten"
            ExportSettings-IgnorePaging="True" ExportSettings-OpenInNewWindow="True"
            Skin="Metro" PageSize="20" AllowFiltering="False" TotalsSettings-RowsSubTotalsPosition="None"
            TotalsSettings-ColumnsSubTotalsPosition="None" TotalsSettings-RowGrandTotalsPosition="None" TotalsSettings-ColumnGrandTotalsPosition="None"
            ShowDataHeaderZone="false" ShowFilterHeaderZone="false" ShowColumnHeaderZone="false" GroupTotalsVisibility="None">
            <PagerStyle ChangePageSizeButtonToolTip="Change Page Size" PageSizeControlType="RadComboBox"></PagerStyle>
 
            <Fields>
                <telerik:PivotGridRowField DataField="Jaar" UniqueName="JaarColumn" Caption="Jaar">
                </telerik:PivotGridRowField>
                <telerik:PivotGridRowField DataField="Periode" UniqueName="PeriodeColumn" Caption="Periode">
                </telerik:PivotGridRowField>
                <telerik:PivotGridRowField DataField="ClientenUniek" UniqueName="ClientenUniek" Caption="Unieke Clienten">
                </telerik:PivotGridRowField>
            </Fields>
 
            <ClientSettings EnableFieldsDragDrop="false">
            </ClientSettings>
 
            <ExportSettings OpenInNewWindow="True" FileName="CAK_A1_UniekeClienten" IgnorePaging="True" />
        </telerik:RadPivotGrid>
    </div>
    <div class="RightMonitorDiv">
        <telerik:RadHtmlChart runat="server" Height="338px" Width="563px" Skin="Metro" CssClass="CIZJeugdVervoerPieChart"
            ID="CAK_A1_UniekeClienten_PieChart" Transitions="true" DataSourceID="CAK_A1_UniekeClienten_Datasource">
            <Appearance>
                <FillStyle BackgroundColor="White"></FillStyle>
                 
            </Appearance>
            <ChartTitle Text="Unieke cliënten per periode">
                <Appearance Align="Center" BackgroundColor="White" Position="Top" Visible="True">
                </Appearance>
            </ChartTitle>
            <Legend>
                <Appearance BackgroundColor="White" Position="Bottom" Visible="true">
                </Appearance>
            </Legend>
            <PlotArea>
                <Appearance>
                    <FillStyle BackgroundColor="White"></FillStyle>
                </Appearance>
                <Series>
                    <telerik:BarSeries Name="Periode" Stacked="false" DataFieldY="ClientenUniek">
                        <Appearance>
                            <FillStyle BackgroundColor="Red" />
                        </Appearance>                       
                        <TooltipsAppearance BackgroundColor="White" DataFormatString="${0}" />
                        <LabelsAppearance Position="Center" DataField="Periode"/>
                    </telerik:BarSeries>                   
                </Series>
                <XAxis DataLabelsField="Periode">
                </XAxis>
                <YAxis>
                    <LabelsAppearance DataFormatString="{0}" />
                </YAxis>
            </PlotArea>
        </telerik:RadHtmlChart>
    </div>
Danail Vasilev
Telerik team
 answered on 04 Jul 2014
1 answer
116 views
One of the supported OpenEditingEvent in BatchEdit is "MouseOver".

1. May I ask you to add it into online demo http://demos.telerik.com/aspnet-ajax/grid/examples/data-editing/batch-editing/defaultcs.aspx

2. Could you double check the edit behaviour which seems to be incorrect (or at least inconvenient)
Steps:
   a) set <BatchEditingSettings EditType="Row" OpenEditingEvent="MouseOver" />
   b) Set mouse over a row to enable editing
   c) enter any value in textbox
   d) move mouse to another row - this value has disappeared. The only way to set a new value in text bow is to focus another textbox in the same row by clicking TAB or selecting by mouse.
Deyan Enchev
Telerik team
 answered on 04 Jul 2014
1 answer
115 views
Hi all,

As described by topic, is it possible to have multiple X axis on bar chart? I'm trying to mimic this excel document (see attachment), can it be done by grouping or categorising? Please advise.

Much appreciated.
Danail Vasilev
Telerik team
 answered on 04 Jul 2014
1 answer
105 views
http://demos.telerik.com/aspnet-ajax/scheduler/examples/overview/defaultcs.aspx

Helen
Telerik team
 answered on 04 Jul 2014
Narrow your results
Selected tags
Tags
+? more
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?