+ Reply to Thread
Page 16 of 18 FirstFirst ... 6 14 15 16 17 18 LastLast
Results 151 to 160 of 177

Thread: The New MobileMe "MobileCube"

  1. #151
    internalkernel's Avatar
    internalkernel is offline Registered User
    Join Date
    Jan 2010
    Posts
    25
    Downloads
    4
    Uploads
    0

    Default

    I had the same problem when I updated my SVN to the 0.4 stable. Apparently it was the very minor changes I had made to my skin. Reverting to the default skin solved the problem obviously.

    In the past I was using the MobileCube theme and wanted to see if it was ready for 0.4... so I happened to be digging around here. Hopefully that helps.

    It looks like they made quite a bit of changes to the compose window, and main window in the 0.4 release...

  2. #152
    ValleyMan05 is offline Roundcube Newcomer
    Join Date
    Aug 2010
    Posts
    1
    Downloads
    3
    Uploads
    0

    Default

    I agree... I have been in the process of narrow it down but so far no luck... I'll have more time tonight as well... hopefully someone will beat me to it

  3. #153
    phireware's Avatar
    phireware is offline Registered User
    Join Date
    Dec 2008
    Location
    USA
    Posts
    68
    Downloads
    0
    Uploads
    0

    Default

    Quote Originally Posted by conej View Post
    I'm using the latest trunk of the 0.4 beta, with the 3.1.0 (#062010A) Mobile Cube skin, and am unable to add attachments in the compose message view. When I click on the "Attach a file" link nothing happens and the "+" sign on the attachments panel is grayed out. However when forwarding a message with attachments the attachments do show up and I can remove them. Has anyone else noticed this?

    Regards,
    Jon
    Have you tried the version previous to the latest one? I think there was an error with the attachments that never got fixed in the currernt one, but the previous one works fine with them. (#052610A) I believe.

  4. #154
    ShanOw is offline Roundcube Newcomer
    Join Date
    Aug 2010
    Posts
    2
    Downloads
    0
    Uploads
    0

    Default

    Hi, I absolutely love this theme - keep up the good work. I am running RoundCube 0.4 and 3.1.0 of this theme, yet I still cannot get attachments to work. I checked your bugtracker and it seems that I am not the only person having this issue still. Is there any ETA on when this little bug will be fixed?

    Thank you.
    Last edited by ShanOw; 09-02-2010 at 07:53 AM.

  5. #155
    conej is offline Roundcube Newcomer
    Join Date
    Apr 2010
    Posts
    2
    Downloads
    0
    Uploads
    0

    Default Attachments

    Quote Originally Posted by phireware View Post
    Have you tried the version previous to the latest one? I think there was an error with the attachments that never got fixed in the currernt one, but the previous one works fine with them. (#052610A) I believe.
    After trying #052610A adding attachments does work, but the attach file dialog pops up by default, and covers the 'To' and 'CC', etc fields. I haven't figured out how to go about hiding it.

    -Jon

  6. #156
    ricardopvz is offline Roundcube Newcomer
    Join Date
    Sep 2010
    Location
    Portugal
    Posts
    2
    Downloads
    1
    Uploads
    0

    Default

    I found a way to show and hide the attachment form.

    First edit the "skins/mobilecube/templates/compose.html" and in the <head> add this:

    HTML Code:
    <script type="text/javascript">
            function ToogleAttachment() {
                var AttachmentVisibility = document.getElementById('attachment-form').style.visibility;
                var AttachmentDisplay = document.getElementById('attachment-form').style.display;
                
                if (AttachmentVisibility == 'hidden' || AttachmentDisplay == 'none') {
                    document.getElementById('attachment-form').style.visibility = 'visible';
                    $('#attachment-form').show()
                }
                else {
                    document.getElementById('attachment-form').style.visibility = 'hidden';
                    $('#attachment-form').hide()
                }
            }
            </script>
    Then in the same file edit the "<roundcube:button command="add-attachment"..." ( there are two, edit both ), and add " onClick="ToogleAttachment()" " in the end.

    Then edit file "program/steps/mail/compose.inc", and edit the line 1003

    PHP Code:
    $button->show(rcube_label('upload'), array('class' => 'button mainaction''onclick' => JS_OBJECT_NAME ".command('send-attachment', this.form);")) 
    and replace by:

    PHP Code:
    $button->show(rcube_label('upload'), array('class' => 'button mainaction''onclick' => JS_OBJECT_NAME ".command('send-attachment', this.form); ToogleAttachment()();")) 
    or uncomment the line above that to add a close button to the form, otherwise the form will close when you click the upload button.

    But i have another issue. If i open my webmail in IE8, it loads ok and when i login, it sends me to the inbox and immediatly gives me a 404 error, even if i remove all plugins from config file ( this does't happen with default skin ) .
    I don't know if this has already happened to you, but i really don't know the cause of this. ( I tested with version 3.0.0 and Beta#062010A )

    MobileCube is the best skin for roundcube i have ever seen and i really don't want to change .
    Last edited by ricardopvz; 09-13-2010 at 12:30 AM.

  7. #157
    ShanOw is offline Roundcube Newcomer
    Join Date
    Aug 2010
    Posts
    2
    Downloads
    0
    Uploads
    0

    Default

    Hello, thankyou for taking the time to help improve MobileCube Just one thing, I can't find the line of code specified on line 1003 of "program/steps/mail/compose.inc"? Are you sure this is correct?

  8. #158
    ricardopvz is offline Roundcube Newcomer
    Join Date
    Sep 2010
    Location
    Portugal
    Posts
    2
    Downloads
    1
    Uploads
    0

    Default

    Quote Originally Posted by ShanOw View Post
    Hello, thankyou for taking the time to help improve MobileCube Just one thing, I can't find the line of code specified on line 1003 of "program/steps/mail/compose.inc"? Are you sure this is correct?
    Hi, i'm sure this is correct. I'm using rouncube 0.4 and MobileCube Beta#062010A. I have attached my compose.inc file. The modification in that file is only for closing the form, otherwise you have to click again in the Attach a file button to close it.

    If someone can help me with my problem posted in my previus post, just let me know.
    Attached Files
    Last edited by ricardopvz; 09-13-2010 at 06:26 PM.

  9. #159
    yurayko is offline Roundcube Newcomer
    Join Date
    Apr 2011
    Location
    French
    Posts
    3
    Downloads
    0
    Uploads
    0

    Smile 0.6-svn with MobileCube

    works fine,
    I renamed some files: addcontact.html --> contactadd.html ; editcontact.html --> contactedit.html ; showcontact.html --> contact.html
    I changed:
    .../templates/contact.html
    just comment out
    Code:
    <!-- <div id="contact-details"><roundcube:object name="contactdetails" /></div> -->
    .../addresses.css
    Code:
    #contact-title {
    	width: 560px;
    	height: auto;
    	background: transparent url("images/detail_header_thumbnail.png") 86px 40px no-repeat;
    	padding: 46px 0px 0px 143px;
    	font-size: 16px;
    	font-weight: 500; /*400 is the same as normal, and 700 is the same as bold*/
    	color: #333333;
    	word-spacing: 1px;
    }
    
    #contact-title table tbody tr td {
    	padding: 0px 10px;
    }
    
    #contact-details {
    	width: 560px;
    	padding: 46px 0px 0px 143px;
    }
    
    #contact-details table {
    	width: 560px;
    	padding-left: 50px;
    }
    
    #contact-details table tbody tr {
    	width: 540px;
    	height: auto;
    }
    and now I still need edit displying in the Addressbook, is still mixed
    where can I find settings, (for example) for Personal info or Notes, I mean sequence and formating for this shown info?!
    Last edited by yurayko; 04-02-2011 at 09:27 PM. Reason: help

  10. #160
    techdude is offline Registered User
    Join Date
    May 2008
    Posts
    38
    Downloads
    2
    Uploads
    0

    Default

    I can't seem to download this from your website. I get a "403 Forbidden"

+ Reply to Thread
Page 16 of 18 FirstFirst ... 6 14 15 16 17 18 LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts