doc: added warning for ordering of dynamic classes

This commit is contained in:
Zen-CODE 2014-02-11 22:18:57 +02:00
parent 3df723b85b
commit 42d98b20d1
1 changed files with 6 additions and 0 deletions

View File

@ -406,6 +406,12 @@ In Python, you can create an instance of the dynamic class as follows:
from kivy.factory import Factory
button_inst = Factory.ImageButton()
.. note::
Using dynamic classes, a child class can be declared before it's parent.
This however, leads to the unintuitive situation where the parent
properties/methods override those of the child. Be careful if you choose
to do this.
.. _template_usage: