diff --git a/components/grid/templates/popup-form-template.md b/components/grid/templates/popup-form-template.md index 6020fb5e2..9a3f98699 100644 --- a/components/grid/templates/popup-form-template.md +++ b/components/grid/templates/popup-form-template.md @@ -26,10 +26,13 @@ With the `FormTemplate` feature, you can customize the appearance and content of ## Specifics -When using the template, the default Popup form is replaced by the declared content within the `FormTemplate` tag. This introduces the following specifics: +When using the template, the built-in popup form is replaced by the declared content in the `FormTemplate` tag. This introduces the following specifics: -* The default **Update** and **Cancel** buttons are removed. This means that the [`OnUpdate` and `OnCancel`](slug:grid-editing-overview#events) events do not fire. To modify or cancel the update of a record, you need to include custom components to manage these actions. -* The popup footer remains empty by design. You can [either hide it or place your custom buttons in it](slug:grid-kb-handle-empty-popup-footer). +* The default **Update** and **Cancel** buttons are removed. This means that the [`OnUpdate` and `OnCancel`](slug:grid-editing-overview#events) events do not fire. To modify or cancel the update of a record, you need to include custom components or events to manage these actions. +* There are [two ways to define custom Form buttons](slug:grid-kb-handle-empty-popup-footer): + * Use the [Form `` template](slug:form-formitems-buttons). + * Use the [Grid ``](slug:grid-templates-popup-buttons), which is empty by default when using a ``. Remove the duplicate [built-in Form Submit button with an empty `` template](slug:form-formitems-buttons). +* If you leave the Grid popup footer (``) empty, it takes up space in the popup. You can [remove this empty popup footer space with CSS](slug:grid-kb-handle-empty-popup-footer). * The `FormTemplate` disables the [built-in validation](slug:grid-editing-validation) of the Grid. Implement a [Form Validation](slug:form-validation) instead. * The [`` parameters](slug:grid-editing-popup#form-layout) do not apply to a custom `TelerikForm` that you may render inside the `` tag. Set the desired Form configurations such as `Columns`, `Orientation`, and more on the [Form component](slug:form-overview#form-parameters).