This is a migrated thread and some comments may be shown as answers.

Drill Down Window

1 Answer 150 Views
PivotGrid
This is a migrated thread and some comments may be shown as answers.
vladimir2661
Top achievements
Rank 1
vladimir2661 asked on 22 Dec 2015, 10:48 AM

Hello
Some questions, I will be very grateful for any help:
1. How make drill down in window
2. Problem with rename http://screencast.com/t/TH7dkhdDV8Xe
3. Problem with filtration http://screencast.com/t/gGdrgyGkKYl 

@(Html.Kendo().PivotConfigurator().Name("configurator").Height(770).HtmlAttributes(new { @class = "pivot-configurator" }).Filterable(true).Sortable())
    @(Html.Kendo().PivotGrid<CertificateDeath>().Name("CertificateDeathPivotGrid").Sortable().Configurator("#configurator")
                      .ColumnWidth(120).Height(770).HtmlAttributes(new { @class = "pivot-grid" })
                      .Excel(excel => excel.FileName("Свидетельство_о_смерти.xlsx").Filterable(true).ProxyURL(Url.Action("ExcelExport", "CertificateDeath")))
                      .DataSource(dataSource => dataSource
                          .Ajax()
                          .Transport(transport => transport.Read("GetList", "CertificateDeath"))
                          .Schema(schema => schema
                                   .Model(m => m.Field("FIO", typeof(string)).From("People.NameShort"))
                                   .Cube(cube => cube
                                      .Dimensions(dimensions =>
                                      {
                                          dimensions.Add(model => model.IssuanceDate).Caption("Date issuance");
                                          dimensions.Add(model => model.Status).Caption("All status");
                                      })
                                      .Measures(measures => measures.Add("Count").Field(model => model.Id).AggregateName("count"))
                              ))
                          .Columns(columns => { columns.Add("Status").Expand(true); }).Events(e => e.Error("onError"))
                          //.Rows(rows => rows.Add("ContactTitle").Expand(true))
                          .Measures(measures => measures.Values("Count"))
                          ).Filterable(true)
                         .Pdf(pdf => pdf.FileName("Свидетельство_о_смерти.pdf").ProxyURL(Url.Action("PdfExport", "CertificateDeath"))
      ))

1 Answer, 1 is accepted

Sort by
0
Kiril Nikolov
Telerik team
answered on 24 Dec 2015, 01:17 PM
Hello Vladimir,

Before we can proceed with your technical questions, we will need more information about your current subscription. I have therefore involved a product specialist, who can help answer any licensing questions you might have.

If your company has already purchased a license from another account, please contact the license holder and ask them to add you as a licensed developer. If you need to purchase or renew your subscription, have a look at the most frequently asked questions (http://www.telerik.com/purchase/faq/devcraft) or post your questions here. Our product specialists will gladly assist you find a subscription that best fits your needs.

Once your account is associated with an active subscription, you can post your questions in a new support ticket or repost them here and we will reply within the guaranteed 24/48h response time, depending on the license. On top of that, you will have access to the latest features and fixes within our products and you will have the ability to affect their roadmaps.

If you choose not to continue with a paid subscription, we will immensely appreciate your feedback on the reasoning behind your decision. This information would help us determine the show-stoppers that developers like you face and better address these in the future.

Regards,
Kiril Nikolov
Telerik
 
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
 
Tags
PivotGrid
Asked by
vladimir2661
Top achievements
Rank 1
Answers by
Kiril Nikolov
Telerik team
Share this question
or