Hi there,
I added a D2FS dialog with the sdk to my plugin and in it I defined a combo with java assistance
<combo advancedView_required="true" condition_required="true" condition_required_edit="true" control="true" id="name_field" assistance_type="java"
assistance_java="com.btmsoftware.support.javaassistance.dialogs.assistance.TesterAssistance" />In my class, I define a couple of options
public class TesterAssistance implements IJavaAssistance
{
@Override
public Object getValue(final D2fsContext arg0, final MultiResourceBundle arg1, final Map<String, Object> arg2) throws DfException, D2fsException
{
final XmlNode result = new XmlNodeImpl();
for (int i = 1; i <= 5; i++)
{
result.appendXmlNode(new XmlOptionEx(i, "Label " + i, false));
}
return result;
}
}
In my dialog class, in the buildDialog method, I have
@Override
public XmlNode buildDialog(final D2fsContext context, final List<Attribute> attributes) throws Exception
{
LOGGER.info("Tester.buildDialog()...");
final ParameterParser parameterParser = context.getParameterParser();
final URL dialogFile = context.getXmlDialogFile();
final MultiResourceBundle labelsBundle = context.getDialogBundle();
final Map<String, Object> defaultValues = new HashMap<>();
defaultValues.put("mode", parameterParser.getStringParameter("mode", "edit"));
XmlNode result = super.buildDialog(context, dialogFile, labelsBundle, context.getFirstObject(), defaultValues);
if (result == null)
result = super.buildDialog(context, attributes);
LOGGER.info("Tester.buildDialog()..." + result.toString());
return result;
}
So far so good.
when I call it from Smartview, I see in my log that the resulting dialog is correctly created and the 5 options I added in my java assistance class are there.
<dialog auto_smartview_edit_mode="false" buttons_right="false" focus="" height="500" id="Tester" initial_invalid="false" resizable="true" signoff_creation="false" signoff_edit="false" signoff_import="false" signoff_intention_dictionary="" signoff_intention_required="false" width="400" context="http://brava:8080/D2-Smartview" label="Tester" mapping_format="yyyy-MM-dd'T'HH:mm:ss.SSSZZ" value_format="yyyy-MM-dd'T'HH:mm:ss.SSSZZ">
<content>
<ombo advancedView_required="true" condition_required="true" condition_required_edit="true" control="true" id="name_field" assistance_type="java" assistance_java="com.btmsoftware.support.javaassistance.dialogs.assistance.TesterAssistance" label="Select name">
<o v="1" l="Label 1"/>
<o v="2" l="Label 2"/>
<o v="3" l="Label 3"/>
<o v="4" l="Label 4"/>
<o v="5" l="Label 5"/>
</ombo>
</content>
<buttons>
<button action="validDialog()" id="buttonOk" isPrimary="true" label="OK"/>
<button action="cancelDialog()" id="buttonCancel" label="Cancel"/>
</buttons>
<signoff_fallback_message>
<message locale="en" value=""/>
</signoff_fallback_message>
<list-labels>
<Tester>Tester</Tester>
<buttonCancel>Cancel</buttonCancel>
<name_field>Select name</name_field>
<buttonOk>OK</buttonOk>
</list-labels>
</dialog>HOWEVER, when Smartview opens the dialog, I get:
There are NO errors logged at allPS: BTW, seems I can't change my display name in my forum profile, but this is Francois Dauberlieu from BTM Software