Questions tagged [multichoiceitems]

A multichoice list is a control where the user can select more than one item (which, typically show up as check boxes)

A multichoice list is a control where the user can select more than one item (which, typically show up as check boxes)

70 questions
0
votes
1 answer

change color on unchecked item to multiple_choice listview

I have a listview with simple_list_item_multiple_choice adapter and when I check one of checkbox item, this unchecks the others checkboxes, until here well, but I want to change backgroundcolor of the others checkboxes too. here it is my…
0
votes
1 answer

How to get ListView item id in a contextual menu

I have a listView which does the following: @Override protected void onListItemClick(ListView l, View v, int position, long id) { super.onListItemClick(l, v, position, id); Intent i = new Intent(this, TodoDetailActivity.class); Uri…
waylonion
  • 6,866
  • 8
  • 51
  • 92
0
votes
1 answer

android multichoice listview error Exception

for choosing favorite contact ,i load all contact inside a list view and declare my adapter like below : ArrayAdapter cnct_List_Adapter =new ArrayAdapter(getActivity(),android.R.layout.simple_list_item_multiple_choice,info); and for…
0
votes
1 answer

SharePoint - MultiChoice doesn't show up in Content Types returned by REST interface

I've added a multichoice column to a content type, and when I call listdata.svc and look inside of the content types and find the content type I've added this column too, the multichoice column isn't there. When I change the column to a dropdown it…
Ryan Duffing
  • 664
  • 3
  • 11
  • 20
0
votes
1 answer

Android ListView toggle on MultiChoiceMode.Modal

I have a listview and have implemented the MultiChoice mode to be MultipleModal and set a MultiChoiceModeListener via 'listView.SetMultiChoiceModeListener(this)` and then had my activity implement the interface. I would like to have an action bar…
egfconnor
  • 2,637
  • 1
  • 26
  • 44
0
votes
1 answer

Checked multiple checkbox using c# in Sharepoint 2013

I have a problem! :( I programming in C# for Visual Studio 2012 and I am building an intranet that uses data from Sharepoint 2013. I have a problem in the register. In SharePoint 2013, I have a list. In that list, one of the columns is of type…
0
votes
3 answers

Disabling CheckBox in MultiChoiceItems AlertDialog

I have an AlertDialog which it has dynamic items linked to a Cursor from database , it works fine but i wanted to disable user interaction with that because it's an informational dialog , i've disabled my dialog with :…
Arash GM
  • 10,316
  • 6
  • 58
  • 76
-1
votes
1 answer

Django multiselect choice AttributeError: 'str' object has no attribute 'status_code'

I have defined choices for a category in models.py which is being referenced in forms.py like so: models.py class Exp(models.Model): CATEGORIES = ( ('Inc', 'Inc'),\ ('Hom', 'Hom'),\ ('syn', 'Syn'),\ …
UNagaswamy
  • 2,068
  • 3
  • 30
  • 35
-2
votes
1 answer

Django MultiChoiceField with extra field

Basically I need to create a multichoicefield, witch additionally has quantity field. So for each choice I need to add this extra positiveinteger field but i don't know how to add it. EDIT: I need to make orders, so you need to check what elements…
-3
votes
1 answer

multichoicemodelistener selecting multiple items for single click

I have implemented MultichoicemodeListener and its creating some weird issues... I have 12 items on list... 8 are visible and 4 are below the screen .. so those 4 are hidden .when i long click from 8 visible items...the code also changes the…
Atul Khera
  • 31
  • 1
  • 1
  • 6
1 2 3 4
5