I have enabled a partial refresh at the combo box change event.it refreshes other fields. but on change of combo box value the refresh is taking alot of time and it gives me popup alert"An error occured while updating some of the page, timeout exceed."
<xp:comboBox
id="access_status"
value="#{document1.access_status}"
style="font-size:7pt;width:109.0px"
defaultValue="New">
<xp:selectItem
itemLabel="New"
itemValue="New"
id="selectItem2">
</xp:selectItem>
<xp:selectItem
itemLabel="Change required"
itemValue="Change required"
id="selectItem3">
</xp:selectItem>
<xp:eventHandler
event="onchange"
submit="true"
refreshMode="partial"
refreshId="access_type_email"
disableValidators="true">
</xp:eventHandler>
</xp:comboBox>
<xp:checkBox text="Email" id="access_type_email"
checkedValue="Yes" value="#{document1.access_type_email}" style="font-size:7pt">
<xp:eventHandler event="onclick" submit="true"
refreshMode="partial" refreshId="panel_request_information"
disableValidators="true" id="eventHandler1">
</xp:eventHandler>
</xp:checkBox>