diff --git a/ej2-blazor-samples/Pages/Buttons/Button/DropDownButton.razor b/ej2-blazor-samples/Pages/Buttons/Button/DropDownButton.razor index 75c06d09b..1d92221cf 100644 --- a/ej2-blazor-samples/Pages/Buttons/Button/DropDownButton.razor +++ b/ej2-blazor-samples/Pages/Buttons/Button/DropDownButton.razor @@ -1,18 +1,19 @@ @page "/Buttons/DropDownButton" -@using Syncfusion.EJ2.RazorComponents.Buttons +@using Syncfusion.EJ2.RazorComponents.SplitButtons + @*Hidden:Lines*@ @using ej2_blazor_samples @{ - SampleBrowser.CurrentSampleName = SampleBrowser.Config.Button[4].Name; - SampleBrowser.CurrentControlName = "Button"; - SampleBrowser.CurrentControlCategory = "Button"; - SampleBrowser.CurrentControl = SampleBrowser.Config.Button; - SampleBrowser.ActionDescription = new string[] { + SampleBrowser.CurrentSampleName = SampleBrowser.Config.Button[4].Name; + SampleBrowser.CurrentControlName = "Button"; + SampleBrowser.CurrentControlCategory = "Button"; + SampleBrowser.CurrentControl = SampleBrowser.Config.Button; + SampleBrowser.ActionDescription = new string[] { @"
This sample demonstrates the default functionalities of the DropDownButton. Clicking DropDownButton will display popup with list of action items.
The DropDownButton component is used to toggle contextual overlays for displaying list of action items. It can contain both text and images.
This sample demonstrates that the default functionalities of MaskedTextBox component. Enter numeric value for “Mobile Number” textbox then press tab key and then enter “Country ISO Code” in alphabetic format, then type “D.O.B” in numeric format. Finally enter the “Product Key” in alpha numeric format.
@@ -26,7 +28,7 @@ documentation section .
This sample demonstrates the custom format functionalities of the Numeric TextBox. The value of Numeric TextBox will be displayed with defined custom format while type a value or change a value using up/down buttons in the input boxes.
The NumericTextBox provides an option to customize the display format of the numeric value using the format property. It accepts the standard numeric format string and custom numeric format string as specified in MSDN. The formatted value displays when the component is not focused. @@ -65,5 +67,4 @@ padding: 24px 0px 10px 0px; font-size: 12px; } - \ No newline at end of file diff --git a/ej2-blazor-samples/Pages/Inputs/NumericTextBox/DefaultFunctionalities.razor b/ej2-blazor-samples/Pages/Inputs/NumericTextBox/DefaultFunctionalities.razor index d680ff045..3df671373 100644 --- a/ej2-blazor-samples/Pages/Inputs/NumericTextBox/DefaultFunctionalities.razor +++ b/ej2-blazor-samples/Pages/Inputs/NumericTextBox/DefaultFunctionalities.razor @@ -1,5 +1,7 @@ @page "/NumericTextBox/DefaultFunctionalities" +@using Syncfusion.EJ2.RazorComponents.Inputs + @*Hidden:Lines*@ @using ej2_blazor_samples @{ @@ -68,5 +70,4 @@ padding: 24px 0px 10px 0px; font-size: 12px; } - diff --git a/ej2-blazor-samples/Pages/Inputs/NumericTextBox/RestrictDecimals.razor b/ej2-blazor-samples/Pages/Inputs/NumericTextBox/RestrictDecimals.razor index b397477d0..8244ea144 100644 --- a/ej2-blazor-samples/Pages/Inputs/NumericTextBox/RestrictDecimals.razor +++ b/ej2-blazor-samples/Pages/Inputs/NumericTextBox/RestrictDecimals.razor @@ -1,5 +1,7 @@ @page "/NumericTextBox/RestrictDecimals" +@using Syncfusion.EJ2.RazorComponents.Inputs + @*Hidden:Lines*@ @using ej2_blazor_samples @{ @@ -10,7 +12,7 @@ SampleBrowser.ActionDescription = new string[] { @"
This sample demonstrates the decimal functionalities of the Numeric TextBox. Type a value in the input element to change dynamically, and it allows maximum of 3 decimal digits.
@@ -23,7 +25,7 @@ documentation section .