Skip to content

Commit 2438779

Browse files
authored
Merge pull request #4527 from syncfusion-content/EJ2-979359-Hotfix
979359: Updating event names in Hyperlinks in MVC
2 parents 7cf58c9 + fe5e2b9 commit 2438779

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

ej2-asp-core-mvc/pivot-table/EJ2_ASP.MVC/olap.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ publishingplatform: ##Platform_Name##
88
documentation: ug
99
---
1010

11-
# OLAP in ##Platform_Name## Pivot Table component
11+
# OLAP in ASP.NET MVC Pivot Table component
1212

1313
## Getting Started with ASP.NET MVC
1414

@@ -44,7 +44,7 @@ Follow below steps to create ASP.NET MVC Application.
4444

4545
**Step 1:** Add the [`Syncfusion.EJ2.MVC5`](https://www.nuget.org/packages/Syncfusion.EJ2.MVC5/) NuGet package to the new application by using the Nuget Package Manager. Right-click the project and select **Manage NuGet Packages...**.
4646

47-
N> Refer to [this article](../../nuget-packages/) to learn more details about installing Essential<sup style="font-size:70%">&reg;</sup> JS 2 NuGet packages in various OS environment.
47+
N> Refer to [this article](../../EJ2_ASP.MVC/nuget-packages) to learn more details about installing Essential<sup style="font-size:70%">&reg;</sup> JS 2 NuGet packages in various OS environment.
4848

4949
![aspnetmvc5 manage nuget packages](images/aspnetmvc5-manage-nuget.png)
5050

@@ -84,7 +84,7 @@ N> The Syncfusion.EJ2.MVC5 NuGet package has dependencies, [`Newtonsoft.Json`](h
8484
</configuration>
8585
```
8686

87-
**Step 4:** Add the client-side resources through [CDN](https://ej2.syncfusion.com/documentation/deployment/#cdn) in the `<head>` element of `~/Views/Shared/_Layout.cshtml` layout page.
87+
**Step 4:** Add the client-side resources through [CDN](https://ej2.syncfusion.com/documentation/deployment#cdn) in the `<head>` element of `~/Views/Shared/_Layout.cshtml` layout page.
8888

8989
```html
9090
<head>
@@ -752,13 +752,13 @@ The two types of calculated fields are as follows:
752752

753753
### BeforeServiceInvoke
754754

755-
The [`beforeServiceInvoke`](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.PivotView.PivotView.html#Syncfusion_EJ2_PivotView_PivotView_BeforeServiceInvoke) event is triggered before initiating any service communication with the OLAP server in the Pivot Table and Field List components.
755+
The [`BeforeServiceInvoke`](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.PivotView.PivotView.html#Syncfusion_EJ2_PivotView_PivotView_BeforeServiceInvoke) event is triggered before initiating any service communication with the OLAP server in the Pivot Table and Field List components.
756756

757757
* This event allows you to inject custom properties or additional parameters dynamically before a request is made to the OLAP server.
758758

759759
* It is particularly useful for passing contextual data such as user tokens, custom filters, or localization information along with the original server request.
760760

761-
When the [`beforeServiceInvoke`](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.PivotView.PivotView.html#Syncfusion_EJ2_PivotView_PivotView_BeforeServiceInvoke) event is triggered, the event argument provides access to the request details and includes a `customProperties` field.
761+
When the [`BeforeServiceInvoke`](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.PivotView.PivotView.html#Syncfusion_EJ2_PivotView_PivotView_BeforeServiceInvoke) event is triggered, the event argument provides access to the request details and includes a `customProperties` field.
762762

763763
{% if page.publishingplatform == "aspnet-core" %}
764764

@@ -767,7 +767,7 @@ When the [`beforeServiceInvoke`](https://help.syncfusion.com/cr/aspnetmvc-js2/Sy
767767
{% include code-snippet/pivot-table/getting-start-mvc/olap-beforeserviceinvoke/tagHelper %}
768768
{% endhighlight %}
769769
{% highlight c# tabtitle="BeforeServiceInvoke.cs" %}
770-
{% include code-snippet/pivot-table/getting-start-mvc/olap-beforeserviceinvoke/beforeServiceInvoke.cs %}
770+
{% include code-snippet/pivot-table/getting-start-mvc/olap-beforeserviceinvoke/olap-beforeServiceInvoke.cs %}
771771
{% endhighlight %}
772772
{% endtabs %}
773773

@@ -778,20 +778,20 @@ When the [`beforeServiceInvoke`](https://help.syncfusion.com/cr/aspnetmvc-js2/Sy
778778
{% include code-snippet/pivot-table/getting-start-mvc/olap-beforeserviceinvoke/razor %}
779779
{% endhighlight %}
780780
{% highlight c# tabtitle="BeforeServiceInvoke.cs" %}
781-
{% include code-snippet/pivot-table/getting-start-mvc/olap-beforeserviceinvoke/beforeServiceInvoke.cs %}
781+
{% include code-snippet/pivot-table/getting-start-mvc/olap-beforeserviceinvoke/olap-beforeServiceInvoke.cs %}
782782
{% endhighlight %}
783783
{% endtabs %}
784784
{% endif %}
785785

786786
### AfterServiceInvoke
787787

788-
The [`afterServiceInvoke`](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.PivotView.PivotView.html#Syncfusion_EJ2_PivotView_PivotView_AfterServiceInvoke) event is triggered in the Pivot Table and Field List components during the onSuccess phase of every OLAP service request.
788+
The [`AfterServiceInvoke`](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.PivotView.PivotView.html#Syncfusion_EJ2_PivotView_PivotView_AfterServiceInvoke) event is triggered in the Pivot Table and Field List components during the onSuccess phase of every OLAP service request.
789789

790790
* This event is useful for performing post-processing, logging actions, or updating the UI after receiving a successful response from the OLAP server.
791791

792792
* You may use it to audit data, trigger notifications, or handle custom response-handling logic.
793793

794-
When the [`afterServiceInvoke`](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.PivotView.PivotView.html#Syncfusion_EJ2_PivotView_PivotView_AfterServiceInvoke) event is triggered, the event argument provides access to the server response details, including properties such as the action performed and the result data returned from the OLAP server.
794+
When the [`AfterServiceInvoke`](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.PivotView.PivotView.html#Syncfusion_EJ2_PivotView_PivotView_AfterServiceInvoke) event is triggered, the event argument provides access to the server response details, including properties such as the action performed and the result data returned from the OLAP server.
795795

796796
{% if page.publishingplatform == "aspnet-core" %}
797797

@@ -800,7 +800,7 @@ When the [`afterServiceInvoke`](https://help.syncfusion.com/cr/aspnetmvc-js2/Syn
800800
{% include code-snippet/pivot-table/getting-start-mvc/olap-afterServiceInvoke/tagHelper %}
801801
{% endhighlight %}
802802
{% highlight c# tabtitle="AfterServiceInvoke.cs" %}
803-
{% include code-snippet/pivot-table/getting-start-mvc/olap-afterServiceInvoke/afterServiceInvoke.cs %}
803+
{% include code-snippet/pivot-table/getting-start-mvc/olap-afterServiceInvoke/olap-afterServiceInvoke.cs %}
804804
{% endhighlight %}
805805
{% endtabs %}
806806

@@ -811,7 +811,7 @@ When the [`afterServiceInvoke`](https://help.syncfusion.com/cr/aspnetmvc-js2/Syn
811811
{% include code-snippet/pivot-table/getting-start-mvc/olap-afterServiceInvoke/razor %}
812812
{% endhighlight %}
813813
{% highlight c# tabtitle="AfterServiceInvoke.cs" %}
814-
{% include code-snippet/pivot-table/getting-start-mvc/olap-afterServiceInvoke/afterServiceInvoke.cs %}
814+
{% include code-snippet/pivot-table/getting-start-mvc/olap-afterServiceInvoke/olap-afterServiceInvoke.cs %}
815815
{% endhighlight %}
816816
{% endtabs %}
817817
{% endif %}

ej2-asp-core-mvc/pivot-table/EJ2_ASP.NETCORE/olap.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ publishingplatform: ##Platform_Name##
88
documentation: ug
99
---
1010

11-
# OLAP in ##Platform_Name## Pivot Table component
11+
# OLAP in ASP.NET CORE Pivot Table component
1212

1313
## Getting Started with ASP.NET Core
1414

@@ -56,7 +56,7 @@ N> The Syncfusion.EJ2.AspNet.Core NuGet package has dependencies, [`Newtonsoft.J
5656
@addTagHelper *, Syncfusion.EJ2
5757
```
5858

59-
**Step 4:** Add the client-side resources through [CDN](https://ej2.syncfusion.com/documentation/deployment/#cdn) or [local npm package](https://www.npmjs.com/package/@syncfusion/ej2) in the `<head>` element of the `~/Views/Shared/_Layout.cshtml` layout page.
59+
**Step 4:** Add the client-side resources through [CDN](https://ej2.syncfusion.com/documentation/deployment#cdn) or [local npm package](https://www.npmjs.com/package/@syncfusion/ej2) in the `<head>` element of the `~/Views/Shared/_Layout.cshtml` layout page.
6060

6161
```html
6262
<head>
@@ -739,7 +739,7 @@ When the [`beforeServiceInvoke`](https://help.syncfusion.com/cr/aspnetcore-js2/S
739739
{% include code-snippet/pivot-table/getting-start-mvc/olap-beforeserviceinvoke/tagHelper %}
740740
{% endhighlight %}
741741
{% highlight c# tabtitle="BeforeServiceInvoke.cs" %}
742-
{% include code-snippet/pivot-table/getting-start-mvc/olap-beforeserviceinvoke/beforeServiceInvoke.cs %}
742+
{% include code-snippet/pivot-table/getting-start-mvc/olap-beforeserviceinvoke/olap-beforeServiceInvoke.cs %}
743743
{% endhighlight %}
744744
{% endtabs %}
745745

@@ -750,7 +750,7 @@ When the [`beforeServiceInvoke`](https://help.syncfusion.com/cr/aspnetcore-js2/S
750750
{% include code-snippet/pivot-table/getting-start-mvc/olap-beforeserviceinvoke/razor %}
751751
{% endhighlight %}
752752
{% highlight c# tabtitle="BeforeServiceInvoke.cs" %}
753-
{% include code-snippet/pivot-table/getting-start-mvc/olap-beforeserviceinvoke/beforeServiceInvoke.cs %}
753+
{% include code-snippet/pivot-table/getting-start-mvc/olap-beforeserviceinvoke/olap-beforeServiceInvoke.cs %}
754754
{% endhighlight %}
755755
{% endtabs %}
756756
{% endif %}
@@ -772,7 +772,7 @@ When the [`afterServiceInvoke`](https://help.syncfusion.com/cr/aspnetcore-js2/Sy
772772
{% include code-snippet/pivot-table/getting-start-mvc/olap-afterServiceInvoke/tagHelper %}
773773
{% endhighlight %}
774774
{% highlight c# tabtitle="AfterServiceInvoke.cs" %}
775-
{% include code-snippet/pivot-table/getting-start-mvc/olap-afterServiceInvoke/afterServiceInvoke.cs %}
775+
{% include code-snippet/pivot-table/getting-start-mvc/olap-afterServiceInvoke/olap-afterServiceInvoke.cs %}
776776
{% endhighlight %}
777777
{% endtabs %}
778778

@@ -783,7 +783,7 @@ When the [`afterServiceInvoke`](https://help.syncfusion.com/cr/aspnetcore-js2/Sy
783783
{% include code-snippet/pivot-table/getting-start-mvc/olap-afterServiceInvoke/razor %}
784784
{% endhighlight %}
785785
{% highlight c# tabtitle="AfterServiceInvoke.cs" %}
786-
{% include code-snippet/pivot-table/getting-start-mvc/olap-afterServiceInvoke/afterServiceInvoke.cs %}
786+
{% include code-snippet/pivot-table/getting-start-mvc/olap-afterServiceInvoke/olap-afterServiceInvoke.cs %}
787787
{% endhighlight %}
788788
{% endtabs %}
789789
{% endif %}

0 commit comments

Comments
 (0)