CheckboxGroupInput with vertical Checkboxes - react-admin

https://marmelab.com/react-admin/Inputs.html#checkboxgroupinput
For CheckboxGroupInput, react-admin places checkboxes horizontally as picture below:
My question is: Is it possible to have these checkboxes placed vertically?

I've just been looking for the answer to this, and found it by delving into the groupbox code:
<CheckboxGroupInput
source="tags"
choices={tags}
optionValue="id"
optionText="title"
row={false}
/>

Related

Re: Delete selected item from two list boxes

I'm a bit of a newbie and my question probably has a simple answer... I have searched this site and Google, but haven't found an answer yet? JaredPar's answer to the above question seems to be the answer to my current need, but I pasted his code into my program and it gives me the following problem:
SelectedIndex is not a member of ListView.
This is the only code I have found so far to delete the same selected item from more than one ListView.
I am inserting node text from a Treeview into a ListView and a DataGridView(DGV). When the user inserts the wrong item from the Treeview and decides to delete it both from the Listview and the DGV, the user selects the item from the current list in Listview and clicks the Delete button. This should delete the same item in both the Listview and the DGV to maintain both lists updated. The Listview is used for a visual list during user selection of items by clicking on Treeview nodes. The DGV is used for filtering a saved list of all the items introduced by user in this way.
I was using the following code until I came across the code by JaredPar under the above title, but this only removes an item from Listview. JaredPar's code appears to remove the selected item from 2 Listviews:
For i As Integer = ListView1.SelectedItems.Count - 1 To 0 Step -1
ListView1.SelectedItems(i).Remove()
Next
I hope my question is understandable and that someone can help me with this to be able to learn from your examples! Thanks for any help!

Horizontal List as a ControlSource for Excel-VBA form ComboBox

I am looking to utilize a combo box on my excel-VBA form.
My source is a horizontal list (headings of some columns).
Any method I've found so far results in only the first item of my list being populated in the combo box control.
Is there something I need to do differently to make sure that:
combobox1.ControlSource
is accurately grabbing everything in the horizontal list and not just the first item?
Thanks for the help!
-Kyle
My best suggestion is to do a for loop
CODE:
for each cell in range("A1:G1") 'for example
combobox1.additem(cell.value)
next cell
it is also a good idea to clear the comboboxes items before this to prevent duplicates the code for that is just combobox1.clear()
you could also use xlright for the loop but that isn't very reliable
Hope this helps

Set VerticalAlignment of LongListMultiSelector content

I'm using the LongListMultiSelector of the WP Toolkit to select multiple items. I've written a DataTemplate, which is a little bit complex and have a hight of round about 140px. Now I want to change the position of the Checkbox to VerticalAlignment Top to VerticalAlignment Center. I've tried to change the style of the LongListMultiSelector, but this doesn't work.
Has anybody an idea?
It's the LongListMultiSelector's ItemContainerStyle. Here you find the toolkit's styles. Copy the < Style x:Key="LongListMultiSelectorItemListStyle" TargetType="controls:LongListMultiSelectorItem">, change the x:Key, and change the line which says < CheckBox x:Name="SelectBox" VerticalAlignment="Top" ...

tabindex not working with textboxes xul

I have four textboxes like:
<xul:textbox value="vipin" tabindex='1'/>
<xul:textbox value="vipin1" tabindex='2'/>
<xul:textbox value="vipin2" tabindex='3'/>
<xul:textbox value="vipin3" tabindex='4'/>
I have implemented the tabindex on the textboxes, But tabindex not working.
how can we do that?
here is a Mozilla documentation one XUL.
here is a simple example on how to use it

how would I get the selected checkboxes from the combobox? Give example to get the selected check box values from combo box

I am looking for something like combobox with checkbox selection(second one on that page, the picklist):
http://www.smartclient.com/smartgwt/showcase/#multi_select_combobox_category
please give code snippet to get selected checkboxes values from combobox in GWT EXT.
thanks.
You can use the LovCombo, this component implements a combobox with checkboxes inside. Take a look at: http://lovcombo.extjs.eu/