Questions tagged [monotouch.dialog]

MonoTouch.Dialog is a MonoTouch framework for iOS for iOS developers to create dialog boxes and show table-based information without having to write dozens of delegates and controllers for the user interface.

MonoTouch.Dialog is a MonoTouch framework for iOS developers to create dialog boxes and show table-based information without having to write dozens of delegates and controllers for the user interface.

456 questions
2
votes
1 answer

Use Mvvmcross Binding with MonoTouch.Dialog (Lists and Commands)

1. Binding Lists I wonder how I could bind a ObservableCollection to a Radiogroup: new Section(){ new RootElement("Mandanten", new RadioGroup("mandanten", 2)) { new Section(){ new…
eMi
  • 5,540
  • 10
  • 60
  • 109
2
votes
1 answer

Monotouch.dialog EntryElement Changed Event not firing as expected

I am trying to utilise the CHANGED event of an EntryElement in Monotouch.Dialog so that I can get the length of any input string, and act on it, once it reaches a certain length, for example RootElement root = new RootElement (null); Section…
2
votes
2 answers

MonoTouch.Dialog Removing Lines at end of table

In the below screenshot I have a table but only a few elements. How do I tell MonoTouch.Dialog to not draw the extra lines at the bottom of the table when there aren't enough StyledStringElements to fill the screen?
Ian Vink
  • 66,960
  • 104
  • 341
  • 555
2
votes
1 answer

Rounded corner when change LoadMoreElement background color in Monotouch Dialog

I'm trying using this code : LoadMoreElement elm = new LoadMoreElement (normalCaption, loadingCaption, tapped); elm.BackgroundColor = UIColor.Blue; // new UIColor (27,109,192,1); elm.TextColor = UIColor.White; This results in a complete blue…
rolivares
  • 137
  • 1
  • 3
  • 12
2
votes
1 answer

MonoTouch.Dialog StyledStringElement Hidden

Is there a way to hide and show a StyledStringElement in MonoTouch.Dialog? I have only found Dispose(), but nothing happened.
user1868675
  • 127
  • 1
  • 5
2
votes
1 answer

Figuring out how to get rid of border around cell in UITableView cell

I recently had help getting to the properties available on a cell by overriding the GetCell method using monotouch.dialog. My problem now is that I can't see to get rid of the default border around cells. I was able to figure out how to draw my own…
Shogan
  • 1,154
  • 1
  • 10
  • 24
2
votes
1 answer

Monotouch.Dialog Generate from db and retain values

I'm have a settings view where I'm using MT.D to build out my UI. I just got it to read elements from a database to populate the elements in a section. What I don't know how to do is access each elements properties or values. I want to style the…
BRogers
  • 3,534
  • 4
  • 23
  • 32
2
votes
1 answer

Can I customise the Search bar with Monotouch.dialog

I have a custom monotouch dialogviewcontroller created, and I have set: EnableSearch = true however, I am using a background colour of dark grey and I have a black colour UINavigationBar too. So the default search bar that appears in my…
Shogan
  • 1,154
  • 1
  • 10
  • 24
2
votes
2 answers

Monotouch dialog multiline element height not growing

I have a simple custom multiline element whose linebreak mode i've set to wordwrap, and lines property i set to 7. My text seems to wrap just fine, but the cell height stays the same, so the text extends the bounds of the cell. I've tried…
DeleO
  • 108
  • 2
  • 8
2
votes
1 answer

Monotouch.Dialog: Automatic searching disabled when ScopeBar enabled

When I enable the ScopeBar and wire up the SelectedScopeButtonIndexChanged on a Monotouch.Dialog control, the automatic search feature that is enabled when you set EnabledSearch=true is disabled. Here's how it becomes disabled: UISearchBar sb =…
Ian Vink
  • 66,960
  • 104
  • 341
  • 555
2
votes
1 answer

Monotouch: Force UITableView to recalculate height of each cell without reloading data

I have a custom cell created using OwnerDrawnElement with autoresizeable UITextView in it. When text changed there should be appropriate layout redraw and cell height recalculation. The problem is how to preserve keyboard opened. There is a method…
drunkcamel
  • 915
  • 3
  • 12
  • 25
2
votes
1 answer

Monotouch: How to add/remove recipients balloons/bubbles for new message

I want to create custom email compose dialog and I need to implement "Add contact" func. like in standard iOS apps. I haven't found any nifty controls so it seams it should be implemented manually. So I wonder how to draw such an elements…
drunkcamel
  • 915
  • 3
  • 12
  • 25
2
votes
1 answer

Monotouch Hide Keyboard when Navbar is tapped using MonoTouch.Dialog

I am currently using this code to hide the keyboard in a monotouch iOS application when something outside the input elements are tapped. var tap = new UITapGestureRecognizer (); tap.AddTarget (() =>{ dvc.View.EndEditing (true); }); …
servarevitas3
  • 483
  • 1
  • 6
  • 23
2
votes
3 answers

Why are some of these Monotouch.Dialog cells appearing empty?

I have what I believe is a pretty straightforward Monotouch.Dialog class. public partial class EditAccountDialog : DialogViewController { Section emailSection; Section passwordSection; Section profileSection; Section…
pdusen
  • 520
  • 2
  • 7
  • 18
2
votes
2 answers

How to use navigation bar while using splitview and touch.dialog

The problem I have with the SplitView is the navigation bar... it's missing. I use a tablet presenter, like in the MVVMCross examples. When trying to add a navigation bar item, like shown in the CustomerManagement example for instance, it doesn't…