Management center check box
Insert below queries :
----------------------------
insert into EMSPOT (EMSPOT_ID,STOREENT_ID,NAME,USAGETYPE) values ((select counter from KEYS WHERE TABLENAME ='emspot'),10101,'Option','STOREFEATURE');
insert into DMEMSPOTDEF values((select counter from keys where tablename='dmemspotdef'),(SELECT EMSPOT_ID FROM EMSPOT WHERE NAME ='Option'),10101,'FeatureEnabled','true',0,0);
update keys set counter = counter + prefetchsize where tablename ='emspot';
update keys set counter = counter + prefetchsize where tablename ='dmemspotdef';
/LOBTools/WebContent/WEB-INF/src/xml/commerce/store/propertiesViews/StorePropertiesView.xml
1. <EnablementCondition objectPath="StoreFlow[name=Option]" propertyName="hiddenFeature" enablementValue="false" />
2. <PropertyGroup name="groupOption" collapsable="false">
<EnablementCondition objectPath="StoreFlow[name=Option]" propertyName="hiddenFeature" enablementValue="false" />
<PropertyCheckbox helpText="${storeResources.Option.checkboxEnable.title}" name="Option.checkbox" objectPath="StoreFlow[name=Option]" promptText="${storeResources.Option.checkboxEnable.label}" propertyName="enabled"/>
</PropertyGroup>
/LOBTools/src/com/ibm/commerce/store/client/lobtools/properties/StoreLOB_en_US.properties
3. Option.checkboxEnable.title = test message Log Me In
Option.checkboxEnable.label = test message Log Me In<br>
Comments
Post a Comment