We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello i have multiple fixed choice like below:
((MultipleFixedChoicePage) mWizardModel.findByKey("Items")) .setChoices(names) .getAdapter().notifyDataSetChanged();
I cannot setId to each choice field. I just only can set the string name to display.
When i pass to bundle like this: Bundle bundle = mWizardModel.save();
Bundle bundle = mWizardModel.save();
I get the selected string by: List dealIdsString = bundle.getBundle("Items").getStringArrayList("_");
bundle.getBundle("Items").getStringArrayList("_");
The problem is i cannot get the selected id (additional property that i wanted to add). Please help. Thanks.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello i have multiple fixed choice like below:
I cannot setId to each choice field. I just only can set the string name to display.
When i pass to bundle like this:
Bundle bundle = mWizardModel.save();
I get the selected string by:
List dealIdsString =
bundle.getBundle("Items").getStringArrayList("_");
The problem is i cannot get the selected id (additional property that i wanted to add). Please help. Thanks.
The text was updated successfully, but these errors were encountered: