1. #361
    Ext JS Premium Member
    Join Date
    Jul 2009
    Location
    Netherlands, NH
    Posts
    14
    Vote Rating
    0
    hansl1963 is on a distinguished road

      0  

    Default


    Xor,

    Thanks for your reply. I have created a test (as you recommented) and created a zipfile attached to this reply..
    More problem description (to create them) are included into the HTML file..

    I hope you can help me..

    Thanks

    Hans
    Attached Files

  2. #362
    Ext JS Premium Member
    Join Date
    Mar 2007
    Posts
    624
    Vote Rating
    0
    Dumbledore is on a distinguished road

      0  

    Default


    @hansl1963

    I don´t try your code. But you use a tabpanel. When use the tinymce inside a tabpanel which is also inside a form you should use the deferredRender propery of the tabpanel.

    Code:
              
    items:new Ext.TabPanel({
    id: 'tabPanel',
    deferredRender : false,
    width:635,
    height:400,
    border: true,

  3. #363
    Ext JS Premium Member
    Join Date
    Jul 2009
    Location
    Netherlands, NH
    Posts
    14
    Vote Rating
    0
    hansl1963 is on a distinguished road

      0  

    Default


    Dumbledore,

    I have tryed your preposal but this did not work for me..
    Also tryed "forceLayout" on the tabpanel without result..

    But thanks for your reply..

    Hans

  4. #364
    Sencha User
    Join Date
    Apr 2007
    Location
    Yaroslavl, Russia
    Posts
    184
    Vote Rating
    0
    xor is on a distinguished road

      0  

    Default


    uwolfer, can you send me full file with your changes? Looks like I already don't have the exact version that you gave patch for. So I'm not fully understand where did you changed.
    Andrew Mayorov (blog)
    BYTE-force
    We can provide paid remote consultancy on ExtJS or our components.

  5. #365
    Sencha User
    Join Date
    Apr 2007
    Location
    Yaroslavl, Russia
    Posts
    184
    Vote Rating
    0
    xor is on a distinguished road

      0  

    Default


    hansl1963, I've tried your test and it is working both in FF and IE on my box. Didn't try other browsers as I understood that you used FF by yourself.

    My development version is now very close to recently released 0.8.2. Do you use this one in you application?
    Andrew Mayorov (blog)
    BYTE-force
    We can provide paid remote consultancy on ExtJS or our components.

  6. #366
    Ext JS Premium Member
    Join Date
    Jul 2009
    Location
    Netherlands, NH
    Posts
    14
    Vote Rating
    0
    hansl1963 is on a distinguished road

      0  

    Default


    xor,

    I'm using Ext JS version 3.2.0, tinymce version 3.2 (release date 201003-25) and your Ext.ux.TinyMCE version 0.8.2.
    Browsers: FireFox 3.5.9 and IE version 6. Other browsers are not used.

    The IE version 6 is needed for testing the applications (my company is still using this version 6)...

    I changed to the latest release of Ext because of this problem but that did not help
    Could you tell me exactly witch versions you use (also Ext enz.)?

  7. #367
    Sencha User
    Join Date
    Apr 2009
    Location
    Berkshire, UK
    Posts
    38
    Vote Rating
    0
    treadmill is on a distinguished road

      0  

    Question TinyMCE and MoxieCode ImageManager

    TinyMCE and MoxieCode ImageManager


    Hi,

    I'm trying to use the ImageManager from MoxieCode, but get this error when opening-up from the image dialog box of the TinyMCE editor:-

    Error: WindowManager.superclass.setTitle is undefined
    Source File: http://admin.foobar.co.uk/js/Ext.ux.TinyMCE.js
    Line: 634

    Which refers to this code and specifically the line highlighted in red.

    Code:
                setTitle: function(win, ti) {
    
                    // Probably not inline
                    if (!win.tinyMCEPopup || !win.tinyMCEPopup.id) {
                        WindowManager.superclass.setTitle.call(this, win,  ti);
                        return;
                    }
    
                    var w = Ext.getCmp(win.tinyMCEPopup.id);
                    if (w) w.setTitle(ti);
                },
    And get this error message at the same time:-

    Code:
    Error: t.currentWin is undefined
    Source File: http://admin.foobar.co.uk/tiny_mce/plugins/imagemanager/js/index.php?type=im&theme=im&package=imagemanager
    Line: 1
    Any ideas how this can be fix it?
    Kind regards,
    Kevin

  8. #368
    Sencha User
    Join Date
    Apr 2007
    Location
    Yaroslavl, Russia
    Posts
    184
    Vote Rating
    0
    xor is on a distinguished road

      0  

    Default


    I don't have this component, so I can't test it. But I believe this theme was already discussed in this topic. Please review older records.
    Andrew Mayorov (blog)
    BYTE-force
    We can provide paid remote consultancy on ExtJS or our components.

  9. #369
    Sencha User
    Join Date
    Apr 2007
    Location
    Yaroslavl, Russia
    Posts
    184
    Vote Rating
    0
    xor is on a distinguished road

      0  

    Default


    hansl1963, I still use Ext JS 3.1. Maybe this is the root of the problem. I will upgrade and check it out soon.
    Andrew Mayorov (blog)
    BYTE-force
    We can provide paid remote consultancy on ExtJS or our components.

  10. #370
    Ext JS Premium Member
    Join Date
    Jul 2009
    Location
    Netherlands, NH
    Posts
    14
    Vote Rating
    0
    hansl1963 is on a distinguished road

      0  

    Default


    xor,

    Ok, I will wait for your update.
    In the meantime I replace tinyMCE with HTMLEditor and keep on searching for solutions..