I have been struggling with how to approach hiding editing fields within specific cells of every row in the table on the exit button click.
Dows the row have to be resolved? i any help is appreciated.
// Main.Links2.Tbl.Row1.Edit = this is the Hierachy
// Main.Links2.Tbl.Row1.DEdit= this is the Hierachy
form1.Main.b.Exit::click - (JavaScript, client)
{
// Edit Buttons sf (b)
form1.Main.b.NoteOpen.presence = "visible";
form1.Main.b.Exit.presence = "invisible";
// Protecting the field so it isn't included in tabbing.
form1.Main.Links2.Tbl.access = "protected";
form1.Main.Links2.Tbl.Row1.Edit.presence = "invisible"; ////////////////////// I want this field in every row invisible
form1.Main.Links2.Tbl.Row1.DEdit.presence = "invisible"; ///////////////////// I want this field in every row invisible
}
//xfa.host.setFocus("form1.Main.Links.Tbl.Title.Cell1");