We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello. is there a way for me to have multiple template buttons that have varying values?
So I could do something similar to the following:
$('#taBody').summernote({ codemirror: { // codemirror options theme: 'monokai', lineNumbers: true }, toolbar: [ ['style', ['bold', 'italic', 'underline', 'clear']], ['insert', ['template', 'template', 'codeview']] ], template: { path: '../Content/summernote/templates/', //path location label: 'Recipient', tooltip: 'Recipient Informatiom', list: { 'Header': 'Header', 'FirstName': 'First Name', //Path .html name: Display Name 'LastName': 'Last Name', 'Address1': 'Address 1', 'Address2': 'Address 2', 'City': 'City', 'State': 'State', 'Zip': 'Zip' } }, template: { path: '../Content/summernote/templates', //path location label: 'Claims', tooltip: 'Claim Informatiom', list: { 'MailToAddress': 'Mail To', 'AmountDue': 'Amount Due', //Path .html name: Display Name 'SharesDue': 'Shares Due', 'CompanyName': 'Company Name', 'ClaimContact': 'Claim Contact', 'ClaimAddress1': 'Claim Address 1', 'ClaimCity': 'Claim City', 'ClaimState': 'Claim State', 'ClaimZip': 'Claim Zip' } }, height: 400 });`
The text was updated successfully, but these errors were encountered:
Hello !
It's not possible at the moment, but I can take a look 😄
Sorry, something went wrong.
No branches or pull requests
Hello. is there a way for me to have multiple template buttons that have varying values?
So I could do something similar to the following:
The text was updated successfully, but these errors were encountered: