you have to version properties if you want back button support


    public void setExternalSrc(boolean externalSrc) {


       if (externalSrc!=this.externalSrc) {
           final boolean old=this.externalSrc;
           addStatChange(new Change() { void undo() { this.externalSrc=old;
}});
       }

        this.externalSrc = externalSrc;
    }
}



-igor
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Wicket-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to