0

我有一个自定义案例顶点页面,我使用 aapex:pageBlockTable来显示我的案例列表。这是它的代码:

<apex:page standardController="Case" recordSetVar="Case" sidebar="true" showHeader="true">
    <apex:form >
        <apex:pageBlock title="Cases">
              <apex:outputLabel value="View:"/>
              <apex:selectList value="{!filterId}" size="1">
                <apex:actionSupport event="onchange" rerender="cases_table"/>
                <apex:selectOptions value="{!listviewoptions}"/>
              </apex:selectList>
            <apex:pageBlock >
                <apex:pageBlockButtons >
                </apex:pageBlockButtons>
                <apex:pageBlockTable value="{!case}" var="c" rows="50" id="cases_table" >
                    <apex:column >
                        <a target="_parent" href="{!URLFOR($Action.Case.View, c.id)}">{!c.CaseNumber}</a>
                        <apex:facet name="header">Case Number</apex:facet>
                    </apex:column>
                    <apex:column value="{!c.ContactId}" />
                    <apex:column value="{!c.Subject}" />
                    <apex:column value="{!c.Status}" />
                    <apex:column value="{!c.Priority}" />
                </apex:pageBlockTable>
            </apex:pageBlock>
        </apex:pageBlock>
    </apex:form>
    <base target="_parent"/>
</apex:page>

我想apex:pageBlockButtons在默认案例页面中获得一个按钮。当用户单击按钮时,我希望它将用户带到新的案例页面。我试过这个:

<apex:commandButton action="{!new}" value="New"/>

但这给了我一个错误。如何制作一个按钮,将我带到新的案例页面?

4

2 回答 2

3

尝试这个:

<apex:commandButton onclick="window.location.href='{!URLFOR($Action.Case.NewCase)}'" value="New" immediate="true" rerender="blank"/>

需要注意的是需要重新渲染标签,否则页面将进行回发。通过使用虚拟重新渲染标签,重定向将起作用。立即可以避免在点击时运行任何验证规则。

于 2012-08-15T16:34:04.267 回答
0

我有一个自定义Cases apex页面,我使用 aapex:pageBlockTable来显示我的案例列表。这是它的代码(自定义对象):

<apex:commandButton action="{!URLFOR($Action.Your_Custom_Object__c.New)}" ...>
于 2015-10-29T14:09:34.637 回答