Skip to content

Commit ff06f54

Browse files
authored
Merge pull request #6576 from wenzhixin/feature/5757
Feature/5757
2 parents 4178ca1 + 9f68a9b commit ff06f54

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

site/docs/api/table-options.md

+15
Original file line numberDiff line numberDiff line change
@@ -509,11 +509,26 @@ The table options are defined in `jQuery.fn.bootstrapTable.defaults`.
509509
- **Detail:**
510510

511511
Escapes a string for insertion into HTML, replacing &, <, >, ", `, and ' characters.
512+
To disable it for the column titles check the `escapeTitle` option.
512513

513514
- **Default:** `false`
514515

515516
- **Example:** [Table Escape](https://examples.bootstrap-table.com/#options/table-escape.html)
516517

518+
## escapeTitle
519+
520+
- **Attribute:** `data-escape-title`
521+
522+
- **Type:** `Boolean`
523+
524+
- **Detail:**
525+
526+
Toggles if the `escape` option should be applied to the column titles.
527+
528+
- **Default:** `true`
529+
530+
- **Example:** [Table Escape title](https://examples.bootstrap-table.com/#options/table-escape-title.html)
531+
517532
## filterOptions
518533

519534
- **Attribute:** `data-filter-options`

src/bootstrap-table.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ class BootstrapTable {
355355
html.push(Utils.sprintf('<div class="th-inner %s">',
356356
this.options.sortable && column.sortable ? `sortable${columnHalign === 'center' ? ' sortable-center' : ''} both` : ''))
357357

358-
let text = this.options.escape ? Utils.escapeHTML(column.title) : column.title
358+
let text = this.options.escape && this.options.escapeTitle ? Utils.escapeHTML(column.title) : column.title
359359

360360
const title = text
361361

@@ -3347,7 +3347,7 @@ class BootstrapTable {
33473347
}
33483348

33493349
this.columns[this.fieldsColumnsIndex[params.field]].title =
3350-
this.options.escape ? Utils.escapeHTML(params.title) : params.title
3350+
this.options.escape && this.options.escapeTitle ? Utils.escapeHTML(params.title) : params.title
33513351

33523352
if (this.columns[this.fieldsColumnsIndex[params.field]].visible) {
33533353
this.$header.find('th[data-field]').each((i, el) => {

src/constants/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,7 @@ const DEFAULTS = {
210210
showFullscreen: false,
211211
smartDisplay: true,
212212
escape: false,
213+
escapeTitle: true,
213214
filterOptions: {
214215
filterAlgorithm: 'and'
215216
},

0 commit comments

Comments
 (0)