Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
config(EJ2-57260): issue in the code snippet was resolved
  • Loading branch information
jagufar committed Feb 7, 2022
commit d400a24dc20f4e23aee8d619e50a4873184ccf37
143 changes: 0 additions & 143 deletions ej2-asp-core-mvc/Overview.md

This file was deleted.

8 changes: 4 additions & 4 deletions ej2-asp-core-mvc/calendar/EJ2_ASP.MVC/getting-started-mvc.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,21 +54,21 @@ Here the Calendar allows you to select a date within the range from 5th to 27th

{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
{% include code-snippet/calendar/getting-started/daterange//tagHelper %}
{% include code-snippet/calendar/getting-started/daterange/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="Daterange.cs" %}
{% include code-snippet/calendar/getting-started/daterange//daterange.cs %}
{% include code-snippet/calendar/getting-started/daterange/daterange.cs %}
{% endhighlight %}
{% endtabs %}

{% elsif page.publishingplatform == "aspnet-mvc" %}

{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
{% include code-snippet/calendar/getting-started/daterange//razor %}
{% include code-snippet/calendar/getting-started/daterange/razor %}
{% endhighlight %}
{% highlight c# tabtitle="Daterange.cs" %}
{% include code-snippet/calendar/getting-started/daterange//daterange.cs %}
{% include code-snippet/calendar/getting-started/daterange/daterange.cs %}
{% endhighlight %}
{% endtabs %}
{% endif %}
Expand Down
8 changes: 4 additions & 4 deletions ej2-asp-core-mvc/calendar/EJ2_ASP.MVC/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,21 +54,21 @@ Here the Calendar allows you to select a date within the range from 5th to 27th

{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
{% include code-snippet/calendar/getting-started/daterange//tagHelper %}
{% include code-snippet/calendar/getting-started/daterange/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="Daterange.cs" %}
{% include code-snippet/calendar/getting-started/daterange//daterange.cs %}
{% include code-snippet/calendar/getting-started/daterange/daterange.cs %}
{% endhighlight %}
{% endtabs %}

{% elsif page.publishingplatform == "aspnet-mvc" %}

{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
{% include code-snippet/calendar/getting-started/daterange//razor %}
{% include code-snippet/calendar/getting-started/daterange/razor %}
{% endhighlight %}
{% highlight c# tabtitle="Daterange.cs" %}
{% include code-snippet/calendar/getting-started/daterange//daterange.cs %}
{% include code-snippet/calendar/getting-started/daterange/daterange.cs %}
{% endhighlight %}
{% endtabs %}
{% endif %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,21 +54,21 @@ Here the Calendar allows you to select a date within the range from 5th to 27th

{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
{% include code-snippet/calendar/getting-started/daterange//tagHelper %}
{% include code-snippet/calendar/getting-started/daterange/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="Daterange.cs" %}
{% include code-snippet/calendar/getting-started/daterange//daterange.cs %}
{% include code-snippet/calendar/getting-started/daterange/daterange.cs %}
{% endhighlight %}
{% endtabs %}

{% elsif page.publishingplatform == "aspnet-mvc" %}

{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
{% include code-snippet/calendar/getting-started/daterange//razor %}
{% include code-snippet/calendar/getting-started/daterange/razor %}
{% endhighlight %}
{% highlight c# tabtitle="Daterange.cs" %}
{% include code-snippet/calendar/getting-started/daterange//daterange.cs %}
{% include code-snippet/calendar/getting-started/daterange/daterange.cs %}
{% endhighlight %}
{% endtabs %}
{% endif %}
Expand Down
8 changes: 4 additions & 4 deletions ej2-asp-core-mvc/calendar/EJ2_ASP.NETCORE/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,21 +54,21 @@ Here the Calendar allows you to select a date within the range from 5th to 27th

{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
{% include code-snippet/calendar/getting-started/daterange//tagHelper %}
{% include code-snippet/calendar/getting-started/daterange/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="Daterange.cs" %}
{% include code-snippet/calendar/getting-started/daterange//daterange.cs %}
{% include code-snippet/calendar/getting-started/daterange/daterange.cs %}
{% endhighlight %}
{% endtabs %}

{% elsif page.publishingplatform == "aspnet-mvc" %}

{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
{% include code-snippet/calendar/getting-started/daterange//razor %}
{% include code-snippet/calendar/getting-started/daterange/razor %}
{% endhighlight %}
{% highlight c# tabtitle="Daterange.cs" %}
{% include code-snippet/calendar/getting-started/daterange//daterange.cs %}
{% include code-snippet/calendar/getting-started/daterange/daterange.cs %}
{% endhighlight %}
{% endtabs %}
{% endif %}
Expand Down
8 changes: 4 additions & 4 deletions ej2-asp-core-mvc/calendar/date-range.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,21 @@ The following example allows you to select a date within the range of 7th to 27t

{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
{% include code-snippet/calendar/daterange//tagHelper %}
{% include code-snippet/calendar/daterange/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="Daterange.cs" %}
{% include code-snippet/calendar/daterange//daterange.cs %}
{% include code-snippet/calendar/daterange/daterange.cs %}
{% endhighlight %}
{% endtabs %}

{% elsif page.publishingplatform == "aspnet-mvc" %}

{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
{% include code-snippet/calendar/daterange//razor %}
{% include code-snippet/calendar/daterange/razor %}
{% endhighlight %}
{% highlight c# tabtitle="Daterange.cs" %}
{% include code-snippet/calendar/daterange//daterange.cs %}
{% include code-snippet/calendar/daterange/daterange.cs %}
{% endhighlight %}
{% endtabs %}
{% endif %}
Expand Down
16 changes: 8 additions & 8 deletions ej2-asp-core-mvc/dashboard-layout/EJ2_ASP.MVC/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,21 +34,21 @@ In the following sample, the dashboardlayout is rendered with [`panels`](https:/

{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
{% include code-snippet/dashboard-layout/getting-started//tagHelper %}
{% include code-snippet/dashboard-layout/getting-started/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="HomeController.cs" %}
{% include code-snippet/dashboard-layout/getting-started//HomeController.cs %}
{% include code-snippet/dashboard-layout/getting-started/HomeController.cs %}
{% endhighlight %}
{% endtabs %}

{% elsif page.publishingplatform == "aspnet-mvc" %}

{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
{% include code-snippet/dashboard-layout/getting-started//razor %}
{% include code-snippet/dashboard-layout/getting-started/razor %}
{% endhighlight %}
{% highlight c# tabtitle="HomeController.cs" %}
{% include code-snippet/dashboard-layout/getting-started//HomeController.cs %}
{% include code-snippet/dashboard-layout/getting-started/HomeController.cs %}
{% endhighlight %}
{% endtabs %}
{% endif %}
Expand All @@ -69,21 +69,21 @@ In the following sample, the dashboardlayout is rendered with [`panels`](https:/

{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
{% include code-snippet/dashboard-layout/getting-started-panel//tagHelper %}
{% include code-snippet/dashboard-layout/getting-started-panel/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="HomeController.cs" %}
{% include code-snippet/dashboard-layout/getting-started-panel//HomeController.cs %}
{% include code-snippet/dashboard-layout/getting-started-panel/HomeController.cs %}
{% endhighlight %}
{% endtabs %}

{% elsif page.publishingplatform == "aspnet-mvc" %}

{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
{% include code-snippet/dashboard-layout/getting-started-panel//razor %}
{% include code-snippet/dashboard-layout/getting-started-panel/razor %}
{% endhighlight %}
{% highlight c# tabtitle="HomeController.cs" %}
{% include code-snippet/dashboard-layout/getting-started-panel//HomeController.cs %}
{% include code-snippet/dashboard-layout/getting-started-panel/HomeController.cs %}
{% endhighlight %}
{% endtabs %}
{% endif %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,21 +34,21 @@ In the following sample, the dashboardlayout is rendered with [`panels`](https:/

{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
{% include code-snippet/dashboard-layout/getting-started//tagHelper %}
{% include code-snippet/dashboard-layout/getting-started/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="HomeController.cs" %}
{% include code-snippet/dashboard-layout/getting-started//HomeController.cs %}
{% include code-snippet/dashboard-layout/getting-started/HomeController.cs %}
{% endhighlight %}
{% endtabs %}

{% elsif page.publishingplatform == "aspnet-mvc" %}

{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
{% include code-snippet/dashboard-layout/getting-started//razor %}
{% include code-snippet/dashboard-layout/getting-started/razor %}
{% endhighlight %}
{% highlight c# tabtitle="HomeController.cs" %}
{% include code-snippet/dashboard-layout/getting-started//HomeController.cs %}
{% include code-snippet/dashboard-layout/getting-started/HomeController.cs %}
{% endhighlight %}
{% endtabs %}
{% endif %}
Expand All @@ -69,21 +69,21 @@ In the following sample, the dashboardlayout is rendered with [`panels`](https:/

{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
{% include code-snippet/dashboard-layout/getting-started-panel//tagHelper %}
{% include code-snippet/dashboard-layout/getting-started-panel/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="HomeController.cs" %}
{% include code-snippet/dashboard-layout/getting-started-panel//HomeController.cs %}
{% include code-snippet/dashboard-layout/getting-started-panel/HomeController.cs %}
{% endhighlight %}
{% endtabs %}

{% elsif page.publishingplatform == "aspnet-mvc" %}

{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
{% include code-snippet/dashboard-layout/getting-started-panel//razor %}
{% include code-snippet/dashboard-layout/getting-started-panel/razor %}
{% endhighlight %}
{% highlight c# tabtitle="HomeController.cs" %}
{% include code-snippet/dashboard-layout/getting-started-panel//HomeController.cs %}
{% include code-snippet/dashboard-layout/getting-started-panel/HomeController.cs %}
{% endhighlight %}
{% endtabs %}
{% endif %}
Expand Down
Loading