What is the default value of process
attribute on commandButton
or commandLink
components? I mean if I specify only partialSubmit="true"
but do not write the process
attribute altogether, what will be used to process? Will it be @all
, @form
or @none
?
Thanks, Kunal
I found the answer. It will be @all
if I do not specify process
attribute but write partialSubmit="true"
.
Thanks, Kunal