Questions tagged [mvxbind]
39 questions
1
vote
2 answers
mvxlistview click on item
I'm currently creating an app for Android using MvvmCross. Part of that app requires a MvxListView, where each item has 2 TextViews. One of these TextViews are hidden by default. I'm looking to implement an accordion like functionality, where…

Tempe
- 13
- 4
1
vote
1 answer
mvvmcross MvxBind on actionSend (imeOption action)
i have an editText like this:
I want the command to be triggered by the "enter/action"…

Softlion
- 12,281
- 11
- 58
- 88
0
votes
0 answers
Xamarin ios: loaded the nib but the view outlet was not set
I’m new in xamarin ios and I need to add view in existing project. Project use mvvmcross framework.
I’ve done:
Created PerevozkiViewModelClass :MvxViewModel in Core project
Add UI View controller with storydoard (P.S. BaseView extends…

Tat Leb
- 11
- 1
- 3
0
votes
1 answer
Execute MVVMCross value converter logic on UI thread
I am working on a Xamarin.iOS project, and have a MVVMCross value converter that takes a file extension string and returns the corresponding file icon as an UIImage.
This converter is used in a file list. I found that when I'm scrolling the list, as…

Leon Zhou
- 633
- 6
- 20
0
votes
1 answer
How to bind AfterTextchanged of EditText using MvxBind
I would like to know how can I bind listeners of EditText to ViewModel via MvxCommad and ICommand/IMvxCommand
In the below layout, I want to send/push the Editable object which contain the user input to the ViewModel to apply some logic.
I managed…

user10776303
- 241
- 6
- 16
0
votes
1 answer
Where I should place initialization/binding logic when using MvxTableViewCell, created from Nib?
I created custom MvxTableViewCell, placed all design layouts in .xib file:
public partial class FxTransactionCell: MvxTableViewCell
{
public static readonly NSString Key = new NSString("FxTransactionCell");
public static readonly UINib Nib =…

zzheads
- 1,368
- 5
- 28
- 57
0
votes
1 answer
MvvmCross: TextView binding inside ViewPager
Can anyone please suggest binding for TextView inside ViewPager's fragment.
Please have look into below code for investigation.
ViewPager's fragment resource file (about_fragment.axml)
Here i'm trying to bind AboutDetail with ViewModel.

Chanki
- 165
- 13
0
votes
1 answer
MVXRecyclerView ItemClick is not working
MVXRecyclerView ItemClick is not working.
Please have look into below detail and suggest if list having button which require click.
I tried all possible ways but I'm unable to catch the issue.
Template

Chanki
- 165
- 13
0
votes
2 answers
Troubles with binding drawable icons in dropdown in MVVMCross Xamarin.Android
I need to add pictures to dropdown items.
In the dropdown I need to see the icon first and the text below. But for some reason, I can't see images, though I see the empty place instead.
My project is Xamarin.Android with MVVMCross. I'm missing…

NaSt
- 301
- 1
- 5
- 16
0
votes
0 answers
My iOS Mvvmcross app not able access and render a drop-down list of Recipients (AllRecipients) that I have in my database from the Core project
New to xamarin MvvmCross and struggling with some issues. Appreciate for any help.
My questions relates to:
I. My iOS app not being able access and render a drop-down list of
Recipients (AllRecipients) that I have in my database from the Core
…

Hakim
- 9
- 2
0
votes
1 answer
MvvmCross binding to Error property of the TextInputLayout
I'm trying to simplify data validation for one activity which has plenty of controls to be entered (about 10). Every edittext control has a unique validation error so I decided to do with supported by TextInputLayout widget validation. So my layout…

Mando
- 11,414
- 17
- 86
- 167
0
votes
1 answer
How to pass two parameters in xml for a converter in for a Tuple in xamarin android
For a single input in .cs file
public class QuesSeriesIndicatorValueConverter : MvxValueConverter
{
protected override int Convert(bool value, Type targetType, object parameter, CultureInfo culture)
{
if…

Devrath
- 42,072
- 54
- 195
- 297
0
votes
1 answer
MvxSpinner MvvmCross not binding when list changes
So I have the following situation.
I have an MvxSpinner

CiucaS
- 2,010
- 5
- 36
- 63
0
votes
1 answer
MvxGridView bind ItemClick and List is null in ViewModel Init
I have a problem...I have MvxGridView with Menu items and with ItemClick ShowMenuCommand
Like this:
private ICommand _showMenuCommand;
public ICommand ShowMenuCommand
{
get
{
_showMenuCommand =…

pnk
- 293
- 2
- 14
0
votes
0 answers
MvvmCross - Xamarin - Cannot create any MvxListView anymore
I'm facing a very strange behaviour with mvvmcross and xamarin. Since today i can't populate any MvxListView, MvxLinearLayout etc anymore.
Here is what i know :
All views of those types i created earlier (the last one working was created last…

yan yankelevich
- 885
- 11
- 25