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
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The below topics can help you to use the Syncfusion ASP.NET Core Razor Component
The samples requires the below requirements to run.

* [Visual Studio 2019](https://visualstudio.microsoft.com/downloads/#2019rc)
* [.NET Core SDK 3.0 Preview3](https://dotnet.microsoft.com/download/dotnet-core/3.0)
* [.NET Core SDK 3.0 Preview4](https://dotnet.microsoft.com/download/dotnet-core/3.0)

## Using the samples

Expand All @@ -27,7 +27,7 @@ The samples requires the below requirements to run.

## Documentation

All controls documentation for the Syncfusion ASP.NET Core Razor Components can be found on [Syncfusion Help](https://ej2.syncfusion.com/aspnet-core-razor-components/documentation/introduction/).
All controls documentation for the Syncfusion ASP.NET Core Razor Components can be found on [Syncfusion Help](https://ej2.syncfusion.com/aspnet-core-blazor/documentation/introduction/).

## License

Expand Down Expand Up @@ -155,18 +155,18 @@ The Syncfusion license that contains the terms and conditions can be found at
<a href="ej2-blazor-samples/Pages/Buttons">Button</a>
</td>
<td>
<a href="ej2-blazor-samples/Pages/Buttons/Button/ButtonGroup.cshtml">Button Group</a>
<a href="ej2-blazor-samples/Pages/Buttons/Button/ButtonGroup.razor">Button Group</a>
</td>
<td>
<a href="ej2-blazor-samples/Pages/Buttons/Button/DropDownButton.cshtml">Dropdown Menu</a>
<a href="ej2-blazor-samples/Pages/Buttons/Button/DropDownButton.razor">Dropdown Menu</a>
</td>
</tr>
<tr>
<td>
<a href="ej2-blazor-samples/Pages/Buttons/Button/ProgressButton.cshtml">Progress Button</a>
<a href="ej2-blazor-samples/Pages/Buttons/Button/ProgressButton.razor">Progress Button</a>
</td>
<td>
<a href="ej2-blazor-samples/Pages/Buttons/Button/SplitButton.cshtml">Split Button</a>
<a href="ej2-blazor-samples/Pages/Buttons/Button/SplitButton.razor">Split Button</a>
</td>
<td></td>
</tr>
Expand Down Expand Up @@ -245,10 +245,10 @@ The Syncfusion license that contains the terms and conditions can be found at
</tr>
<tr>
<td>
<a href="ej2-blazor-samples/Pages/Buttons/Button/RadioButton.cshtml">Radio Button</a>
<a href="ej2-blazor-samples/Pages/Buttons/Button/RadioButton.razor">Radio Button</a>
</td>
<td>
<a href="ej2-blazor-samples/Pages/Buttons/Button/CheckBox.cshtml">Checkbox</a>
<a href="ej2-blazor-samples/Pages/Buttons/Button/CheckBox.razor">Checkbox</a>
</td>
<td>
<a href="ej2-blazor-samples/Pages/Inputs/ColorPicker">Color Picker</a>
Expand All @@ -262,7 +262,7 @@ The Syncfusion license that contains the terms and conditions can be found at
<a href="ej2-blazor-samples/Pages/Inputs/Slider">Range Slider</a>
</td>
<td>
<a href="ej2-blazor-samples/Pages/Buttons/Button/Switch.cshtml">Toggle Switch Button</a>
<a href="ej2-blazor-samples/Pages/Buttons/Button/Switch.razor">Toggle Switch Button</a>
</td>
</tr>
<tr>
Expand Down
5 changes: 0 additions & 5 deletions ej2-blazor-samples/App.cshtml

This file was deleted.

1 change: 1 addition & 0 deletions ej2-blazor-samples/App.razor
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<Router AppAssembly="typeof(Program).Assembly" />
18 changes: 9 additions & 9 deletions ej2-blazor-samples/Pages/Buttons/SampleList.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,63 +14,63 @@ internal partial class SampleConfig
Category = "Button",
Directory = "Buttons/Button",
Url = "Buttons/DefaultFunctionalities",
FileName = "DefaultFunctionalities.cshtml"
FileName = "DefaultFunctionalities.razor"
},
new Sample
{
Name = "ButtonGroup",
Category = "Button",
Directory = "Buttons/Button",
Url = "Buttons/ButtonGroup",
FileName = "ButtonGroup.cshtml"
FileName = "ButtonGroup.razor"
},
new Sample
{
Name = "CheckBox",
Category = "Button",
Directory = "Buttons/Button",
Url = "Buttons/CheckBox",
FileName = "CheckBox.cshtml"
FileName = "CheckBox.razor"
},
new Sample
{
Name = "RadioButton",
Category = "Button",
Directory = "Buttons/Button",
Url = "Buttons/RadioButton",
FileName = "RadioButton.cshtml"
FileName = "RadioButton.razor"
},
new Sample
{
Name = "DropDownButton",
Category = "Button",
Directory = "Buttons/Button",
Url = "Buttons/DropDownButton",
FileName = "DropDownButton.cshtml"
FileName = "DropDownButton.razor"
},
new Sample
{
Name = "SplitButton",
Category = "Button",
Directory = "Buttons/Button",
Url = "Buttons/SplitButton",
FileName = "SplitButton.cshtml"
FileName = "SplitButton.razor"
},
new Sample
{
Name = "Switch",
Category = "Button",
Directory = "Buttons/Button",
Url = "Buttons/Switch",
FileName = "Switch.cshtml"
FileName = "Switch.razor"
},
new Sample
{
Name = "ProgressButton",
Category = "Button",
Directory = "Buttons/Button",
Url = "Buttons/ProgressButton",
FileName = "ProgressButton.cshtml"
FileName = "ProgressButton.razor"
},
};
public List<Sample> Chips { get; set; } = new List<Sample>{
Expand All @@ -80,7 +80,7 @@ internal partial class SampleConfig
Category = "Chips",
Directory = "Buttons/Chips",
Url = "Chips/DefaultFunctionalities",
FileName = "DefaultFunctionalities.cshtml",
FileName = "DefaultFunctionalities.razor",
Type = SampleType.New
}

Expand Down
28 changes: 14 additions & 14 deletions ej2-blazor-samples/Pages/Calendars/SampleList.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ internal partial class SampleConfig
Category = "Calendar",
Directory = "Calendars/Calendar",
Url = "Calendar/DefaultFunctionalities",
FileName = "DefaultFunctionalities.cshtml",
FileName = "DefaultFunctionalities.razor",
Type = SampleType.New,
},
new Sample
Expand All @@ -23,7 +23,7 @@ internal partial class SampleConfig
Category = "Calendar",
Directory = "Calendars/Calendar",
Url = "Calendar/DateRange",
FileName = "DateRange.cshtml",
FileName = "DateRange.razor",
Type = SampleType.New,
},
new Sample
Expand All @@ -32,7 +32,7 @@ internal partial class SampleConfig
Category = "Calendar",
Directory = "Calendars/Calendar",
Url = "Calendar/MultiSelection",
FileName = "MultiSelection.cshtml",
FileName = "MultiSelection.razor",
Type = SampleType.New,
}
};
Expand All @@ -44,7 +44,7 @@ internal partial class SampleConfig
Category = "DatePicker",
Directory = "Calendars/DatePicker",
Url = "DatePicker/DefaultFunctionalities",
FileName = "DefaultFunctionalities.cshtml",
FileName = "DefaultFunctionalities.razor",
Type = SampleType.New,
},
new Sample
Expand All @@ -53,7 +53,7 @@ internal partial class SampleConfig
Category = "DatePicker",
Directory = "Calendars/DatePicker",
Url = "DatePicker/DateRange",
FileName = "DateRange.cshtml",
FileName = "DateRange.razor",
Type = SampleType.New,
},
new Sample
Expand All @@ -62,7 +62,7 @@ internal partial class SampleConfig
Category = "DatePicker",
Directory = "Calendars/DatePicker",
Url = "DatePicker/Format",
FileName = "Format.cshtml",
FileName = "Format.razor",
Type = SampleType.New,
}
};
Expand All @@ -74,7 +74,7 @@ internal partial class SampleConfig
Category = "DateTimePicker",
Directory = "Calendars/DateTimePicker",
Url = "DateTimePicker/DefaultFunctionalities",
FileName = "DefaultFunctionalities.cshtml",
FileName = "DefaultFunctionalities.razor",
Type = SampleType.New,
},
new Sample
Expand All @@ -83,7 +83,7 @@ internal partial class SampleConfig
Category = "DateTimePicker",
Directory = "Calendars/DateTimePicker",
Url = "DateTimePicker/DateTimeRange",
FileName = "DateTimeRange.cshtml",
FileName = "DateTimeRange.razor",
Type = SampleType.New,
},
new Sample
Expand All @@ -92,7 +92,7 @@ internal partial class SampleConfig
Category = "DateTimePicker",
Directory = "Calendars/DateTimePicker",
Url = "DateTimePicker/Format",
FileName = "Format.cshtml",
FileName = "Format.razor",
Type = SampleType.New,
},
};
Expand All @@ -105,7 +105,7 @@ internal partial class SampleConfig
Category = "TimePicker",
Directory = "Calendars/TimePicker",
Url = "TimePicker/DefaultFunctionalities",
FileName = "DefaultFunctionalities.cshtml",
FileName = "DefaultFunctionalities.razor",
Type = SampleType.New,
},
new Sample
Expand All @@ -114,7 +114,7 @@ internal partial class SampleConfig
Category = "TimePicker",
Directory = "Calendars/TimePicker",
Url = "TimePicker/Format",
FileName = "Format.cshtml",
FileName = "Format.razor",
Type = SampleType.New,
}
};
Expand All @@ -127,7 +127,7 @@ internal partial class SampleConfig
Category = "DateRangePicker",
Directory = "Calendars/DateRangePicker",
Url = "DateRangePicker/DefaultFunctionalities",
FileName = "DefaultFunctionalities.cshtml",
FileName = "DefaultFunctionalities.razor",
Type = SampleType.New,
},
new Sample
Expand All @@ -136,7 +136,7 @@ internal partial class SampleConfig
Category = "DateRangePicker",
Directory = "Calendars/DateRangePicker",
Url = "DateRangePicker/DateRange",
FileName = "DateRange.cshtml",
FileName = "DateRange.razor",
Type = SampleType.New,
},
new Sample
Expand All @@ -145,7 +145,7 @@ internal partial class SampleConfig
Category = "DateRangePicker",
Directory = "Calendars/DateRangePicker",
Url = "DateRangePicker/Format",
FileName = "Format.cshtml",
FileName = "Format.razor",
Type = SampleType.New,
}
};
Expand Down
26 changes: 13 additions & 13 deletions ej2-blazor-samples/Pages/Charts/SampleList.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ internal partial class SampleConfig
Category = "Chart",
Directory = "Charts/Chart",
Url = "Charts/DefaultFunctionalities",
FileName = "DefaultFunctionalities.cshtml",
FileName = "DefaultFunctionalities.razor",
Type = SampleType.New
},
new Sample
Expand All @@ -23,7 +23,7 @@ internal partial class SampleConfig
Category = "Chart",
Directory = "Charts/Chart",
Url = "Charts/bar",
FileName = "Bar.cshtml",
FileName = "Bar.razor",
Type = SampleType.New
},
new Sample
Expand All @@ -32,7 +32,7 @@ internal partial class SampleConfig
Category = "Chart",
Directory = "Charts/Chart",
Url = "Charts/Pie",
FileName = "Pie.cshtml",
FileName = "Pie.razor",
Type = SampleType.New
},
new Sample
Expand All @@ -41,7 +41,7 @@ internal partial class SampleConfig
Category = "Chart",
Directory = "Charts/Chart",
Url = "Charts/polar",
FileName = "Polar.cshtml",
FileName = "Polar.razor",
Type = SampleType.New
},
new Sample
Expand All @@ -50,7 +50,7 @@ internal partial class SampleConfig
Category = "Chart",
Directory = "Charts/Chart",
Url = "Charts/Trackball",
FileName = "Trackball.cshtml",
FileName = "Trackball.razor",
Type = SampleType.New
}
};
Expand All @@ -62,7 +62,7 @@ internal partial class SampleConfig
Category = "Range Navigator",
Directory = "Charts/RangeNavigator",
Url = "Charts/RangeNavigator",
FileName = "RangeNavigator.cshtml",
FileName = "RangeNavigator.razor",
Type = SampleType.New
},
new Sample
Expand All @@ -71,7 +71,7 @@ internal partial class SampleConfig
Category = "Range Navigator",
Directory = "Charts/RangeNavigator",
Url = "Charts/LightWeight",
FileName = "LightWeight.cshtml",
FileName = "LightWeight.razor",
Type = SampleType.New
}
};
Expand All @@ -83,7 +83,7 @@ internal partial class SampleConfig
Category = "Sparkline",
Directory = "Charts/Sparkline",
Url = "Sparkline/DefaultFunctionalities",
FileName = "DefaultFunctionalities.cshtml",
FileName = "DefaultFunctionalities.razor",
Type = SampleType.New,
},
new Sample
Expand All @@ -92,7 +92,7 @@ internal partial class SampleConfig
Category = "Sparkline",
Directory = "Charts/Sparkline",
Url = "Sparkline/SeriesType",
FileName = "SeriesType.cshtml",
FileName = "SeriesType.razor",
Type = SampleType.New,
}
};
Expand All @@ -104,7 +104,7 @@ internal partial class SampleConfig
Category = "SmithChart",
Directory = "Charts/SmithChart",
Url = "SmithChart/DefaultFunctionalities",
FileName = "DefaultFunctionalities.cshtml",
FileName = "DefaultFunctionalities.razor",
Type = SampleType.New
},
new Sample
Expand All @@ -113,7 +113,7 @@ internal partial class SampleConfig
Category = "SmithChart",
Directory = "Charts/SmithChart",
Url = "SmithChart/Customization",
FileName = "Customization.cshtml",
FileName = "Customization.razor",
Type = SampleType.New
}
};
Expand All @@ -125,7 +125,7 @@ internal partial class SampleConfig
Category = "Stock Chart",
Directory = "Charts/StockChart",
Url = "Charts/StockChart",
FileName = "StockChart.cshtml",
FileName = "StockChart.razor",
Type = SampleType.New
},
new Sample
Expand All @@ -134,7 +134,7 @@ internal partial class SampleConfig
Category = "Stock Chart",
Directory = "Charts/StockChart",
Url = "Charts/HideSelector",
FileName = "HideSelector.cshtml",
FileName = "HideSelector.razor",
Type = SampleType.New
}
};
Expand Down
Loading