Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
I'm doing something with XmlListModel that requires rewriting get(). How can I access XmlListModel.get() within my own implementation?
I want to do something like this:
@ XmlListModel { ...
function get(index) { if (some_condition) { return special_answer } else { return baseclass.get(index) } } @