on 2018 Nov 27 5:17 PM
Request clarification before answering.
Yes you can, Check below example I have used
<wz:step id="step2" label="hmc.tab.addproductlistwizard.two" sublabel="hmc.tab.addproductlistwizard.section2">
<wz:content>
<wz:property qualifier="productsForm.newProductSet" type="MultiReference-COLLECTION(Product)"
editor="com.hybris.cockpitng.editor.extendedmultireferenceeditor">
<wz:editor-parameter>
<wz:name>listConfigContext</wz:name>
<wz:value>productToAddAttributes</wz:value>
</wz:editor-parameter>
</wz:property>
</wz:content>
<wz:navigation>
<wz:cancel/>
<wz:back/>
<wz:custom label="hmc.wizard.footer.done" handler="mcdProductsSubmitHandler" />
</wz:navigation>
</wz:step>
.....
<context type="Product" component="productToAddAttributes">
<list-view:list-view xmlns:list-view="http://www.hybris.com/cockpitng/component/listView">
<list-view:column qualifier="code"/>
<list-view:column qualifier="name"/>
<list-view:column qualifier="catalogVersion"/>
</list-view:list-view>
</context>
Hope this will help and Let me know if you have any doubt around this.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can write custom renderer in list view to fetch the list of customer. This can be achieved by https://help.hybris.com/6.6.0/hcd/8bab997f86691014852cfbeabd21a5c8.html I guess
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Actually I have the list of b2bcustomers that I wan to render in create wizard in list view with multi selected functionality
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.