You need to sign in to do that
Don't have an account?

Issue with Rerender
I have vf tab ,under the vf tab i am displaying 2 sub tabs Purchase orders tab,Booked Orders Tab,
i am dispalying different list views under the each sub tab,
The problem is when i am moving from one list view to other list view in Booked order the page redirects to the purchase order tab ,
Any help that would be great appericated.
Thanks In Adavance.
Here is My code
<apex:page controller="DesignToolsController" showHeader="true" id="pg" >
<apex:pageMessages ></apex:pageMessages>
<apex:includeScript value="{!$Resource.partner_portal_gaq}"/>
<!-- set activetab attribute under case#00087202 -->
<apex:tabPanel value="{!activeTab}" switchType="server" id="OrdersTabPanel"
tabClass="activeTab" inactiveTabClass="inactiveTab" onclick="">
<apex:tab label="{!$Label.OrderDetails_PurchaseOrders}" name="PurchaseOrders" id="PurchaseOrdersTab"
rendered="{!OR(AND(isEUPartnerUser, IsUserAuthorizedToOrder),NOT(isPartnerUser),AND(isNAPremAuth, IsUserAuthorizedToOrder) )}">
<apex:ListViews id="POSelectedView" type="Purchase_Order__c" />
</apex:tab>
<!-- Adding Booked Orders Tab Sashi-->
<apex:tab label="{!$Label.BookedOrders}" name="BookedOrders" id="BookedOrdersTab">
<apex:ListViews id="POSelected" type="oe_order_headers__c" />
</apex:tab>