Hi.
I'm doing Invoice. Using as an example function zzz_calc_invoice(). Everything works, except, when I delete subform record, not updating forms zinv_total record. I don't know, where to put the function zzz_calc_invoice(), that would be fine after deleting subform records.
Arunas
Welcome to the nuBuilder Forums!
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
Deleting record from subform
Re: Deleting record from subform
Arunas,
I have made a change to nuBuilderPro that will allow you to add events to a Subform's Delete Checkbox.
http://wiki.nubuilder.net/index.php/Add ... Events_Tab
Steven
I have made a change to nuBuilderPro that will allow you to add events to a Subform's Delete Checkbox.
http://wiki.nubuilder.net/index.php/Add ... Events_Tab
Steven
-
- Posts: 21
- Joined: Sat Feb 07, 2015 11:19 pm
Re: Deleting record from subform
function alert_m()
{
alert("I am an alert box!");
}
In subform field (Type Text) Events "onchange" add this function. Then change field record, work.
In subform (Type SubForm) Events "onchange" add this function. Then delete row of records, don't work.
{
alert("I am an alert box!");
}
In subform field (Type Text) Events "onchange" add this function. Then change field record, work.
In subform (Type SubForm) Events "onchange" add this function. Then delete row of records, don't work.
-
- Posts: 21
- Joined: Sat Feb 07, 2015 11:19 pm