use of org.openforis.collect.designer.viewmodel.SurveyExportParametersVM.SurveyExportParametersFormObject.OutputFormat in project collect by openforis.
the class SurveyExportParametersVM method isIncludeDataVisible.
@DependsOn({ "tempForm.type", "tempForm.outputFormat" })
public boolean isIncludeDataVisible() {
SurveyType type = SurveyType.valueOf(getTypeFormField());
OutputFormat outputFormat = OutputFormat.valueOf(getOutputFormatFormField());
return type == PUBLISHED && outputFormat == RDB;
}
Aggregations