Hello,
I'm new to WDK and would appreciate any help I can get. I created a configuration xml file to modify the dialogcontainer component. There is no real need behind that except to practise these sorts of things.
As a starting point, I created the configuration file which modifies the <start> pages of the component as follows:
<config>
<scope>
<component modifies="dialogcontainer:wdk/config/dialogcontainer_component.xml">
<replace path="pages">
<pages>
<filter clientenv="not appintg">
<start>/custom/my_dialog_container/my_dialog_container.jsp</start>
</filter>
<filter clientenv="appintg">
<start>/custom/my_dialog_container/my_appintgdialog_container.jsp</start>
</filter>
</pages>
</replace>
</component>
</scope>
</config>
I also copied the same JSP files the dialogcontainer component uses to the folder "webtop\custom\my_dialog_container" and named them as specified in the configuration file. I deleted "work" directory, and then restarted. However, when I try to launch a component inside dialogcontainer, I get the following error:
FormProcessor: can not perform 'doFreshInclude' : File "/wdk/container/my_dialog_container.jsp" not found
Any ideas about what I'm doing wrong?
Best regards,