Skip to content

Commit 41f1d42

Browse files
dimodijivanova
authored andcommitted
Switch to a single table layout CSS rule per page
1 parent 790a50a commit 41f1d42

File tree

52 files changed

+1
-161
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+1
-161
lines changed

_contentTemplates/common/parameters-table-styles.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#table-layout
22
<style>
3-
article style + table {
3+
article table {
44
table-layout: auto;
55
word-break: normal;
66
}

common-features/data-binding/onread.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,6 @@ The `ToDataSourceResult` extension method is able to extract the requested data
107107

108108
`ToDataSourceResult` returns a [`DataSourceResult` object](/blazor-ui/api/Telerik.DataSource.DataSourceResult). Its most important properties are:
109109

110-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
111-
112110
| Property | Type | Description |
113111
| --- | --- | --- |
114112
| `Data` | `IEnumerable` | The chunk (page) of data items to render. All data operations are already applied (sorting, filtering, etc.) |

components/autocomplete/events.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -268,8 +268,6 @@ The `OnClose` event fires before the AutoComplete popup closes.
268268

269269
The event handler receives as an argument an `AutoCompleteCloseEventArgs` object that contains:
270270

271-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
272-
273271
| Property | Description |
274272
| --- | --- |
275273
| `IsCancelled` | Set the `IsCancelled` property to `true` to cancel the closing of the popup. |
@@ -305,8 +303,6 @@ The `OnItemRender` event fires when each item in the AutoComplete dropdown rende
305303

306304
The event handler receives as an argument an `AutoCompleteItemRenderEventArgs<TItem>` object that contains:
307305

308-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
309-
310306
| Property | Description |
311307
| --- | --- |
312308
| `Item` | The current item that renders in the AutoComplete. |

components/carousel/overview.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,6 @@ The Carousel is a generic component. Its type depends on the type of its model a
9191

9292
The table below lists the Carousel methods. Also consult the [Carousel API](/blazor-ui/api/Telerik.Blazor.Components.TelerikCarousel-1).
9393

94-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
95-
9694
| Method | Description |
9795
| --- | --- |
9896
| `Rebind` | [Refreshes the component data]({%slug carousel-refresh-data%}#rebind-method). |

components/chart/overview.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,6 @@ The following table lists Chart parameters, which are not discussed elsewhere in
145145

146146
To execute Chart methods, obtain reference to the component instance via `@ref`.
147147

148-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
149-
150148
| Method | Description |
151149
|---------|-------------|
152150
| Refresh | Use the method to programmatically re-render the Chart. |

components/checkbox/appearance.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,6 @@ You can increase or decrease the size of the CheckBox by setting the `Size` attr
5757

5858
The `Rounded` attribute applies the `border-radius` CSS rule to the checkbox to achieve curving of the edges. You can set it to a member of the `Telerik.Blazor.ThemeConstants.CheckBox.Rounded` class:
5959

60-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
61-
6260
| Class member | Manual declaration |
6361
|------------|--------|
6462
|`Small` |`sm`|

components/colorpicker/events.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,6 @@ The `OnClose` event fires before the ColorPicker popup closes.
123123

124124
The event handler receives as an argument an `MultiColumnComboBoxCloseEventArgs` object that contains:
125125

126-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
127-
128126
| Property | Description |
129127
| --- | --- |
130128
| `IsCancelled` | Set the `IsCancelled` property to `true` to cancel the closing of the popup. |

components/combobox/events.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -310,8 +310,6 @@ The `OnOpen` event fires before the ComboBox popup renders.
310310

311311
The event handler receives as an argument an `ComboBoxOpenEventArgs` object that contains:
312312

313-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
314-
315313
| Property | Description |
316314
| --- | --- |
317315
| `IsCancelled` | Set the `IsCancelled` property to `true` to cancel the opening of the popup. |
@@ -353,8 +351,6 @@ The `OnClose` event fires before the ComboBox popup closes.
353351

354352
The event handler receives as an argument an `ComboBoxCloseEventArgs` object that contains:
355353

356-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
357-
358354
| Property | Description |
359355
| --- | --- |
360356
| `IsCancelled` | Set the `IsCancelled` property to `true` to cancel the closing of the popup. |
@@ -401,8 +397,6 @@ The `OnItemRender` event fires when each item in the ComboBox dropdown renders.
401397

402398
The event handler receives as an argument an `ComboBoxItemRenderEventArgs<TItem>` object that contains:
403399

404-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
405-
406400
| Property | Description |
407401
| --- | --- |
408402
| `Item` | The current item that renders in the ComboBox. |

components/dateinput/overview.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,6 @@ You can ensure that the component value is acceptable by using the built-in vali
6767

6868
The following parameters enable you to customize the appearance of the Blazor DateInput:
6969

70-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
71-
7270
| Attribute | Type and Default Value | Description |
7371
|----------|----------|----------|
7472
|`Class`| `string` |The CSS class that will be rendered on the `input` element|

components/datepicker/events.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,8 +161,6 @@ The `OnClose` event fires before the DatePicker popup closes.
161161

162162
The event handler receives as an argument an `DatePickerCloseEventArgs` object that contains:
163163

164-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
165-
166164
| Property | Description |
167165
| --- | --- |
168166
| `IsCancelled` | Set the `IsCancelled` property to `true` to cancel the closing of the popup. |

components/datepicker/overview.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,6 @@ The date picker is, essentially, a [date input]({%slug components/dateinput/over
8383

8484
The following parameters enable you to customize the appearance of the Blazor Date Picker:
8585

86-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
87-
8886
| Attribute | Type and Default Value | Description |
8987
|----------|----------|----------|
9088
| `Class` | `string` | The custom CSS class rendered on the wrapping element. |
@@ -101,8 +99,6 @@ You can find more options for customizing the Date Picker styling in the [Appear
10199

102100
Add a reference to the component instance to use the [Date Picker's methods](/blazor-ui/api/Telerik.Blazor.Components.TelerikDatePicker-1).
103101

104-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
105-
106102
| Method | Description |
107103
| --- | --- |
108104
| `Close` | Closes the Calendar popup. |

components/daterangepicker/events.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,6 @@ The `OnClose` event fires before the DateRangePicker popup closes.
152152

153153
The event handler receives as an argument an `DateRangePickerCloseEventArgs` object that contains:
154154

155-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
156-
157155
| Property | Description |
158156
| --- | --- |
159157
| `IsCancelled` | Set the `IsCancelled` property to `true` to cancel the closing of the popup. |

components/daterangepicker/overview.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,6 @@ The date range picker is, essentially, a [date input]({%slug components/dateinpu
8181

8282
The following parameters enable you to customize the appearance of the Blazor Date Range Picker:
8383

84-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
85-
8684
| Attribute | Type and Default Value | Description |
8785
|----------|----------|----------|
8886
| `Class` | `string` | The CSS class that will be rendered on the main wrapping element of the Date Range Picker
@@ -96,8 +94,6 @@ You can find more options for customizing the Date Range Picker styling in the [
9694

9795
Add a reference to the component instance to use the [Date Range Picker's methods](/blazor-ui/api/Telerik.Blazor.Components.TelerikDateRangePicker-1).
9896

99-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
100-
10197
| Method | Description |
10298
| --- | --- |
10399
| `Close` | Closes the Calendar popup. |

components/datetimepicker/events.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,8 +164,6 @@ The `OnClose` event fires before the DateTimePicker popup closes.
164164

165165
The event handler receives as an argument an `DateTimePickerCloseEventArgs` object that contains:
166166

167-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
168-
169167
| Property | Description |
170168
| --- | --- |
171169
| `IsCancelled` | Set the `IsCancelled` property to `true` to cancel the closing of the popup. |

components/datetimepicker/overview.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,6 @@ The time format specifiers in the `Format` control the tumblers available in the
7575

7676
The following parameters enable you to customize the appearance of the Blazor DateTimePicker:
7777

78-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
79-
8078
| Attribute | Type and Default Value | Description |
8179
|----------|----------|----------|
8280
|`Class`| `string` |The CSS class that will be rendered on the `input` element|
@@ -91,8 +89,6 @@ You can find more options for customizing the DateTimePicker styling in the [App
9189

9290
Add a reference to the component instance to use the [Date Time Picker's methods](/blazor-ui/api/Telerik.Blazor.Components.TelerikDateTimePicker-1).
9391

94-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
95-
9692
| Method | Description |
9793
| --- | --- |
9894
| `Close` | Closes the Calendar popup. |

components/dialog/overview.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,6 @@ The Blazor Dialog provides various parameters to configure the component. Also c
8888

8989
The Dialog methods are accessible through its reference.
9090

91-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
92-
9391
| Method | Description |
9492
| --- | --- |
9593
| `Refresh` | Redraws the component. |

components/drawer/overview.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,6 @@ The Blazor Drawer provides various parameters to configure the component. Also c
124124

125125
The Drawer methods are accessible through it's reference. These methods change the value of the `Expanded` parameter.
126126

127-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
128-
129127
| Method | Description |
130128
| --- | --- |
131129
| `ExpandAsync` | Expands the Drawer. |

components/dropdownlist/events.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -275,8 +275,6 @@ The `OnClose` event fires before the DropDownList popup closes.
275275

276276
The event handler receives as an argument an `DropDownListCloseEventArgs` object that contains:
277277

278-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
279-
280278
| Property | Description |
281279
| --- | --- |
282280
| `IsCancelled` | Set the `IsCancelled` property to `true` to cancel the closing of the popup. |
@@ -323,8 +321,6 @@ The `OnItemRender` event fires when each item in the DropDownList popup renders.
323321

324322
The event handler receives as an argument an `DropDownListItemRenderEventArgs<TItem>` object that contains:
325323

326-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
327-
328324
| Property | Description |
329325
| --- | --- |
330326
| `Item` | The current item that renders in the DropDownList. |

components/editor/built-in-tools.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -268,8 +268,6 @@ All tools in the table below are *buttons*, except `Format`, which is a *dropdow
268268

269269
>caption Table 2: Block Tools of the Editor
270270
271-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
272-
273271
<table>
274272
<thead>
275273
<tr>
@@ -398,8 +396,6 @@ All tools in the table below are *buttons*.
398396

399397
>caption Table 3: Editor Table Tools
400398
401-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
402-
403399
<table>
404400
<thead>
405401
<tr>
@@ -480,8 +476,6 @@ Some Editor commands have no built-in tools. These commands can only be [invoked
480476

481477
>caption Table 4: Editor Commands Without Tools
482478
483-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
484-
485479
<table>
486480
<thead>
487481
<tr>

components/filemanager/data-binding/overview.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,8 +234,6 @@ The above model properties have the following meaning for the FileManager:
234234

235235
All [FileManager item features](#fileManager-item-features) map to model properties. The properties of a treeview item match directly to a field of the model the treeview is bound to. You provide that relationship by providing the name of the field from which the corresponding information is to be taken. To do this, in the main `TelerikFileManager` tag, use the parameters described below:
236236

237-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
238-
239237
| FileManager Parameter | DEFAULT VALUE |
240238
|----------|----------|----------|
241239
| **Item features** | |

components/filemanager/overview.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -391,8 +391,6 @@ The following table lists the FileManager parameters. Also check the [FileManage
391391

392392
The following parameters enable you to customize the appearance of the Blazor FileManager:
393393

394-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
395-
396394
| Parameter | Type and &nbsp; DefaultValue | Description |
397395
|----------|----------|----------|
398396
| `Class`| `string` |The CSS class that will be rendered on the topmost wrapping element of the component.

components/form/overview.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,6 @@ The following data types are supported out-of-the box and they use the following
132132

133133
You can customize the automatically generated field by providing the `EditorType` attribute, exposed on the `<FormItem>`, or by using the [FormItem Template]({%slug form-formitems-template%}). The `EditorType` attribute accepts a member of the `FormEditorType` enum:
134134

135-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
136-
137135
| Field data type | FormEditorType enum members |
138136
|-----------------|------------------------------------------|
139137
| **String** | `FormEditorType.TextArea`<br /> `FormEditorType.TextBox` |
@@ -194,8 +192,6 @@ You can customize the editors further through the [form items]({%slug form-formi
194192

195193
## Form Parameters
196194

197-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
198-
199195
| Parameter | Type and Default value | Description |
200196
|-----------|------------------------|-------------|
201197
| `Model` | `object` | The object bound to the Form. It will automatically create the `EditContext` and using the two together is not supported. |
@@ -207,8 +203,6 @@ You can customize the editors further through the [form items]({%slug form-formi
207203

208204
The Blazor Form exposes multiple parameters that allow you to customize its layout:
209205

210-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
211-
212206
| Parameter | Type and Default value | Description |
213207
|-----------|------------------------|-------------|
214208
| `Width` | `string` | Controls the width of the Form. |

components/gantt/gantt-tree/columns/bound.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,6 @@ The Blazor Gantt Bound Column provides various parameters to configure the compo
140140

141141
### Appearance
142142

143-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
144-
145143
| Parameter | Type and Default Value | Description |
146144
| --- | --- | --- |
147145
| `Title` | `string` | The text that is rendered in the column header. See the Notes below for its behavior. |

components/gantt/gantt-tree/columns/command.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,6 @@ See also Appearance properties like `Icon`, `Class`, `Enabled` that are coming f
4646

4747
Built-in commands:
4848

49-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
50-
5149
| Command | Description |
5250
| --- | --- |
5351
| `Add` | Initiates the creation of a new item. Can apply to rows as well, to create a child element for the current row. |
@@ -57,8 +55,6 @@ Built-in commands:
5755

5856
The `OnClick` handler of the commands receives an argument of type `GanttTaskCommandEventArgs` that exposes the following parameters:
5957

60-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
61-
6258
| Parameter | Description |
6359
| --- | --- |
6460
| `IsCancelled` | Set this to `true` to prevent the operation if the business logic requires it. |

components/gauges/arc/overview.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,6 @@ The labels are rendered on the scale of the component to give information to the
5858
| `RenderAs` | `RenderingMode?` <br /> (`SVG`) | Controls if the gauge renders as `SVG` or `Canvas`. |
5959

6060
## Arc Gauge Reference and Methods
61-
62-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
6361

6462
| Method | Description |
6563
| --- | --- |

components/gauges/circular/overview.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,6 @@ The labels are rendered on the scale of the component to give information to the
6969

7070
## Circular Gauge Reference and Methods
7171

72-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
73-
7472
| Method | Description |
7573
| --- | --- |
7674
| `Refresh` | Programatically re-render the Circular Gauge. |

components/gauges/linear/overview.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,6 @@ The ranges are used to visually distinguish particular values on the scale. [Rea
6262

6363

6464
## Linear Gauge Reference and Methods
65-
66-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
6765

6866
| Method | Description |
6967
| --- | --- |

components/gauges/radial/overview.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,6 @@ The labels are rendered on the scale of the Radial Gauge to give inforation to t
6565

6666
To execute Radial Gauge methods, obtain reference to the component instance via `@ref`.
6767

68-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
69-
7068
| Method | Description |
7169
|---------|-------------|
7270
| Refresh | You can use that method to programmatically re-render the component. |

components/maskedtextbox/overview.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,6 @@ The table below provides a quick overview of the mask-related parameters. You ca
5858

5959
## MaskedTextBox Parameters
6060

61-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
62-
6361
| Parameter | Type and Default value | Description |
6462
|-----------|------------------------|-------------|
6563
| `Class` | `string` | Adds a custom CSS class to the `<div class="k-maskedtextbox">` element. |

components/multicolumncombobox/events.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -428,8 +428,6 @@ The `OnClose` event fires before the MultiColumnComboBox popup closes.
428428

429429
The event handler receives as an argument an `MultiColumnComboBoxCloseEventArgs` object that contains:
430430

431-
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
432-
433431
| Property | Description |
434432
| --- | --- |
435433
| `IsCancelled` | Set the `IsCancelled` property to `true` to cancel the closing of the popup. |

0 commit comments

Comments
 (0)