Roundcube Community Forum

 

Creating new folders

Started by walczyk, October 07, 2013, 04:45:43 AM

Previous topic - Next topic

walczyk

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

Dennis1993

0.8.4 no longer supported!

Please update to the latest release 0.9.4.

Thanks!

walczyk

Sorry, mistake. I have version 0.9.4.

walczyk

Ok, i found solution, It was plugin autoreply (http://www.debiantutorials.com/configuring-goldfish-autoresponder-for-postfix/):


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:


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


Thanks

abedelhadi

Hello,

Thanks for sharing your solution,

It is working with 0.7 version.