hi all.i am trying to make my datagrid when right clicked some action options appear.the datagrid includes just 1 table:dm_workflow.for this i followed these steps:
1.Create a component(action_test_component.xml)
i succesfully created the component with jsp and java files.
2.create action configuration file(action_test_actions.xml)
it is like this:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<config version="1.0">
<scope type="dm_workflow">
<menuconfig id="context-menu">
<actionmenuitem dynamic="generic" action="testaction"
nlsid="MSG_TEST_ACTION" showifdisabled="true" showifinvalid="true" />
</menuconfig>
<action id="testaction">
<desc>...</desc>
<params>
</params>
<preconditions>
<precondition class="com.ggsoft.halkbank.hlkcomponents.TestActionExePre">
<argument>queuename</argument>
</precondition>
</preconditions>
<execution class="com.ggsoft.halkbank.hlkcomponents.TestActionExePre">
</execution>
</action>
</scope>
</config>
i also create the precondition and execution class.
3.application.xml includes:
<display>
<classic>10</classic>
<streamline_folders>15</streamline_folders>
<streamline_files>10</streamline_files>
<hiddenobject>false</hiddenobject>
<hideinvalidactions>false</hideinvalidactions>
</display>
indeed there are other actions running healthyly, so there is no problem with application-wide rules.
4.in data grid rowselection is set true.
what else?is there anything i missed?my action does not work.
Best Regards.