Ejemplo n.º 1
0
 public Dictionary <string, object> CalculatedField(string action, string headerTag, string currentReport)
 {
     htmlHelper.PopulateData(currentReport);
     dict = htmlHelper.GetJsonData(action, ProductSales.GetSalesData(), null, headerTag);
     return(dict);
 }
Ejemplo n.º 2
0
 public Dictionary <string, object> Sorting(string action, string sortedHeaders, string currentReport)
 {
     htmlHelper.PopulateData(currentReport);
     dict = htmlHelper.GetJsonData(action, ProductSales.GetSalesData(), sortedHeaders);
     return(dict);
 }
Ejemplo n.º 3
0
 public Dictionary <string, object> NodeDropped(string action, string dropAxis, string headerTag, string sortedHeaders, string filterParams, string currentReport)
 {
     htmlHelper.PopulateData(currentReport);
     dict = htmlHelper.GetJsonData(action, ProductSales.GetSalesData(), dropAxis, headerTag, filterParams, sortedHeaders);
     return(dict);
 }
Ejemplo n.º 4
0
 public Dictionary <string, object> InitializeGrid(string action)
 {
     htmlHelper.PivotReport = BindDefaultData();
     dict = htmlHelper.GetJsonData(action, ProductSales.GetSalesData());
     return(dict);
 }
Ejemplo n.º 5
0
 public Dictionary <string, object> CellEditing(string action, string index, string valueHeaders, string summaryValues, string currentReport)
 {
     htmlHelper.PopulateData(currentReport);
     dict = htmlHelper.GetJsonData(action, ProductSales.GetSalesData(), index, summaryValues, valueHeaders);
     return(dict);
 }
Ejemplo n.º 6
0
 public Dictionary <string, object> DeferUpdate(string action, string filterParams, string sortedHeaders, string currentReport)
 {
     htmlHelper.PopulateData(currentReport);
     dict = htmlHelper.GetJsonData(action, ProductSales.GetSalesData(), null, null, null, sortedHeaders, filterParams);
     return(dict);
 }