|
4943 | 4943 | "DynamicIntro": "Data source is <code>DataTable</code>" |
4944 | 4944 | }, |
4945 | 4945 | "BootstrapBlazor.Shared.Samples.Table.Tables": { |
4946 | | - "RefreshText": "Refresh", |
4947 | 4946 | "ButtonAddColumnText": "Add Column", |
4948 | 4947 | "ButtonRemoveColumnText": "Remove Column", |
4949 | | - "TableTitle": "Table", |
4950 | | - "H4": "It is used to display multiple pieces of data with similar structure. You can sort, filter, compare or other user-defined operations on the data.", |
4951 | | - "TableP1": "The <code> Table </code> component already supports mobile terminal adaptation. When the screen is smaller than the <code> rendermoderesponsewidth </code> set value, the component will be rendered as a card for easy viewing of data, and its default value is <code> 768 </code>", |
4952 | | - "TableP2": "<code>Table</code> component has a <code> rendermode </code> attribute. Its default value is <code> auto </code> and other values are defined as follows", |
4953 | | - "TableLi1": "<code>Auto</code>: Use <code> cardview </code> mode when the screen is smaller than 768px, otherwise use <code> Table </code> mode", |
4954 | | - "TableLi2": "<code>Table</code>: Table rendering mode, using <code> table </code> elements for data rendering, suitable for viewing data in a wide screen", |
4955 | | - "TableLi3": "<code>CardView</code>:Card rendering mode, using <code> div </code> elements for data rendering, which is suitable for viewing data on a narrow screen", |
4956 | | - "TableP3": "<code>Table</code> component has a <code> usecomponentwidth </code> attribute. Its default value is <code> false </code>, which means that the <code> window </code> width is used for judgment. When the setting value is <code> true </code>, it means that the component's own width is used for judgment", |
4957 | | - "NormalTitle": "Basic table", |
4958 | | - "NormalIntro": "Basic table presentation usage", |
4959 | | - "NormalDiv": "Update data source when clicking button <code> items </code> component <code> Table </code> display data is automatically updated", |
4960 | | - "StripedTitle": "Tables with zebra stripes", |
4961 | | - "StripedIntro": "Using a table with zebra stripes, it is easier to distinguish data from different rows. Just set <code> istriped = true </code>", |
4962 | | - "BorderedTitle": "Bordered tables", |
4963 | | - "BorderedIntro": "Increase the effect of table frame by setting <code> isbordered </code> attribute", |
4964 | | - "SizeTitle": "Compact tables", |
4965 | | - "SizeIntro": "Set the <code> tablesize </code> attribute to make the gap in the table smaller and suitable for big data display", |
4966 | | - "SizeP": "<code> Tablesize </code> is an enumeration type of table size, the default value is <code> normal </code>, and the compact value is <code> compact </code>", |
4967 | | - "HeaderStyleTitle": "Header style", |
4968 | | - "HeaderStyleIntro": "By setting <code> headerstyle </code> Properties", |
4969 | | - "HeaderStylep": "<code> Headerstyle </code> is the table header style, and the default value is <code> none </code>", |
4970 | | - "HeaderStyleMode": "Pattern", |
| 4948 | + "TableBaseTitle": "Table", |
| 4949 | + "TableBaseDescription": "It is used to display multiple pieces of data with similar structure. You can sort, filter, compare or other user-defined operations on the data.", |
| 4950 | + "TableBaseExplain1": "The <code> Table </code> component already supports mobile terminal adaptation. When the screen is smaller than the <code> rendermoderesponsewidth </code> set value, the component will be rendered as a card for easy viewing of data, and its default value is <code> 768 </code>", |
| 4951 | + "TableBaseExplain2": "<code>Table</code> component has a <code> rendermode </code> attribute. Its default value is <code> auto </code> and other values are defined as follows", |
| 4952 | + "TableBaseTips1": "<code>Auto</code>: Use <code> cardview </code> mode when the screen is smaller than 768px, otherwise use <code> Table </code> mode", |
| 4953 | + "TableBaseTips2": "<code>Table</code>: Table rendering mode, using <code> table </code> elements for data rendering, suitable for viewing data in a wide screen", |
| 4954 | + "TableBaseTips3": "<code>CardView</code>:Card rendering mode, using <code> div </code> elements for data rendering, which is suitable for viewing data on a narrow screen", |
| 4955 | + "TableBaseExplain3": "<code>Table</code> component has a <code> usecomponentwidth </code> attribute. Its default value is <code> false </code>, which means that the <code> window </code> width is used for judgment. When the setting value is <code> true </code>, it means that the component's own width is used for judgment", |
| 4956 | + "TableBaseNormalTitle": "Basic table", |
| 4957 | + "TableBaseNormalIntro": "Basic table presentation usage", |
| 4958 | + "TableBaseNormalDescription": "Update data source when clicking button <code> items </code> component <code> Table </code> display data is automatically updated", |
| 4959 | + "TableBaseStripedTitle": "Tables with zebra stripes", |
| 4960 | + "TableBaseStripedIntro": "Using a table with zebra stripes, it is easier to distinguish data from different rows. Just set <code> istriped = true </code>", |
| 4961 | + "TableBaseBorderedTitle": "Bordered tables", |
| 4962 | + "TableBaseBorderedIntro": "Increase the effect of table frame by setting <code> isbordered </code> attribute", |
| 4963 | + "TableBaseSizeTitle": "Compact tables", |
| 4964 | + "TableBaseSizeIntro": "Set the <code> tablesize </code> attribute to make the gap in the table smaller and suitable for big data display", |
| 4965 | + "TableBaseSizeDescription": "<code> Tablesize </code> is an enumeration type of table size, the default value is <code> normal </code>, and the compact value is <code> compact </code>", |
| 4966 | + "TableBaseHeaderStyleTitle": "Header style", |
| 4967 | + "TableBaseHeaderStyleIntro": "By setting <code> headerstyle </code> Properties", |
| 4968 | + "TableBaseHeaderStyleDescription": "<code> Headerstyle </code> is the table header style, and the default value is <code> none </code>", |
4971 | 4969 | "AttributeTitle": "Table Attribute", |
4972 | 4970 | "TableSizeAttr": "Table Size", |
4973 | 4971 | "HeaderStyleAttr": "Table Header Style", |
|
5117 | 5115 | "PageInfoTemplateAttr": "The template for custom page info", |
5118 | 5116 | "PageInfoTextAttr": "Pagination label text" |
5119 | 5117 | }, |
| 5118 | + "BootstrapBlazor.Shared.Demos.Table.Base.TableBaseNormal": { |
| 5119 | + "TableBaseNormalRefreshText": "Refresh" |
| 5120 | + }, |
| 5121 | + "BootstrapBlazor.Shared.Demos.Table.Base.TableBaseHeaderStyle": { |
| 5122 | + "TableBaseHeaderStyleMode": "Pattern" |
| 5123 | + }, |
5120 | 5124 | "BootstrapBlazor.Shared.Samples.Table.TablesColumn": { |
5121 | 5125 | "Title": "Table Column", |
5122 | 5126 | "H4": "Used to display multiple pieces of data with similar structures, data can be sorted, filtered, compared or other custom operations.", |
|
0 commit comments