============= edit_record ============= .. js:function:: edit_record(container) **domain**: client **language**: javascript **class** :doc:`Item class ` Description =========== Puts the current record in edit :doc:`state ` and creates an :doc:`edit_form ` for visual editing of the record. If ``container`` parameter (Jquery object of the DOM element) is specified the edit form html template is inserted in the container. If ``container`` parameter is not specified but **Modeless form** attribute is set in the :doc:`Edit Form Dialog ` or modeless attribute of the :doc:`edit_options ` is set programmatically and task has the :doc:`forms_in_tabs ` attribute set and the application doesn't have modal forms, the modeless edit form will be created in the new tab of the :doc:`forms_container ` object of the task. In all other cases the modal form will be created. If editing is allowed in modeless mode, the user can edit several records at the same time. In this case the application calls the :doc:`copy ` method to create a copy of the item. This copy will be used to edit the record. The application will call its :doc:`open ` method to get the record from the server by using the value of the primary key field as a filter. In case of modal editing the application executes :doc:`refresh_record ` methods to get from the server the latest data of the record. If a :doc:`record locking ` is enabled for the item, along with receiving the record data from the server the application receives the version of the record. Then the ``edit_record`` method * calls the :doc:`can_edit ` method to check whether a user have a right to edit the record, * if the user have a right to edit the record, checks whether the item is in edit or insert :doc:`state ` , and if not, calls the :doc:`edit ` method to edit the record * calls the :doc:`create_edit_form ` method to create a form for visual editing of the record See also ======== :doc:`Forms ` :doc:`Modifying datasets ` :doc:`edit ` :doc:`can_create ` :doc:`Record locking `