I've implemented a tabview feature using primefaces.
<p:tabView>
<p:tab id="basic" title="Login">
</p:tab>
<p:tab id="personal" title="Personal">
</p:tab>
<p:tab id="contact" title="Contact">
</p:tab>
</p:tabView>
Now, when I want to edit the data on the 'contact' tab directly without navigating through other tabs while viewing saved information, how can I achieve that? Can this be done using JavaScript?
The version of PrimeFaces I'm utilizing is primefaces-3.0.M3 along with JSF and Google Cloud SQL.