我知道可以设置一个事件,只要该事件在Kendo UI的选项卡条中更改时就会触发。但是,我想知道是否可以在单独的标签上触发单独的事件?
例如,我有一个带有6个标签的标签条。我想在输入选项卡2时触发与输入选项卡4或5或6时不同的事件。我希望每个选项卡都有一个单独的事件。如何告诉Kendo UI监听我们将要启动哪个选项卡的这些不同事件?
答案 0 :(得分:0)
请显示您尝试过的内容,这将帮助我们找到确切的问题/解决方案。
无论如何,您可以在Scanner sc = new Scanner(System.in);
// accept user input for N
System.out.println("Enter N");
int n = sc.nextInt();
String time;
int c = 0;
// store the DateFormat to compare the user inputs with
String time2 = "9:30";
DateFormat sdf = new SimpleDateFormat("hh:mm");
Date d2 = null;
try {
d2 = sdf.parse(time2);
} catch (ParseException e) {
e.printStackTrace();
}
// iterate for N times, asking for a user input N times.
for (int i = 0; i < n; i++) {
// get user's input to parse and compare
System.out.println("Enter Time");
time = sc.next();
Date d1 = null;
try {
d1 = sdf.parse(time);
} catch (ParseException e) {
e.printStackTrace();
}
if (d1.after(d2)) {
c++;
}
}
System.out.println(c);
中使用active
事件处理程序。
为选项卡设置TabStrip
,并在用户激活时检查id
并调用id
。
有关更多信息,Documentation
这是一个非常简单的示例
function