Author Topic: Creating new folders  (Read 18621 times)

Offline walczyk

  • Newbie
  • *
  • Posts: 3
Creating new folders
« on: October 07, 2013, 04:45:43 AM »
Hi
I have problem with creating new folders in roundcube 0.8.4 (also the same problem in debian wheeze version 0.7.2). Input for new folder name is readonly. After removing  readonly attribute using Firebug I can create new folder without problems.

Thanks,
Andrew

Offline Dennis1993

  • Full Member
  • ***
  • Posts: 69
Re: Creating new folders
« Reply #1 on: October 07, 2013, 05:47:37 AM »
0.8.4 no longer supported!

Please update to the latest release 0.9.4.

Thanks!

Offline walczyk

  • Newbie
  • *
  • Posts: 3
Re: Creating new folders
« Reply #2 on: October 07, 2013, 08:43:29 AM »
Sorry, mistake. I have version 0.9.4.

Offline walczyk

  • Newbie
  • *
  • Posts: 3
Re: Creating new folders
« Reply #3 on: October 08, 2013, 03:08:06 AM »
Ok, i found solution, It was plugin autoreply (http://www.debiantutorials.com/configuring-goldfish-autoresponder-for-postfix/):

Code: [Select]
function fadeOptions (activate)
{
        var fields = $(".boxcontent input[type=text], .boxcontent textarea");

        if (activate)
                fields.removeAttr('readonly').fadeTo(0, 1);
        else
                fields.attr('readonly', 'readonly').fadeTo(0, 0.4);
}

changed to:

Code: [Select]
var fields = $("form#autoreply-form .boxcontent input[type=text], form#autoreply-form .boxcontent textarea");

Thanks

Offline abedelhadi

  • Newbie
  • *
  • Posts: 1
Re: Creating new folders
« Reply #4 on: March 10, 2014, 09:10:56 AM »
Hello,

Thanks for sharing your solution,

It is working with 0.7 version.