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
3
votes
3 answers

Monotouch.Dialog: IElementSizing not being used

I have a Custom element class that only resizes the rows when I rotate the device. On initial display the rows are not resized. public class MultiImageElement : Element, IElementSizing Which implements the IElementSizing interface: #region…
Ian Vink
  • 66,960
  • 104
  • 341
  • 555
3
votes
1 answer

Monotouch.Dialog: Is there a simple way to make the Search Bar stay at the top of a UITableView when scrolling?

I'm using Monotouch.Dialog and the search bar seems to be integrated into the tableview/root element. Therefore it scrolls with the table view, so you must be at the top of the tableview to see the search bar. I'd like to keep using the…
Chuck Pinkert
  • 1,325
  • 1
  • 14
  • 24
3
votes
2 answers

MonoTouch.Dialog: Getting StringElement to have an AccessoryView

When a StringElement has A Tapped Action associated with it, how do I get it to display a UITableViewCellAccessory.DisclosureIndicator ? I can subclass it and roll my own, but I'd rather stick to the MonoTouch.Dialog framework. StringElement s = new…
Ian Vink
  • 66,960
  • 104
  • 341
  • 555
3
votes
1 answer

Setting bounds for a UIViewElement - Monotouch.Dialog

I'm trying to Display a UITextView in an UIViewElement. I would like the Element to size itself to the text. I am expecting to be able to do something like this... UITextView textView = new UITextView(); textView.Font =…
HatAndBeard
  • 1,416
  • 3
  • 18
  • 31
3
votes
2 answers

MonoTouch.Dialog : Advanced Editing

I'm trying to put together a detail view that is editable, similar to the iPhone default contacts app. I have a TableView of contacts and I activate an editable detail view when a cell is selected: public override void Selected (DialogViewController…
Billy Coover
  • 3,827
  • 5
  • 36
  • 50
3
votes
0 answers

Monotouch dialog- Multiple textfield in single element?

I am using Monotouch dialog with Mvvmcross. My requirement is to have multiple textfield in single element/cell. But in Entryelement we have only one value property which has by default two way binding. Rest of the property are with only one way…
Iducool
  • 3,543
  • 2
  • 24
  • 45
3
votes
3 answers

Monotouch Dialog Cannot get out of ILIST because Backbutton is Missing,

class Fahrzeug { [Entry ("Typ")] public string typ; [Entry ("Name")] public string name; [RadioSelection("ListOfString")] public int selected=0; public IList ListOfString; } …
Ploetzeneder
  • 1,281
  • 4
  • 20
  • 34
3
votes
3 answers

Is there a MonoTouch.Dialog port to Silverlight/wp7?

I am thinking about how an application can be written to work on both Windows 7 Phone and IPhone, one option is MonoTouch.Dialog for most of the UI on the IPhone and then create a layer that will let the some code work on WP7. Has anyone looked at…
Ian Ringrose
  • 51,220
  • 55
  • 213
  • 317
3
votes
1 answer

Hiding Elements in a Monotouch Dialog Section - Height does not change

I have a Monotouch Dialog Section with 5 Elements. When a condition is True I need to hide Elements 1-4 and show Element 5. When it is false I need to show Elements 1-4 and hide Element 5. The Elements disappear but the Section height does not…
Pat Long - Munkii Yebee
  • 3,592
  • 2
  • 34
  • 68
3
votes
2 answers

Overridden DialogViewController methods are never called?

This is my first question, I apologize if it is not the best. I am brand new to using Xamarin and iOS development. I have a custom implementation of DialogViewController so that I can override certain methods on UITableViewController. For the sake…
mindsurfer_BS
  • 103
  • 2
  • 9
3
votes
2 answers

Monotouch.Dialog iOS 7 automatic look and feel upgrade?

I'm developing my first iOS app in Xamarin.iOS, using MonoTouch.Dialog to create the graphical user interface via code with only minor (color only) customizations. My question is: Will the user interface upgrade to the new iOS 7 look & feel for…
Meryovi
  • 6,121
  • 5
  • 42
  • 65
3
votes
1 answer

Monotouch Dialog kills my UINavigationController back button

I'm sure I'm doing something dumb here, but I can't see it. When I push a DialogViewController onto the navigation stack, my Back button disappears. My push code is this: //launch an inspection VC var vc = new FacilityInspectionListViewController…
Joshua Frank
  • 13,120
  • 11
  • 46
  • 95
3
votes
1 answer

Adding a Monotouch.Dialog to a standard view

I have a standard view with a bar at the top for navigation. I also have a Monotouch.Dialog set in it's own source file. I've looked around for a solution to this, but can't seem to find a definitive answer on how to add a MTD to a normal view. Is…
Nodoid
  • 1,449
  • 3
  • 24
  • 42
3
votes
2 answers

Monotouch Replacing the RootViewController

Using MonoTouch I add a LogonViewController to the Window and show it on FinishedLaunching: window = new UIWindow(UIScreen.MainScreen.Bounds); window.RootViewController = new LogonViewController(); …
Ian Vink
  • 66,960
  • 104
  • 341
  • 555
3
votes
0 answers

Custom border in MonoTouch Dialog Section

What is the best way to customize the border in a Section? Nic Wise wrote a great article on customizing MT.D where he changes the border to a nice not-so-round version, but this involves modifying the MT.D code. Is there a way to customize this…
jonjarn
  • 56
  • 2