¡Esta es una revisión vieja del documento!
Nodo SELECTEDITEM
Esta regla de negocio tiene lugar cuando se “selecciona” una fila DE UN CONTENTS(subgrid/detalles). El comportamiento por defecto es lanzar el objeto seleccionado en edición. Si queremos realizar cualquier otra acción personalizada, debemos hacer uso de este nodo.
Ejemplo de código:
<selecteditem onchange="Refresh255"> <action name="runscript"> <script language="VBScript"> This.OwnerCollection.OwnerObject("MAP_IDARTICULO")=this("ID") this.OwnerCollection.OwnerObject("MAP_IDIVA")=this("IDIVA") this.OwnerCollection.OwnerObject("MAP_VENTACAJAS")=this("VENTACAJAS") this.OwnerCollection.OwnerObject("MAP_CODARTICULO")=this("CODARTICULO") this.OwnerCollection.OwnerObject("MAP_UNIDADMED")=this("UDSCAJA") this.OwnerCollection.OwnerObject("MAP_DESCARTICULO")=this("DESCRIPCION") this.OwnerCollection.OwnerObject("MAP_PRECIO")=this("PRECIO") 'Como se puede ver aqui no lanzamos el objeto en edición. </script> </action> </selecteditem>