- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在和 Jenkins 一起玩hello world plugin并试图用异质 radio 而不是文本来定制它,但是我的用户界面不可见。我是果冻和 Jenkins 的新手。有人可以帮我解决这个问题吗?我正在尝试创建类似的东西,以红色突出显示
我的计划Demo1.java
private final HeteroRadioEntry projectVersion;
public HeteroRadioEntry getProjectVersion() { return projectVersion; }
@Override
public void perform(@Nonnull Run<?, ?> run, @Nonnull FilePath filePath, @Nonnull Launcher launcher, @Nonnull TaskListener taskListener) throws InterruptedException, IOException { }
public static abstract class Entry extends AbstractDescribableImpl<Entry> {}
public static final class SimpleEntry extends Entry {
private final String text;
@DataBoundConstructor public SimpleEntry(String text) { this.text = text; }
public String getText() { return text; }
@Extension public static class DescriptorImpl extends Descriptor<Entry> {
@Override public String getDisplayName() { return "Simple Entry"; }
}
}
public static final class AutoEntry extends Entry {
private final String text;
@DataBoundConstructor public AutoEntry() { this.text = "Some fixed string"; }
public String getText() { return text; }
@Extension public static class DescriptorImpl extends Descriptor<Entry> {
@Override public String getDisplayName() { return "Auto Entry"; }
}
}
public static final class HeteroRadioEntry extends Entry {
private final Entry entry;
@DataBoundConstructor public HeteroRadioEntry(Entry entry) { this.entry = entry; }
public Entry getEntry() { return entry; }
@Extension public static class DescriptorImpl extends Descriptor<Entry> {
@Override public String getDisplayName() { return "Hetero-Radio"; }
public List<Descriptor> getEntryDescriptors() {
Jenkins jenkins = Jenkins.getInstance();
return ImmutableList.of(jenkins.getDescriptor(AutoEntry.class), jenkins.getDescriptor(SimpleEntry.class));
}
}
}
@DataBoundConstructor public Demo1(HeteroRadioEntry projectVersion) { this.projectVersion=projectVersion; }
@Symbol("greet")
@Extension
public static final class DescriptorImpl extends BuildStepDescriptor<Builder> {
@Override public boolean isApplicable(Class<? extends AbstractProject> aClass) { return true; }
@Override public String getDisplayName() { return "Demo1"; }
}
}
Jelly程序Demo1/config.jelly
<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define" xmlns:l="/lib/layout" xmlns:t="/lib/hudson" xmlns:f="/lib/form">
<f:entry field="projectVersion"></f:entry>
</j:jelly>
Demo1/HeteroListEntry/config.jelly
<j:jelly xmlns:j="jelly:core" xmlns:f="/lib/form">
<f:entry title="Hetero-Choice">
<f:hetero-radio field="entry" descriptors="${descriptor.entryDescriptors}" />
</f:entry>
</j:jelly>
演示1/AutoEntry/config.jelly
<j:jelly xmlns:j="jelly:core" xmlns:f="/lib/form">
<f:label field="text" />
</j:jelly>
Demo1/SimpleEntry/config.jelly
<j:jelly xmlns:j="jelly:core" xmlns:f="/lib/form">
<f:entry field="text">
<f:textbox/>
</f:entry>
</j:jelly>
最佳答案
通过大量的努力,我通过引用此link获得了结果,尽管并不令人满意。 .它解释了hetero-radio/hetero-list的功能。我将嵌套的静态类移出外部
关于java - 异质 radio 不可见,jenkins 插件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54361032/
我对软件 radio 感兴趣。我基本上没有涉及任何电气工程或数学主题的经验,但我正在阅读...... 与其尝试处理天线和 ADC 的硬件方面,我想它会很有趣(而且更便宜)来播放一些预先录制的(甚至是实
我是 C++ 的新手,想了解一些东西。我的 main.cpp 中有这段代码: Radio r = Radio("PSR", 100.8); 或者那个代码: Radio r("PSR", 100.8);
我是 C++ 的新手,想了解一些东西。我的 main.cpp 中有这段代码: Radio r = Radio("PSR", 100.8); 或者那个代码: Radio r("PSR", 100.8);
如何将选定的 radio (从 radio 组)复制到另一个 radio ?这是我的jsfiddle:http://jsfiddle.net/fu3oyscq/1/ 这是我的jquery $("#co
我有这个表格: 1 X 2 1 2 我想实现这个: If a=1 then b=1 If a=X then unset b If a=2 then b=2 我尝试了这个,但没有任何作用: $
我为什么要为此苦苦挣扎? 我有一个值:5 如何查看值为 5 的组“mygroup”的单选按钮? $("input[name=mygroup]").val(5); // doesn't work? 最佳
正如标题所说例如: User1 User2 如何获取文本:用户 1 最佳答案 $('input:radio:checked').siblings('label:first').html() 更新:
无法在 Bootstrap radio 组中检查 radio 。只有 div 处于事件状态。 Link Bootstrap 单选组: Enabled Disa
如何禁用 radio 组中的一个 radio 输入? Option1 Option2 Option3 Option4 我的问题是我想在单击任何其他按钮后禁用选项1 例如: when i sele
我正在使用 jQuery 验证来验证其上设置了单选按钮的表单(在本例中设置 = 两个单选按钮)。带标签的单选按钮如下。该表单位于 jQueryUI 对话框上。 Yes No 我从 jquery.com
我有一个包含 26 个问题的表格,所有问题都有单选按钮组作为用户的答案选择(它计算给定属性(property)上特定入侵植物物种的风险因素)。最后,将每个 radio 组中的选定值相加。 让事情变得复
我创建了一个单选组列表并将它们附加到一个产品类别。因此,我正在做的是检查该类别应具有的组,然后选取该类别可用的这些组中的单选值并将其显示给用户进行填充。 接下来我想将它们传递给我的 ajax 函数,然
圆形边缘刚好从正方形或圆形中伸出,因此如果我在 before 之前提供白色背景,则 radio 边缘仍然略微可见。 input[type=radio] { box-sizing: border-b
我找到了一个纯 CSS 星级系统,但是对于给定的代码,我只能在每个页面上使用一个星级系统。我试过更改类(class)名称,但不幸的是,第二个星级评分表在按下时会检查第一个星级评分表。有什么办法解决这个
我有一个包含 radio 输入和标签的无序列表。当用户点击列表项时,它会切换一些信息并选择单选输入。 但是,由于上述原因,如果用户点击实际的 radio 输入本身,它不会选择它,因为我猜点击是针对 r
我想使用一些 radio 输入创建一个表单。检查输入时,还会使用 jQuery 自动检查另一个 radio 。 例如: 问题1:A(勾选),B,Cquestion2: D(auto checked),
如果我检查了名称为“most1”且值相同的单选按钮,如何禁用名称为“least1”的单选按钮 最佳答案 在
如何在选择第一个 radio 输入时选择所有复选框并在选择第二个 radio 输入时取消选中所有复选框? (Javascript)? 我在这里研究过以前的类似问题,但它们似乎都是关于使用复选框而不是单
Please, please check me Am I selected ? 我想要以下行为: 当 myCheckbox 被选中时,myRadio 将被选中。 当 myCheckbox
我知道无符号数永远不会小于 0,因此无需对其进行测试。但我想避免调谐器出现虚假频率。 /* freqKHz is in KHz (duh) */ void videoinput_set_tuner
我是一名优秀的程序员,十分优秀!