Componentes.Terceros.DevExp.../official/x.30/ExpressWeb Framework/Demos/Delphi/WebSnapAdapters/WebsnapAdaptersOrders.pas
2007-12-16 17:06:54 +00:00

47 lines
1.4 KiB
ObjectPascal

unit WebsnapAdaptersOrders;
interface
uses SysUtils, Classes, HTTPApp, cxWebSnapModule, MidItems, WebForm,
WebComp, HTTPProd, CompProd, PagItems, SiteProd, cxWebClasses,
cxWebControls, cxWebSnapAdapter;
type
TWebsnapAdaptersCountryItemPage = class(TcxWebSnapPageModule)
AdapterPageProducer: TAdapterPageProducer;
AdapterForm1: TAdapterForm;
AdapterErrorList1: TAdapterErrorList;
AdapterFieldGroup1: TAdapterFieldGroup;
AdapterButtonGroup1: TAdapterCommandGroup;
BtnApply: TAdapterActionButton;
BtnRefreshRow: TAdapterActionButton;
BtnCancel: TAdapterActionButton;
cxWebSnapControlAdapter1: TcxWebSnapControlAdapter;
cxWebSnapControlAdapter2: TcxWebSnapControlAdapter;
private
{ Private declarations }
public
{ Public declarations }
end;
function WebsnapAdaptersCountryItemPage: TWebsnapAdaptersCountryItemPage;
implementation
{$R *.DFM} {*.html}
uses
WebReq, WebCntxt, WebFact, Variants, WebSnapAdaptersData;
function WebsnapAdaptersCountryItemPage: TWebsnapAdaptersCountryItemPage;
begin
Result := TWebsnapAdaptersCountryItemPage(WebContext.FindModuleClass(TWebsnapAdaptersCountryItemPage));
end;
initialization
if WebRequestHandler <> nil then
WebRequestHandler.AddWebModuleFactory(TWebPageModuleFactory.Create(TWebsnapAdaptersCountryItemPage, TWebPageInfo.Create([wpPublished],'.html'), crOnDemand, caDestroy));
end.