Project

General

Profile

Gestion des erreurs

Gestion des erreurs côté client

Pour l'instant, il y a juste un internal error tout pourri :-(

Mais je mets un petit exemple de javascript pour le fun :


        this.ul.appendTo(this.menuPanel);

        var toolsUl = this.toolsPanel.createChild({
            tag : "ul",
            cls : "x-menu-list" 
        });

        this.mon(toolsUl, 'click', this.onClick, this);
        this.mon(toolsUl, 'mouseover', this.onMouseOver, this);
        this.mon(toolsUl, 'mouseout', this.onMouseOut, this);

        if (this.item) {
            this.items.each(function (item) {
                item.parentMenu = this;
            }, this);
        }

Gestion des exceptions côté serveur