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
0 answers

In PowerApps, how do I return the multichoice selected values and other (user input) values back to the SharePoint list?

I have a choice field that is a list of authors (people's names) and allows for multiple selections. When wanting to create an App for this SharePoint list, PowerApps automatically converted the field to a combobox and the checkboxes moved into a…
chloecamp
  • 1
  • 1
0
votes
2 answers

how can i save the multichoice state in an alertdialog?

I have a code where I created a method to display a dialog box with the option of multi-choice but when checking and clicking the OK button the status is not saved how can I do this? I saw something with sharedpreferences but I'm not able to…
0
votes
0 answers

How to get the selected text, not its position in an AlertDialog with MultiChoiceItems

I implemented the google example about alertDialog with multichoititem, in this class: @NotNull public Dialog onCreateDialog(Bundle savedInstanceState){ final boolean[] qtdClassif = new boolean[25]; ArrayList…
luke cross
  • 321
  • 1
  • 2
  • 19
0
votes
1 answer

Multi charts select like in Google Cloud Platform

I can create a single chart but I want to create multi charts that are selected all together when I hover over one of them, just like in google cloud dashboard : console.cloud.google.com/home/dashboard If you go to the dashboard there is Compute…
itneg
  • 73
  • 1
  • 10
0
votes
2 answers

How to retain selection in multi choice dialog in Android on rotation?

I have a dialog to select more than one days of a week as follows: class DialogSettingsEnabledDays : DialogFragment() { override fun onCreateDialog(savedInstanceState: Bundle?): Dialog { return activity.let { val…
Akshdeep Singh
  • 1,301
  • 1
  • 19
  • 34
0
votes
1 answer

setBackgroundResource in onItemCheckStateChanged doesn't work for the first selection

I am working on an android project where I have a grid view and I am setting it up with a MultiChoiceModeListener. When I long click, it successfully creates the contextual action bar but setting the setBackgroundResource on the initial item that…
Boardy
  • 35,417
  • 104
  • 256
  • 447
0
votes
1 answer

How to Multichoice Options That Appears When Clicking Single Chocie in Android

I want something like this. There could be passive multichoice buttons below all of the single choices. It doesn't matter. Is that possible? Single and Multiple Choice Dialog
user10301915
0
votes
1 answer

Save many values in one checkbox laravel

I have a table that shows all files from public/folder, with format name 1_CCA-2018-0182224-720422085426 1_CCA-2018-0182224 this is ACCOUNT ID 720422085426 this is ID NO when user check the checkbox I want to save filename to 2 column (ACCOUNT ID…
nvrzl
  • 103
  • 1
  • 3
  • 14
0
votes
1 answer

Django initial value for MultiChoice Field ignored for ModelForm

this is my first post here and I am very new to Django but I just can't seem to find a solution for this problem... I've searched stackoverflow and google but nothing seems to work for me... I have a wine-app and want to be able to add and remove…
0
votes
1 answer

How to work with ModelMultiChoiceField

I am trying to save the choices(COURSES_CHOICES) selected by the department in the database and populate(check/select) the same using the data saved in the database. model.py class Choices(models.Model): COURSES_CHOICES = ( ('analysis',…
0
votes
0 answers

Django model multiple select field but not multi select box

How to let user be multiple-choice in Django models? Do I need django-multiselectfield, but it's choices are user-defined, right?(sample 1), not the data from user models. I want to make multiple-choice users, not single choice, I pasted my code…
0
votes
1 answer

multiselect choice alert dialog only changes value of last item on clicking an item android

I have a multichoice alert dialog which displays an arraylist properly in a list with checkbox in each row.I want to change the value of the checked item in the list ie...if it is checked it should be 1 else 0.The problem is on clicking it only…
user8601021
  • 219
  • 3
  • 18
0
votes
0 answers

Android setMultiChoiceItems with no space between items

I'm using an android AlertDialog (setMultiChoiceItems) to show a list of items. If I use target 26 in gradle there is no separetion line and the items are very close to each other. If I use a ListView I can put a separetion line but I have the same…
0
votes
1 answer

ListView Multichoice listener is not working properly when we enable from ImageView

after releasing the long click, the item is getting deselected automatically. holder.attach_img.setOnLongClickListener(new View.OnLongClickListener() { @Override public boolean onLongClick(View v) { …
Rathan Kumar
  • 2,567
  • 2
  • 17
  • 24
0
votes
1 answer

Issue while generating complex query from multiple choices and multiple parameter filter

Its an eCommerce app that has filters where parameters are taken dynamically from a table. "Filters" table looks like following: id | group | label | value ----+----------+-------------------+---------------- 12 | deadline | 1…
chuck
  • 125
  • 3
  • 16