From f2f748f07b57ca928ad6632a7bfd5d187f55270a Mon Sep 17 00:00:00 2001 From: Galip Tolga Erdem Date: Sat, 21 Mar 2020 02:15:25 +0300 Subject: [PATCH 1/2] added popover documentation --- docs/en/UI/AspNetCore/Tag-Helpers/Popovers.md | 42 +++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 docs/en/UI/AspNetCore/Tag-Helpers/Popovers.md diff --git a/docs/en/UI/AspNetCore/Tag-Helpers/Popovers.md b/docs/en/UI/AspNetCore/Tag-Helpers/Popovers.md new file mode 100644 index 0000000000..d56b3fa0a5 --- /dev/null +++ b/docs/en/UI/AspNetCore/Tag-Helpers/Popovers.md @@ -0,0 +1,42 @@ +# Popovers + +## Introduction + +`abp-popover` is the abp tag for popover messages. + +Basic usage: + +````xml + + Popover Default + +```` + + + +## Demo + +See the [popovers demo page](https://bootstrap-taghelpers.abp.io/Components/Popovers) to see it in action. + +## Attributes + +### disabled + +A value indicates if the element should be disabled for interaction. If this value is set to `true`, `dismissable` attribute will be ignored. Should be one of the following values: + +* `false` (default value) +* `true` + +### dismissable + +A value indicates to dismiss the popovers on the user's next click of a different element than the toggle element. If this value is set to `true`, `hoverable` attribute will be ignored. Should be one of the following values: + +* `false` (default value) +* `true` + +### hoverable + +A value indicates if the popover content will be displayed on mouse hover. Should be one of the following values: + +* `false` (default value) +* `true` \ No newline at end of file From 508883bd16a2c0cf859040302db7f007ac0204d3 Mon Sep 17 00:00:00 2001 From: Galip Tolga Erdem Date: Fri, 3 Apr 2020 18:34:39 +0300 Subject: [PATCH 2/2] updated dismissable info --- docs/en/UI/AspNetCore/Tag-Helpers/Popovers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/UI/AspNetCore/Tag-Helpers/Popovers.md b/docs/en/UI/AspNetCore/Tag-Helpers/Popovers.md index d56b3fa0a5..55bb9fb0f6 100644 --- a/docs/en/UI/AspNetCore/Tag-Helpers/Popovers.md +++ b/docs/en/UI/AspNetCore/Tag-Helpers/Popovers.md @@ -29,7 +29,7 @@ A value indicates if the element should be disabled for interaction. If this val ### dismissable -A value indicates to dismiss the popovers on the user's next click of a different element than the toggle element. If this value is set to `true`, `hoverable` attribute will be ignored. Should be one of the following values: +A value indicates to dismiss the popovers on the user's next click of a different element than the toggle element. Should be one of the following values: * `false` (default value) * `true`