==== edit ==== .. py:method:: edit(self) **domain**: server **language**: python **class** :doc:`Item class ` Description =========== Enables editing of data in the dataset. After a call to ``edit``, an application can enable users to change data in the fields of the record, and can then post those changes to the item dataset using :doc:`post ` method, and then apply them to database using :doc:`apply ` method. The ``edit`` method * checks if item dataset is active, otherwise raises exception * checks if item dataset is not empty, otherwise raises exception * checks whether the item dataset is already in edit state, and if so, returns * if item is a :doc:`detail ` , checks if the master item is in edit or insert :doc:`state ` , otherwise raises exception * if item is not a :doc:`detail ` , checks if it is in browse :doc:`state ` , otherwise raises exception * puts the item into edit :doc:`state ` , enabling the application or user to modify fields in the record See also ======== :doc:`Modifying datasets `