Roundcube Community Forum

Miscellaneous => Forum Feedback => Topic started by: walczyk on October 07, 2013, 04:45:43 AM

Title: Creating new folders
Post by: walczyk 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
Title: Re: Creating new folders
Post by: Dennis1993 on October 07, 2013, 05:47:37 AM
0.8.4 no longer supported!

Please update to the latest release 0.9.4.

Thanks!
Title: Re: Creating new folders
Post by: walczyk on October 07, 2013, 08:43:29 AM
Sorry, mistake. I have version 0.9.4.
Title: Re: Creating new folders
Post by: walczyk 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
Title: Re: Creating new folders
Post by: abedelhadi on March 10, 2014, 09:10:56 AM
Hello,

Thanks for sharing your solution,

It is working with 0.7 version.