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
5
votes
2 answers

Is Monotouch.Dialog a suitable replacement for all UITableviews?

This question is mainly targeted towards Miguel as the creator of MT.Dialog but I would like to hear opinions of others as well. I'm currently refactoring a project that has many table views. I'm wondering if I should replace All of them with…
Krumelur
  • 32,180
  • 27
  • 124
  • 263
5
votes
1 answer

Getting width of Monotouch.Dialog UIViewElement?

I'm trying to make an UIView (for a UIViewElement), but how do I get the bounds (at least width) of this UIViewElement? Thanks Mojo
MojoDK
  • 4,410
  • 10
  • 42
  • 80
5
votes
1 answer

Dismissing popup when RadioGroup Item Selected

Using the awesome MonoTouch.dialog in some of my projects now and have a question. I have a RadioGroup that I use to allow the user to select his home state, States is a string array. public static RootElement CreateStates () { …
russellj
  • 49
  • 2
5
votes
3 answers

Setting MonoTouch.Dialog UITableView position?

Is there a way to set the position of a MonoTouch.Dialog DialogViewController? I have subclassed DialogViewController and added a UIToolbar at the top and now I want to shift the table view down the corresponding pixels. public class…
Rob Gibbens
  • 1,122
  • 1
  • 8
  • 24
4
votes
2 answers

Adding a background image to monotouch.dialog view

I am trying to build an app using MonoTouch and MonoTouch.Dialog. I really like the way dropbox have designed their welcome view. When the app opens up for the 1st time you are presented with a screen like Its similar to what I need to do. I first…
Diver Dan
  • 9,953
  • 22
  • 95
  • 166
4
votes
1 answer

Monotouch: MT.Dialog scroll to bottom?

I have a MT.Dialog where i add some log informations. Rows can be of different heights. How can I make sure, that my MT.Dialog always scroll to the bottom, so that the entire last row is always visible? BUT .... if user scrolls up the list, then it…
MojoDK
  • 4,410
  • 10
  • 42
  • 80
4
votes
2 answers

Have a dedicated UIViewController for each RootElement in MonoTouch.Dialog?

It's easy to create a multi-level menu structure using nested RootElements in MonoTouch.Dialog but how would you go about having a specific UIViewController manage each root instead? The reason I want each RootElement to have it's own…
Brian David Berman
  • 7,514
  • 26
  • 77
  • 144
4
votes
2 answers

How can I pass data into MonoTouch.Dialog's delegates?

Given the following code, how can I pass data from "First Name", "Last Name", etc. into my method BookASession.SendMessage();? RootElement CreateBookASessionRoot() { return new RootElement("Book a Session") { new Section() { …
Brian David Berman
  • 7,514
  • 26
  • 77
  • 144
4
votes
4 answers

MonoTouch.Dialog: How to set limit of number of characters for EntryElement

I cannot find how to cap the number of characters on EntryElement
iLemming
  • 34,477
  • 60
  • 195
  • 309
4
votes
2 answers

Monotouch Dialog. Section at any defined position on the screen

Consider something like this: new RootElement ("Root"){ new Section ("Section A") { new EntryElement("Element in A") } new Section…
iLemming
  • 34,477
  • 60
  • 195
  • 309
4
votes
1 answer

Monotouch.Dialog - Setting Back Button

I use the MonoTouch.Dialog DialogViewController to create a nice view. private RootElement _createRoot(){ return new RootElement ("Buy a Property Report"){ new Section (""){ new StringElement ("View Sample", ()=>{…
Ian Vink
  • 66,960
  • 104
  • 341
  • 555
4
votes
2 answers

Setting a custom font for Monotouch-dialog elements

Is there a way to set the fonts when a Monotouch Dialog class has been instansiated? [Section("This is the header")] This will render with the default blue text with drop shadow, but I can't find where that font is being set. Is there a way to…
peirix
  • 36,512
  • 23
  • 96
  • 126
4
votes
3 answers

Xamarin.Forms Listview with 2 line label?

I'm converting a MonoTouch.Dialog app to Xamarin.Forms. I have a Cell in a ListView and that has a "Detail" line that should be 2 lines long, and should truncate the tail after that. var lblDetail = new Label { …
Ian Vink
  • 66,960
  • 104
  • 341
  • 555
4
votes
1 answer

How to create a custom header view for a table view section using outlets and IB

I would like to make a custom header view for a table view section in Xamarin.IOS with interface builder. However, I dont want this view to have a static content, instead I would like to create outlets, so I can modify the element's value contained…
Daniel
  • 2,484
  • 4
  • 27
  • 35
4
votes
1 answer

"Failed to create target binding for to" in MvvmCross .dialog

So I'm playing around with MvvmCross and Monotouch.Dialog in iOS and I am experiencing a binding issue when I do something that is pretty trivial - and in fact done almost verbatim in one of Stuart's n+1 videos. Given the following…
Frank Caico
  • 363
  • 2
  • 8
1
2
3
30 31