我必须在选择两个不同的单选按钮时显示两个不同的字段。 我这样做: 最新帖子 修订
<nok-layout:radios
path="radioPath"
options="${openerAccessOptions}"
label="Please select any one"
id="radio"
value="v1"
我想在我的JSP中应用它,但我们在JSP中使用taglib。任何人都可以告诉我如何在我的jsp中实现它。我在这里发布一些代码。 这是我用来显示必须选项的无线电字段的标签。
"openerAccessOptions"
这里我采用了List&lt;&gt;中的收音机选项并使用其值List<MyOption> radioList = new ArrayList<MyOption>();
radioList.add((new MyOption("based on date","v1")));
radioList.add((new MyOption("based on months","v2")));
request.setAttribute("openerAccessOptions", radioList );
来显示它。
//Example.h
#pragma once
#ifdef EXPORTING_DLL
extern __declspec(dllexport) void HelloWorld();
#else
extern __declspec(dllimport) void HelloWorld();
#endif
//Example.cpp
#include "Functions.h"
#define EXPORTING_DLL
void HelloWorld()
{
}
答案 0 :(得分:0)
有什么问题?您可以使用标识radio
访问单选按钮并使用您的代码。使用taglib不是问题。