Simple 'Note' feature request

4 posts by 4 authors in: Forums > CMS Builder
Last Post: December 18   (RSS)

By Dave - August 21, 2023

Hi Zaba, 

Thanks for the suggestion! I can certainly see the merit in that idea.

For text fields, we already have several customization options in the field editor, such as field prefixes, descriptions, and addons for before and after the field.

The challenge here is balancing flexibility with complexity, so we can do what we want to do but don't end up with an interface that's overly complicated and slows us down.

I think our next revision with the field editors is to create a more visual tool. This would provide a preview of what the field will actually look like and allow you to click on parts to add text and see the result.

I'll make a note of your suggestion and give it some thought, thanks! Feel free to share if anything else comes to mind.

Dave Edis - Senior Developer
interactivetools.com

By kitsguru - December 15 - edited: December 18

I do this in the description at the top of the editor, this shows on the list and detail screens.

<button class="btn btn-primary" type="button" data-toggle="collapse" data-target="#notes" aria-expanded="false" aria-controls="notes">
  Notes
</button>

<button class="btn btn-primary" type="button" data-toggle="collapse" data-target="#changelog" aria-expanded="false" aria-controls="changelog">
  Changelog
</button>

<div class="collapse" id="changelog">
  <div class="well">
    <pre>
- enter changes here
    </pre>
  </div>
</div>


<div class="collapse" id="notes">
  <div class="well">
    <pre>
- enter any special instruction here
    </pre>
  </div>
</div>

The built-in bootstrap toggle takes care of showing and hiding the content.

Jeff Shields

By KennyH - December 18

Fantastic idea with the Bootstrap accordion buttons! I'll be incorporating this into my builds ASAP

Thanks!

Kenny