MWA - Add Inline DFF to Receive All Page [message #628076] |
Wed, 19 November 2014 17:29 |
|
aaronk
Messages: 2 Registered: November 2014
|
Junior Member |
|
|
Using the code below I have added a DescriptiveFlex FieldBean to a Receive All Page.
I am unable to get it to display inline, how can I achieve this?
this.mDffBean = new DescriptiveFlex FieldBean("WMS", "WMS_LICENSE_PL ATE_NUMBERS", null, "DEFAULT",paramSession);
this.mDffBean.setDisplayInline (true);
ArrayList localArrayList1 = new ArrayList();
localArrayList1.add(mDffBean);
this.setInlineDffBeans(localArrayList1);
this.mDffBean.setName("LPNDFF" );
this.mDffBean.setDisplayInline (true);
this.mDffBean.setHidden(false) ;
UtilFns.trace(" this.mDffBean.i sDisplayInline( ): " + this.mDffBean.i sDisplayInline( ));
FileLogger.getSystemLogger().trace("this.mDff Bean.isDisplayI nline(): " + this.mDffBean.i sDisplayInline( ));
addFieldBean(this.mDffBean);
|
|
|
|