<%----------------------------------------------------------------------------- Copyright (c) 2004 Actuate Corporation and others. All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html Contributors: Actuate Corporation - Initial implementation. -----------------------------------------------------------------------------%> <%@ page contentType="text/html; charset=utf-8" %> <%@ page session="false" buffer="none" %> <%@ page import="org.eclipse.birt.report.context.ScalarParameterBean, org.eclipse.birt.report.context.BaseAttributeBean, org.eclipse.birt.report.service.api.ParameterSelectionChoice, org.eclipse.birt.report.utility.ParameterAccessor, org.eclipse.birt.report.utility.DataUtil, org.eclipse.birt.report.IBirtConstants" %> <%----------------------------------------------------------------------------- Expected java beans -----------------------------------------------------------------------------%> <%----------------------------------------------------------------------------- Radio button parameter control -----------------------------------------------------------------------------%> <% ScalarParameterBean parameterBean = ( ScalarParameterBean ) attributeBean.getParameterBean( ); String encodedParameterName = ParameterAccessor.htmlEncode( parameterBean.getName( ) ); boolean isDisplayTextInList = parameterBean.isDisplayTextInList( ); %> <%= parameterBean.getDisplayName( ) %> <%= parameterBean.getDisplayName( ) %>: <%-- is required --%> <% if ( parameterBean.isRequired( ) ) { %> * <% } %> "> <%-- Parameter control --%> <% if (parameterBean.getSelectionList( ) != null) { boolean CHECKED = false; boolean isSelected = false; for ( int i = 0; i < parameterBean.getSelectionList( ).size( ); i++ ) { ParameterSelectionChoice selectionItem = ( ParameterSelectionChoice )parameterBean.getSelectionList( ).get( i ); String label = selectionItem.getLabel( ); String value = ( String ) selectionItem.getValue( ); String encodedValue = ParameterAccessor.htmlEncode(( value == null )?IBirtConstants.NULL_VALUE:value); CHECKED = ( DataUtil.equals( parameterBean.getValue( ), value ) && ( !isDisplayTextInList || ( isDisplayTextInList && label.equals( parameterBean.getDisplayText( ) ) ) ) ); %> >
<% if( CHECKED ) isSelected = true; } } %>