- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我搜索后找不到答案:
我的 radio 组中有四个项目,其中三个是汽车名称,第四个项目我称之为“无”。当单击第四个项目时,它将索引设置为 -1。到目前为止效果很好。我想要一个功能,如果我单击一个已经选中的项目(activeindex),它会将其设置为-1。这样,我可以从列表中删除第四个“无”项目。这在 radio 组中可能吗?
只有当单击的项目已经是索引(旧索引)并且它将被取消选中时,这才应该起作用。如果单击未选中的项目,它仍会将索引设置为该项目。
谢谢!!
最佳答案
标准单选按钮的行为与您描述的不同。一旦选中一个单选按钮,它就会保持选中状态,直到选中同一组中的另一个单选按钮。
但是,仍然可以通过一些手动工作来实现您所要求的内容:
type
TMyForm = class(TForm)
RadioGroup1: TRadioGroup;
procedure FormShow(Sender: TObject);
private
{ Private declarations }
OriginalWndProcs: array[0..2] of TWndMethod;
procedure RadioButtonWndProc1(var Message: TMessage);
procedure RadioButtonWndProc2(var Message: TMessage);
procedure RadioButtonWndProc3(var Message: TMessage);
procedure RadioButtonWndProc(const Index: Integer; var Message: TMessage);
public
{ Public declarations }
end;
procedure TMyForm.RadioButtonWndProc1(var Message: TMessage);
begin
RadioButtonWndProc(0, Message);
end;
procedure TMyForm.RadioButtonWndProc2(var Message: TMessage);
begin
RadioButtonWndProc(1, Message);
end;
procedure TMyForm.RadioButtonWndProc3(var Message: TMessage);
begin
RadioButtonWndProc(2, Message);
end;
procedure TMyForm.FormShow(Sender: TObject);
var
NewWndProcs: array[0..2] of TWndMethod;
I: Integer;
begin
NewWndProcs[0] := RadioButtonWndProc1;
NewWndProcs[1] := RadioButtonWndProc2;
NewWndProcs[2] := RadioButtonWndProc3;
for I := 0 to 2 do
begin
OriginalWndProcs[I] := RadioGroup1.Buttons[I].WindowProc;
RadioGroup1.Buttons[I].WindowProc := NewWndProcs[I];
end;
end;
procedure TMyForm.RadioButtonWndProc(const Index: Integer; var Message: TMessage);
begin
if (Message.Msg = CN_COMMAND) and
(TWMCommand(Message).NotifyCode = BN_CLICKED) and
(RadioGroup1.Buttons[Index].Checked) then
begin
RadioGroup1.Buttons[Index].Checked := False;
Exit;
end;
OriginalWndProcs[Index](Message);
end;
<小时/>
更新:上面的代码可以稍微简化一下,将TRadioButton
对象直接传递给RadioButtonWndProc()
,而不需要使用中间过程代理方法:
type
TMyForm = class(TForm)
RadioGroup1: TRadioGroup;
procedure FormShow(Sender: TObject);
private
{ Private declarations }
OriginalWndProcs: array[0..2] of TWndMethod;
procedure RadioButtonWndProc(var Message: TMessage);
public
{ Public declarations }
end;
procedure TMyForm.FormShow(Sender: TObject);
var
I: Integer;
Btn: TRadioButton;
M: TWndMethod;
begin
for I := 0 to 2 do
begin
Btn := RadioGroup1.Buttons[I];
Btn.Tag := I;
OriginalWndProcs[I] := Btn.WindowProc;
M := RadioButtonWndProc;
TMethod(M).Data := Btn; // <-- makes Self in RadioButtonWndProc() point to the Button instead of the Form...
Btn.WindowProc := M;
end;
end;
procedure TMyForm.RadioButtonWndProc(var Message: TMessage);
var
Btn: TRadioButton;
begin
Btn := TRadioButton(Self);
if (Message.Msg = CN_COMMAND) and
(TWMCommand(Message).NotifyCode = BN_CLICKED) and
(Btn.Checked) then
begin
Btn.Checked := False;
Exit;
end;
MyForm.OriginalWndProcs[Btn.Tag](Message); // <-- note, using the global Form pointer to reach Form members...
end;
如果您想支持多个 radio 组,可以进一步调整代码:
type
PRadioButtonInfo = ^TRadioButtonInfo;
TRadioButtonInfo = record
OriginalWndProc: TWndMethod;
end;
TRadioGroupInfo = record
ButtonInfo: array of TRadioButtonInfo;
end;
TMyForm = class(TForm)
RadioGroup1: TRadioGroup;
RadioGroup2: TRadioGroup;
// as many RadioGroups as you want...
procedure FormShow(Sender: TObject);
private
{ Private declarations }
GroupInfo: array of TRadioGroupInfo;
procedure PrepareRadioGroup(GroupIndex: Integer; RadioGroup: TRadioGroup);
procedure RadioButtonWndProc(var Message: TMessage);
public
{ Public declarations }
end;
procedure TMyForm.FormShow(Sender: TObject);
begin
SetLength(GroupInfo, 2); // as many groups as you need to have this non-standard behavior...
PrepareRadioGroup(0, RadioGroup1);
PrepareRadioGroup(1, RadioGroup2);
// and so on...
end;
procedure TMyForm.PrepareRadioGroup(GroupIndex: Integer; RadioGroup: TRadioGroup);
var
I: Integer;
Btn: TRadioButton;
M: TWndMethod;
begin
with GroupInfo[GroupIndex] do
begin
SetLength(ButtonInfo, RadioGroup.Items.Count);
for I := 0 to Length(ButtonInfo)-1 do
begin
Btn := RadioGroup.Buttons[I];
ButtonInfo[I].OriginalWndProc := Btn.WindowProc;
Btn.Tag := NativeInt(@ButtonInfo[I]); // <-- or Longint prior to XE2
M := RadioButtonWndProc;
TMethod(M).Data := Btn;
Btn.WindowProc := M;
end;
end;
end;
procedure TMyForm.RadioButtonWndProc(var Message: TMessage);
var
Btn: TRadioButton;
begin
Btn := TRadioButton(Self);
if (Message.Msg = CN_COMMAND) and
(TWMCommand(Message).NotifyCode = BN_CLICKED) and
(Btn.Checked) then
begin
Btn.Checked := False;
Exit;
end;
PRadioButtonInfo(Btn.Tag).OriginalWndProc(Message);
end;
<小时/>
另一种方法是对 TRadioGroup
对象进行子类化,而不是对各个 TRadioButton
对象进行子类化:
type
TMyForm = class(TForm)
RadioGroup1: TRadioGroup;
RadioGroup2: TRadioGroup;
// as many RadioGroups as you want...
procedure FormShow(Sender: TObject);
private
{ Private declarations }
OriginalWndProcs: array of TWndMethod;
procedure PrepareRadioGroup(GroupIndex: Integer; RadioGroup: TRadioGroup);
procedure RadioGroupWndProc(var Message: TMessage);
public
{ Public declarations }
end;
procedure TMyForm.FormShow(Sender: TObject);
begin
SetLength(OriginalWndProcs, 2); // as many groups as you need to have this non-standard behavior...
PrepareRadioGroup(0, RadioGroup1);
PrepareRadioGroup(1, RadioGroup2);
// and so on...
end;
procedure TMyForm.PrepareRadioGroup(GroupIndex: Integer; RadioGroup: TRadioGroup);
var
I: Integer;
M: TWndMethod;
begin
RadioGroup.Tag := GroupIndex;
OriginalWndProcs[GroupIndex] := RadioGroup.WindowProc;
M := RadioGroupWndProc;
TMethod(M).Data := RadioGroup;
RadioGroup.WindowProc := M;
end;
procedure TMyForm.RadioGroupWndProc(var Message: TMessage);
var
Grp: TRadioGroup;
Ctl: TWinControl;
Btn: TRadioButton;
begin
Grp := TRadioGroup(Self);
if (Message.Msg = WM_COMMAND) and
(TWMCommand(Message).NotifyCode = BN_CLICKED) then
begin
Ctl := FindControl(TWMCommand(Message).Ctl);
if Ctl is TRadioButton then
begin
Btn := TRadioButton(Ctl);
if Btn.Checked then
begin
Btn.Checked := False;
Exit;
end;
end;
end;
MyForm.OriginalWndProcs[Grp.Tag](Message);
end;
<小时/>
综上所述,我首先不会推荐这种 UI 设计。这根本不是用户期望单选按钮的行为方式。更好的 UI 选择是使用 TComboBox
来代替,其中包含第四个项目,用于不选择任何内容。单个 TComboBox
比多个单选按钮占用更少的空间,并且它仍然提供用户期望的单选行为。
关于delphi - TRadioGroup : Click on current checked item twice to uncheck it. 可以吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16864680/
这个问题在这里已经有了答案: What's the proper value for a checked attribute of an HTML checkbox? (10 个答案) 关闭 8 年
我使用这个制作了自定义复选框: enter link description here 也可在 stackoverflow 上获得:enter link description here 但我正在尝试
我需要使用 CSS“checkbox-hack”来实现滑动菜单指示器效果,我唯一的方法是通过 JavaScript 附加输入元素。我被迫通过在线工具 MonoSolutions 执行此操作,并且我受到
此代码运行良好,但缺少一些我需要的东西。基本上,如果输入有一个 checked="checked" 属性,它应该使其他两个元素保持禁用状态。如果未选中,则元素已启用。 这是我在 jsFiddle 上的
当我的人 checkout 文件时,我希望他们将其锁定,以便其他人也无法进行更改,我从这篇文章中看到:http://msdn.microsoft.com/en-us/library/jj155783.
请告诉我这些函数的作用。 最佳答案 这些是基于框架的、与语言无关的方法,用于在 .NET 中定义代码契约。虽然某些语言(如 spec# 和 Delphi Prism)对代码契约具有一流的语言支持,但这
假设以下场景:您有 2 个单选按钮,它们具有相同的名称,并且都被选中(我知道这是无效的): 为什么下面两个选择器的行为不同? $('.input:checked').size(); // retu
我正在尝试收听广播。以下均不起作用: [编辑] $('selector').attr('checked','checked'); $('selector').attr('checked',true);
我实际上在努力理解此类型错误。 任何人都知道我如何更正代码?谢谢 CheckIn checkin1 = new CheckIn(location1, dt); CheckInMonths checkI
我有这段代码,但不起作用。 .on("click","span.name", function selectThisName(e) { if (e.altKey) {
我现在是 Espresso 的新手,我遇到了这个异常: android.support.test.espresso.AmbiguousViewMatcherException: 'with id: a
我已经创建了一个基本的 2 单选按钮表单,如下面的示例所示。 观察浏览器渲染,我们看到元素 1 被选中。我们检查元素 1 和元素 2。 当我点击元素 2 时,我希望元素 1 的 checked=che
我在查找以下 jquery/checkbox 行为的原因时遇到问题。 $( this.obj + ' table.sgrid-content > thead > tr > th > input.sel
以下逻辑应用在上午 10 点触发并运行 SQL Server 查询。从图片中可以看出,结果集是空的。 条件检查检查查询的结果集是否为空。 (第二张图) 这仍然如何转化为 True?结果显然是空的。 最
我想知道哪种操作更快: int c = version1.compareTo(version2); 这个 if (c == 1) 或者这个 if (c > 0) 符号比较是否只使用一位检查,而相等比较
我有一个包含大约 100 个问题的表单,每个问题都有一个单选按钮和一些复选框,因此我需要用户能够保存表单并在以后加载它。我还需要检查用户在此 session 中更改了哪些。 本题解决问题:How ca
我正在编写一个小程序,需要用户决定一些 bool 值。我已经制作了复选框来处理这一部分,但问题是每次我选中或取消选中一个复选框时,所有其他复选框都会跟随。 我在网上搜索过,但我找到的唯一解释( pyt
我有以下代码片段(我使用的是 jQuery 1.4.2): $.post('/Ads/GetAdStatsRow/', { 'ad_id': id }, function(result) {
我的代码发生了一些奇怪的事情。我有两个按钮,其中一个带有 .add 和 .remove 类,有一个复选框会根据按下哪个按钮而打开和关闭,因此如果您使用删除按钮删除,则选中的复选框将被选中,否则复选框将
我陷入了一种情况,我必须通过“选中”工具栏中的复选框来“选中”列表中存在的所有复选框。 这是创建复选框列表的代码:- itemTpl: 'checked="checked" /> {groupName
我是一名优秀的程序员,十分优秀!