Notice: CMSB v3.03 Beta 2 (April 8, 2016)

6 posts by 3 authors in: Forums > CMS Builder
Last Post: April 22, 2016   (RSS)

  • Archived  

By Maurice - April 9, 2016

Just  installed the beta 2

works great! super job!!!!!!

Collapsible Separators pfffffffffffffffff finaly!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

  • Field Editor: Bootstrap style "Field Addons" (input-group-addons) can now be added around text fields

How dos this work?

greets Maurice

-------------------------------------------

Dropmonkey.nl
  • Archived  

By Daryl - April 11, 2016

Thanks Maurice.

Fieldaddons are styled text added before, after, or on both sides of a text field.

See the attached file for a sample.

This can be set in Section Editors -> Field Editor -> Field Options of a text field.

Cheers,

Daryl Maximo
PHP Programmer - interactivetools.com
Attachments:

fieldaddons3.03.png 5K

  • Archived  

By Daryl - April 20, 2016

Hi all,

CMSB v3.03 has been released.

See more details here: http://www.interactivetools.com/forum/forum-posts.php?CMSB-v3.03-Released---Collapsible-Separators-PHP-5.5---April-20th-2016-80516

Thanks to all our excellent beta testers for their help and support in testing this release and providing feedback.

Cheers,

Daryl Maximo
PHP Programmer - interactivetools.com
  • Archived  

By mizrahi - April 21, 2016

The left navigation system isn't working in mac safari. the menugroup s won't open.

  • Archived  

By Daryl - April 22, 2016 - edited: April 25, 2016

Hi mizrahi,

Thanks for pointing that out.

It seems like Safari (or older versions) doesn't support JS function's optional parameter. Ie:

function myFunction(a, b = 0)

https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Functions/default_parameters#Browser_compatibility

The fix will be added in the next release (v3.04).

But here's the patch for v3.03 (don't forget to create a file backup first):

Update resizeIframe function in \cmsb\lib\admin_functions.js

from

function resizeIframe(id, duration = 0) {

to

function resizeIframe(id, duration) {
if (typeof duration === 'undefined') { duration = 0; }

Thanks,

Daryl Maximo
PHP Programmer - interactivetools.com