From a04e8fb26542a93f9b85af1ca5130d91c96bd5da Mon Sep 17 00:00:00 2001 From: Galip Tolga Erdem Date: Wed, 10 Jun 2020 15:36:15 +0300 Subject: [PATCH] Create Tables.md --- docs/en/UI/AspNetCore/Tag-Helpers/Tables.md | 61 +++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 docs/en/UI/AspNetCore/Tag-Helpers/Tables.md diff --git a/docs/en/UI/AspNetCore/Tag-Helpers/Tables.md b/docs/en/UI/AspNetCore/Tag-Helpers/Tables.md new file mode 100644 index 0000000000..50e6c3baf9 --- /dev/null +++ b/docs/en/UI/AspNetCore/Tag-Helpers/Tables.md @@ -0,0 +1,61 @@ +# Tables + +## Introduction + +`abp-table` is the basic tag component for tables in abp. + +Basic usage: + +````csharp + + + + # + First + Last + Handle + + + + + 1 + Mark + Otto + mdo + + + 2 + Jacob + Thornton + fat + + + 3 + Larry + the Bird + twitter + + + +```` + + + +## Demo + +See the [tables demo page](https://bootstrap-taghelpers.abp.io/Components/Tables) to see it in action. + +## abp-table Attributes + +- **responsive**: Used to create responsive tables up to a particular breakpoint. see [breakpoint specific](https://getbootstrap.com/docs/4.1/content/tables/#breakpoint-specific) for more information. +- **responsive-sm**: If not set to false, sets the table responsiveness for small screen devices. +- **responsive-md**: If not set to false, sets the table responsiveness for medium screen devices. +- **responsive-lg**: If not set to false, sets the table responsiveness for large screen devices. +- **responsive-xl**: If not set to false, sets the table responsiveness for extra large screen devices. +- **dark-theme**: If set to true, sets the table color theme to dark. +- **striped-rows**: If set to true, adds zebra-striping to table rows. +- **hoverable-rows**: If set to true, adds hover state to table rows. +- **border-style**: Sets the border style of the table. Should be one of the following values: + - `Default` (default) + - `Bordered` + - `Borderless`