[FIXED] [V0.8.0] desktop js error

Page 1 of 3 123 LastLast
  1. #1

    [FIXED] [V0.8.0] desktop js error

    after i updated from SVN today (last update was Feb 10 2009), i am
    having a javascript error when i am opening windows in my desktop (no
    window is opening when i click on a desktop shortcut)



    javascript error is object does not support this property or method,
    when i debug its pointing to /ux/extensions/js/Desktop-js/coolite.axd
    win.origShow() line)

    additional info: my desktop shortcuts are opening windows, not desktopwindows
  2. #2

    RE: [FIXED] [V0.8.0] desktop js error

    Hi*[WP]joju,

    Thanks for reporting the error. I've reproduced the problem and it is related to some code we committed today. We should have this fixed shortly.*


    Geoffrey McGill
    Founder
  3. #3

    RE: [FIXED] [V0.8.0] desktop js error

    thanks for the fast response, i'll just wait for the fix before updating again
  4. #4

    RE: [FIXED] [V0.8.0] desktop js error

    Hi,

    You should use Desktopwindow. Shortcut opening window which was setted in module, module works with Desktopwindow. What reason to use simple window?*




  5. #5

    RE: [FIXED] [V0.8.0] desktop js error

    i forgot the reason why i used simple window earlier on, i think i encountered an error with the desktop window then settled with the window since it is apparently almost the same as the desktop window. i mean it is working before fine so why can't it be settled to work as good now? ( for the window inside a desktop)

    do we really need to use only desktop windows from now on (for windows triggered by a desktop shortcut / desktop module ) ?
  6. #6

    RE: [FIXED] [V0.8.0] desktop js error

    when i tried to use desktop window and the latest version of coolite, i'm having javascript error on page load whenever i have a toolbar button with a tooltip inside the desktop window, please help.

    the problem stated in the previous posts still exists using the latest version of coolite and a normal window
  7. #7

    RE: [FIXED] [V0.8.0] desktop js error

    Hi,

    Yes, it is know issue. Please set ID for control which contains tooltip (it is temp fix). We are working on fix


  8. #8

    RE: [FIXED] [V0.8.0] desktop js error

    <ext:ToolbarButton ID="extbtnedit" runat="server" IconCls="icon-publicqs-editentry" >
                        <Listeners>
                            <Click Fn="showEditWindow" />
                        </Listeners>
                        <ToolTips>
                            <ext:ToolTip ID="ToolTip2" Title="Edit Entry" runat="server" Html="Edit" >
                            </ext:ToolTip>
                        </ToolTips>
                    </ext:ToolbarButton>
    im trying to use desktop window just to be able to update in svn now but im still having an error using the above code... javascript error, this.target is null
  9. #9

    RE: [FIXED] [V0.8.0] desktop js error

    Hi,

    Tooltip issue is fixed.
    *
  10. #10

    RE: [FIXED] [V0.8.0] desktop js error

    
       var CascAllWin = function() {
            var xTick = Math.max(1, 20);
            var yTick = Math.max(1, 20);
            var x = xTick;
            var y = yTick;
            Ext.WindowMgr.each(function(w) {
                if (w.isVisible() &amp;&amp; !w.maximized) {
                    w.setPosition(x, y);
                    x += xTick;
                    y += yTick;
                }
            });
        }

    ok thanks for that, i confirmed that it is already working as of the latest version in SVN, i have changed all the windows that are triggered by a desktop shortcut to desktop window but for the other i just left them as is.

    but i do have another problem, i have this javascript function (also courtesy of this forum) shown above which cascades all windows on screen resize, but it is unable to do it for the desktop windows, it just works for the normal windows. please help....

    --- another problem encountered: desktop windows cannot go on top of normal windows
Page 1 of 3 123 LastLast

Similar Threads

  1. Mvc razor desktop error
    By mobalick in forum 2.x Help
    Replies: 2
    Last Post: Jul 04, 2012, 10:48 PM
  2. Ext.Net.Desktop compile error
    By Mahi in forum 1.x Help
    Replies: 1
    Last Post: Apr 25, 2012, 8:24 PM
  3. Desktop Module JS error
    By fenix2222 in forum Bugs
    Replies: 1
    Last Post: Mar 29, 2009, 2:21 PM
  4. [FIXED] [V0.8.0] modal window in desktop
    By [WP]joju in forum Bugs
    Replies: 2
    Last Post: Feb 02, 2009, 1:23 AM
  5. Replies: 6
    Last Post: Jan 26, 2009, 10:06 AM

Posting Permissions