PDA

View Full Version : How call a Popup from a report



Victor M. Diego
8-Jan-2008, 06:10 AM
Is it possible to call from a report a popup with the data of the record
selected in order to modify it?

I know that I can do that with a "Lookup" like the Customer (List) example,
but in this case I need a table more complex because the table has other
tables imbedded and other features.

Thank you for any help or advice.



Víctor M. Diego
A.T. MEDTRA, S.L.
Tfno: 34+ 942.23.51.41
e-mail: victor@atmedtra.es



************************************************** ****************************************
AVISO IMPORTANTE
************************************************** ****************************************
Este mensaje de correo electrónico y sus documentos adjuntos están dirigidos
EXCLUSIVAMENTE a los destinatarios especificados. La información contenida
puede ser CONFIDENCIAL y/o estar LEGALMENTE PROTEGIDA y no necesariamente
refleja la opinión de A.T. MEDTRA, S.L. Si usted recibe este mensaje por
ERROR, por favor comuníqueselo inmediatamente al remitente y ELIMÍNELO ya
que usted NO ESTA AUTORIZADO al uso, revelación, distribución, impresión o
copia de toda o alguna parte de la información contenida. Gracias.


This e-mail message and any attached files are intended SOLELY for the
addressee/s identified herein. It may contain CONFIDENTIAL and/or LEGALLY
PRIVILEGED information and may not necessarily represent the opinion of A.T.
MEDTRA, S.L. If you receive this message in ERROR, please immediately notify
the sender and DELETE it since you ARE NOT AUTHORIZED to use, disclose,
distribute, print or copy all or part of the contained information. Thank
you.
************************************************** ****************************************

Harm Wibier
8-Jan-2008, 07:55 AM
Hello Victor,

Of course this is possible. I think the Customer (List) example is very
usefull for this case. This only requires a few lines of JavaScript code.

In the customerlist the popup form is a separate form that is inside an
hidden (div) element in the page. If the user presses the button a
doFindByRowId is performed on the form and it is displayed in a modal dialog
using JModalDialog_DisplayDOM.

--
Regards,


Harm Wibier
Data Access Europe B.V.
http://www.dataaccess.nl/

"Victor M. Diego" <victor@atmedtra.es> wrote in message
news:D5oyHdeUIHA.4084@dacmail.dataaccess.com...
> Is it possible to call from a report a popup with the data of the record
> selected in order to modify it?
>
> I know that I can do that with a "Lookup" like the Customer (List)
> example, but in this case I need a table more complex because the table
> has other tables imbedded and other features.
>
> Thank you for any help or advice.
>
>
>
> Víctor M. Diego
> A.T. MEDTRA, S.L.
> Tfno: 34+ 942.23.51.41
> e-mail: victor@atmedtra.es
>
>
>
> ************************************************** ****************************************
> AVISO IMPORTANTE
> ************************************************** ****************************************
> Este mensaje de correo electrónico y sus documentos adjuntos están
> dirigidos EXCLUSIVAMENTE a los destinatarios especificados. La información
> contenida puede ser CONFIDENCIAL y/o estar LEGALMENTE PROTEGIDA y no
> necesariamente refleja la opinión de A.T. MEDTRA, S.L. Si usted recibe
> este mensaje por ERROR, por favor comuníqueselo inmediatamente al
> remitente y ELIMÍNELO ya que usted NO ESTA AUTORIZADO al uso, revelación,
> distribución, impresión o copia de toda o alguna parte de la información
> contenida. Gracias.
>
>
> This e-mail message and any attached files are intended SOLELY for the
> addressee/s identified herein. It may contain CONFIDENTIAL and/or LEGALLY
> PRIVILEGED information and may not necessarily represent the opinion of
> A.T. MEDTRA, S.L. If you receive this message in ERROR, please immediately
> notify the sender and DELETE it since you ARE NOT AUTHORIZED to use,
> disclose, distribute, print or copy all or part of the contained
> information. Thank you.
> ************************************************** ****************************************
>
>
>
>
>

Victor M. Diego
9-Jan-2008, 12:47 PM
Thank you. I think I will be able to do that.

Victor





"Harm Wibier" <harm.wibier@dataaccess.nl> escribió en el mensaje
news:EfiJEXfUIHA.4084@dacmail.dataaccess.com...
> Hello Victor,
>
> Of course this is possible. I think the Customer (List) example is very
> usefull for this case. This only requires a few lines of JavaScript code.
>
> In the customerlist the popup form is a separate form that is inside an
> hidden (div) element in the page. If the user presses the button a
> doFindByRowId is performed on the form and it is displayed in a modal
> dialog using JModalDialog_DisplayDOM.
>
> --
> Regards,
>
>
> Harm Wibier
> Data Access Europe B.V.
> http://www.dataaccess.nl/
>
> "Victor M. Diego" <victor@atmedtra.es> wrote in message
> news:D5oyHdeUIHA.4084@dacmail.dataaccess.com...
>> Is it possible to call from a report a popup with the data of the record
>> selected in order to modify it?
>>
>> I know that I can do that with a "Lookup" like the Customer (List)
>> example, but in this case I need a table more complex because the table
>> has other tables imbedded and other features.
>>
>> Thank you for any help or advice.
>>
>>
>>
>> Víctor M. Diego
>> A.T. MEDTRA, S.L.
>> Tfno: 34+ 942.23.51.41
>> e-mail: victor@atmedtra.es
>>
>>
>>
>> ************************************************** ****************************************
>> AVISO IMPORTANTE
>> ************************************************** ****************************************
>> Este mensaje de correo electrónico y sus documentos adjuntos están
>> dirigidos EXCLUSIVAMENTE a los destinatarios especificados. La
>> información contenida puede ser CONFIDENCIAL y/o estar LEGALMENTE
>> PROTEGIDA y no necesariamente refleja la opinión de A.T. MEDTRA, S.L. Si
>> usted recibe este mensaje por ERROR, por favor comuníqueselo
>> inmediatamente al remitente y ELIMÍNELO ya que usted NO ESTA AUTORIZADO
>> al uso, revelación, distribución, impresión o copia de toda o alguna
>> parte de la información contenida. Gracias.
>>
>>
>> This e-mail message and any attached files are intended SOLELY for the
>> addressee/s identified herein. It may contain CONFIDENTIAL and/or LEGALLY
>> PRIVILEGED information and may not necessarily represent the opinion of
>> A.T. MEDTRA, S.L. If you receive this message in ERROR, please
>> immediately notify the sender and DELETE it since you ARE NOT AUTHORIZED
>> to use, disclose, distribute, print or copy all or part of the contained
>> information. Thank you.
>> ************************************************** ****************************************
>>
>>
>>
>>
>>
>
>
>

Pepe
10-Jan-2008, 03:00 PM
Great.
So I know who to ask how to do it ;-)