From eeeae0749de6d1cc3634af66890e70157102733b Mon Sep 17 00:00:00 2001 From: KB Bot Date: Thu, 18 Jan 2024 10:07:15 +0000 Subject: [PATCH] Added new kb article floatingactionbutton-create-floating-save-button --- ...ctionbutton-create-floating-save-button.md | 55 +++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 knowledge-base/floatingactionbutton-create-floating-save-button.md diff --git a/knowledge-base/floatingactionbutton-create-floating-save-button.md b/knowledge-base/floatingactionbutton-create-floating-save-button.md new file mode 100644 index 000000000..2828a6ed0 --- /dev/null +++ b/knowledge-base/floatingactionbutton-create-floating-save-button.md @@ -0,0 +1,55 @@ +--- +title: Creating a Floating Save Button with RadFloatingActionButton for ASP.NET AJAX +description: Learn how to create a floating save button that moves with the user as they scroll using RadFloatingActionButton in Telerik UI for ASP.NET AJAX. +type: how-to +page_title: Create a Floating Save Button with RadFloatingActionButton +slug: floatingactionbutton-create-floating-save-button +tags: radfloatingactionbutton, floating save button, example, trial, ASP.NET AJAX +res_type: kb +--- + +## Environment + +| Property | Value | +| --- | --- | +| Product | RadFloatingActionButton for ASP.NET AJAX | +| Version | all | + +## Description + +To implement a floating save button on your page using Telerik UI for ASP.NET AJAX, you can use either the RadButton or the RadFloatingActionButton. Each control has its own features and styling options. + +## Solution with RadButton + +Add the RadButton control to your page and configure it with custom CSS to make the button float and follow the user as they scroll. + +```html + + + +``` + +To show a save icon, add the `` inner tag to the RadButton control. + +```html + + + +``` + +## Solution with RadFloatingActionButton + +Add the RadFloatingActionButton control to your page and set the `PositionMode` property to "Fixed" so that it scrolls with the user. Additionally, set the `Icon` property to "save" to load a Save icon. + +```html + + +``` +