diff --git a/knowledge-base/common-extend-inherit-wrap-reuse-telerik-blazor-components.md b/knowledge-base/common-extend-inherit-wrap-reuse-telerik-blazor-components.md
index 765f92349..a48522d3b 100644
--- a/knowledge-base/common-extend-inherit-wrap-reuse-telerik-blazor-components.md
+++ b/knowledge-base/common-extend-inherit-wrap-reuse-telerik-blazor-components.md
@@ -49,7 +49,7 @@ On the other hand, neither option allows changing the internal HTML rendering of
### Wrap Telerik Components
-This approach allows you to add additional markup or other components next to the Telerik component.
+This approach allows you to add additional markup or other components next to the Telerik component. You can also define custom events for the component, which wraps the Telerik component.
1. Add the Telerik component to a separate `.razor` file, for example, `MyReusableComponent.razor`.
1. Implement the desired `MyReusableComponent` parameters and set the required parameters of the Telerik component.
@@ -89,9 +89,18 @@ Adjust the `YourAppName.BaseComponents` namespace in `Home.razor` and `Inherited
Class="my-combobox"
Filterable="true"
FilterOperator="@StringFilterOperator.Contains"
- Width="200px" />
-
-
Inherited ComboBox with additional API and default property values
+ Width="240px">
+
+
+
+
+
+
+
+
+
Inherited ComboBox with additional parameters and default property values