如何获取combobox选中的值

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何获取combobox选中的值相关的知识,希望对你有一定的参考价值。

1.添加combobox后做如下设置

2.根据自己的需要在类中重写如下方法

// ==========================================================
// Combo box data source methods
// ==========================================================
- (NSInteger) numberOfItemsInComboBox: (NSComboBox *) aComboBox
#pragma unused (aComboBox)
return ([dataSource count]);

- (id) comboBox: (NSComboBox *) aComboBox objectValueForItemAtIndex: (NSInteger) index
#pragma unused (aComboBox)
return [dataSource objectAtIndex:index];

- (NSUInteger) comboBox: (NSComboBox *) aComboBox indexOfItemWithStringValue: (NSString *) string
#pragma unused (aComboBox)
return [dataSource indexOfObject:string];


- (NSString *) firstGenreMatchingPrefix: (NSString *) prefix
NSString *string = nil;
NSString *lowercasePrefix = [prefix lowercaseString];
NSEnumerator *stringEnum = [dataSource objectEnumerator];

while ( string = [stringEnum nextObject] )
if ([[string lowercaseString] hasPrefix:lowercasePrefix] )
return (string) ;


return (nil);
// firstGenreMatchingPrefix

- (NSString *) comboBox: (NSComboBox *) aComboBox completedString: (NSString *) inputString
#pragma unused (aComboBox)
// This method is received after each character typed by the user, because we have checked the "completes" flag for
// genreComboBox in IB.
// Given the inputString the user has typed, see if we can find a genre with the prefix, and return it as the suggested complete
// string.
NSString *candidate = [self firstGenreMatchingPrefix:inputString];
return (candidate ? candidate : inputString);

这些方法实现combobox在选择选项、自动完成时的处理方式。其中dataSource为NSArray。
3.设置combobox的datasource为实现上述方法的对象即可。
参考技术A onSelect:function(rec)varval=$('#cc1').combobox('getValues').join(',');$('#OperationID').val(val);这样可以多选,用一个文本框解决后台取值问题,后台直接取值的话,跟你一样问题

如何能实现easyui-combobox中的值change事件?

我有一个easyui-combobox,有两个选择,我需要在选择其中一个的时候执行特定的方法。
$(function()
$('#id').combobox(
onChange : function(i,o)
....

);
);
我是这样写的,但是它只执行一次,如果我在combobox中换来换去,就没用了,求指导!

参考技术A 还有onselect啊,是可以的,我一直都这么用
$('#id').combobox(
onselect : function(param)
var value = param.value;

);
希望能够帮到你,望采纳追问

jsp里面需要绑定事件吗?
还是js里面就这样写:
$(function()
$('#id').combobox(
onselect : function(param)
var value = param.value;



);

);

参考技术B $('#reporttype').combobox(
onChange : function(n,o)alert(n);
);

要先得到 combobox对象,而不是一般的 jQuery对象、。、。
参考技术C 你可以用onSelect 每次选择之后执行追问

具体怎么实现?我加进去总是报前台的错

追答

$(function()
$('#id').combobox(
onSelect : function(param)
var value = param.value;

);
);这样子不行吗? onSelect s不知道大小会不会影响,但api是大写的

本回答被提问者采纳

以上是关于如何获取combobox选中的值的主要内容,如果未能解决你的问题,请参考以下文章

c#如何获取comboBox当前选中的值

MFC中,怎么获取ComboBox的选中项

c#combox控件,如何获取上一次选中的值

求教,如何获得comboBox中当前选择的值

请教如何获取easyui-combobox下拉菜单的多个选中值

如何在 ExtJS Combobox 中获取所选 displayField 的值