Hi,

 

I'm trying to insert a UI dialog into the WixUI_InstallDir sequence to
supply website information, but my Next button is working.   I can't
tell if I specifying the wrong id's, or I'm just off in left field.

 

Here's my dialog reference

    <UI Id="superdooberUI">

      <UIRef Id="WixUI_InstallDir" />

 

      <DialogRef Id="websiteSetupDlg" />

 

      <Publish Dialog="LicenseAgreementDlg" Control="Next"
Event="NewDialog" Value="websiteSetupDlg" Order="3">LicenseAccepted =
"1"</Publish>

      <Publish Dialog="InstallDirDlg" Control="Back" Event="NewDialog"
Value="websiteSetupDlg">1</Publish>

 

    </UI>

 

 

And the control's from <DialogRef Id="websiteSetupDlg" />, the back
button is working fine.

        

        <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56"
Height="17" Text="&amp;Back">

          <Publish Event="NewDialog"
Value="LicenseAgreementDlg">1</Publish>

        </Control>

 

        <Control Id="Next" Type="PushButton" X="236" Y="243" Width="56"
Height="17" Default="yes" Text="!(loc.WixUINext)">

          <Publish Event="SpawnWaitDialog"
Value="WaitForCostingDlg">CostingComplete = 1</Publish>

          <Condition Action="disable"><![CDATA[LicenseAccepted <>
"1"]]></Condition>

          <Condition Action="enable">LicenseAccepted = "1"</Condition>

        </Control>

 

 

 

Thanks,

Alex

------------------------------------------------------------------------------
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2 & L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today
http://p.sf.net/sfu/msIE9-sfdev2dev
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to