Browse Source

Merge pull request #3283 from gterdem/pr/popovers_documentation

Create documentation for Popovers Tag Helper
pull/3494/head
Yunus Emre Kalkan 6 years ago
committed by GitHub
parent
commit
70c484b72e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 42
      docs/en/UI/AspNetCore/Tag-Helpers/Popovers.md

42
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
<abp-button abp-popover="Hi, i'm popover content!">
Popover Default
</abp-button>
````
## 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. 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`
Loading…
Cancel
Save