CMSB v3.15 Released - Maintenance Release - September 17, 2018

4 posts by 2 authors in: Forums > CMS Builder
Last Post: November 8, 2018   (RSS)

By gkornbluth - October 29, 2018 - edited: October 29, 2018

Thanks for all your hard work in updating this great CMS platform....

I've got a possible minor bug and feature request

Minor bug.

When creating blank line separators I've been using the save and copy facility. This inserts "Copy of" at the beginning of the blank line title replacing the default "---blank line---" field label. These build up so that the label reads "Copy Of, Copy of, Copy of" etc. in bold type. Any chance that a condition to not change the default field label that for blank lines could be added to a future update?

Feature Request.

Any way a 'create field here' functionality could be added to CMSB (core code or plug in) so that we could reduce the need to drag fields up and down one by one?

Thanks,

Jerry Kornbluth

The first CMS Builder reference book is now available on-line!







Take advantage of a free 3 month trial subscription, only for CMSB users, at: http://www.thecmsbcookbook.com/trial.php

By daniel - November 8, 2018

Hi Jerry,

Thanks for the feedback.

Regarding the separator labels, there's a quick fix you can do to prevent "Copy of" from being added. In /cmsb/lib/menus/database/editField_functions.js look for the following line (line 74 of the latest CMSB):

$('#label').val("Copy of " + $('#label').val());

This can be replaced with:

if ($('#fieldType').val() != 'separator') {
  $('#label').val("Copy of " + $('#label').val());
}

This change will also find its way into the next version of CMSB.

Being able to insert fields at a specific point does sound like a helpful feature, and we'll keep it in mind for potential future UI improvements.

Thanks!

Daniel
Technical Lead
interactivetools.com

By gkornbluth - November 8, 2018

Thanks Daniel

I'll make the change

Jerry Kornbluth

The first CMS Builder reference book is now available on-line!







Take advantage of a free 3 month trial subscription, only for CMSB users, at: http://www.thecmsbcookbook.com/trial.php