We are trying to adapt cheat sheet features in our project for training purpose. As part of that, we are invoking some custom command from cheat sheet with some parameter values. When we select perform action in cheat sheet, its hitting our custom handler implementation. so no problem till now.
But, in our custom handler implementation, we do some business logic after reading the parameters from event passed to the command . But this event have only information about command, but not the provided parameters. The same command\handler implementation is working other than in cheatsheet.
Please guide me.
Command:-
<command
id="com.test.rac.commands.testCommand"
name="Test Command">
<commandParameter
id="com.test.rac.commands.testCommand.testParam"
name="param1"
optional="true">
</commandParameter>
</command>
Cheatsheet
<item
title="Select">
<description>
<b>Select</b>
</description>
<command required="true"
serialization="com.test.rac.commands.testCommand(param1=testParamValue)"/>
</item>