I believe this works this way because the fillInData message gets sent to the
row group that is currently getting updated. Because of this, "me" refers to
the current row group, nd btn "sendmail" of me refers to the specific instance
of button "sendmail" in that group. Otherwise btn "sendmail" w
> Le 20 févr. 2019 à 17:58, zryip theSlug via use-livecode
> a écrit :
>
> Ludovic,
>
> Try:
>
> on FillInData pData
>
>if pData["email"] <> "" then show btn "sendmail" of me
>
>else hide btn "sendmail" of me
>
> end FillInData
>
As i use Table datagrid, pData is just
I was not far away !
Thank you.
> Le 20 févr. 2019 à 17:58, zryip theSlug via use-livecode
> a écrit :
>
> Ludovic,
>
> Try:
>
> on FillInData pData
>
>if pData["email"] <> "" then show btn "sendmail" of me
>
>else hide btn "sendmail" of me
>
> end FillInData
>
> On Wed
Ludovic,
Try:
on FillInData pData
if pData["email"] <> "" then show btn "sendmail" of me
else hide btn "sendmail" of me
end FillInData
On Wed, Feb 20, 2019 at 5:54 PM Ludovic THEBAULT via use-livecode <
use-livecode@lists.runrev.com> wrote:
> Hello,
>
> I have an address ta
Hello,
I have an address table (data grid) including an "email" column. An other
column contains a button to send an email. I want to hide this button if the
line does not contain an email.
I put this script in the behavior of the button column :
on FillInData pData
if pData["email"]