Partial trigger on a table
On my screen I have an <af:table /> with row selection enabled. However, I don't want to add all the fields of the entity to the table as there are too many. Specifically, one of the fields is a free text field which I want to display below the <af:table /> as a textarea (input text with rows > 1)
I want to have the behavior like when a row is selected in the table, the input text below will automatically update to show the free text field for the selected record. I tried setting partialTriggers="myTable" but this doesn't seem to work. I'm not sure if the table actually does any submit when I select a row.
Any advice?