Hi Vinnitha,
How's it going about validating this query?
Please inform me about the progress.
Thanks.
'numberFormatListNumber': 'Number', 'numberFormatListLowerAlpha': 'LowerAlpha', 'numberFormatListUpperAlpha': 'UpperAlpha', 'numberFormatListLowerRoman': 'LowerRoman', 'numberFormatListUpperRoman': 'UpperRoman', 'numberFormatListLowerGreek': 'LowerGreek', 'bulletFormatListDisc': 'Disc', 'bulletFormatListCircle': 'Circle', 'bulletFormatListSquare': 'Square', 'numberFormatListNone': 'None', 'bulletFormatListNone':'None' |
let defaultRTE: RichTextEditor = new RichTextEditor({ toolbarSettings: { items: ['NumberFormatList', 'BulletFormatList'], }, numberFormatList: { types: [ { text: 'None', value: 'none', }, { text: 'Number', value: 'decimal', iconCss: 'e-icons e-number', }, { text: 'Lower Greek', value: 'lowerGreek', iconCss: 'e-icons e-lgreek', }, { text: 'Lower Alpha', value: 'lowerAlpha', iconCss: 'e-icons e-lalpha', }, { text: 'Upper Alpha', value: 'upperAlpha', iconCss: 'e-icons e-ualpha', }, { text: 'Upper Roman', value: 'upperRoman', iconCss: 'e-icons e-uroman', }, ], }, bulletFormatList: { types: [ { text: 'None', value: 'none', }, { text: 'Disc', value: 'disc', iconCss: 'e-icons e-disc', }, { text: 'Circle', value: 'circle', iconCss: 'e-icons e-circle', }, { text: 'Square', value: 'square', iconCss: 'e-icons e-square', }, ], }, showCharCount: true, }); defaultRTE.appendTo('#defaultRTE'); |
Thanks Vinitha!
This is what I want!