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
4
votes
1 answer

Can EntryElement be readonly on Monotouch.Dialog?

I'm using Monotouch.Dialog for creating a page in my iphone monotouch application. The question is that is there a way for making entry element read only in the table?
Husein Behboudi Rad
  • 5,434
  • 11
  • 57
  • 115
4
votes
1 answer

Monotouch Dialog: Styling Elements

I'm using Dialog and would like to style all my cells. I have a background image, and in the samples I can see how you can use a StyledStringElement to use that image. However, in real use some sections use other elements. For example the last…
Glinkot
  • 2,924
  • 10
  • 42
  • 67
4
votes
1 answer

Why no back button on DateElement picker?

This walkthrough for MT.D shows a back button on the UIDatePicker that appears when a DateElement is tapped. I'm in an iPad app, and using an MT.D DialogViewController as a subview in an overall UIView. When the date picker slides up I just get the…
DennisWelu
  • 788
  • 13
  • 26
4
votes
1 answer

LeftBarButtonItem and RightBarButtonItem not shown in MonoTouch.Dialog DialogViewController

MonoTouch is 5.2.12. iOS is v5.1.1 (Simulator) Seems like I'm missing an important piece of a puzzle here. I'm subclassing DialogViewController and set it as the only controller in my UINavigationController. In ViewWillAppear of the subclassed…
Krumelur
  • 32,180
  • 27
  • 124
  • 263
4
votes
0 answers

Section.HeaderView is resizing automatically in Monotouch Dialog

I'm using Monotouch.Dialog and I have subclassed the class Section to implement a custom HeaderView. The problem is that the header view is automatically resized, here's the code I'm using : public class MySection : Section { public…
Ronny
  • 105
  • 7
3
votes
1 answer

MonoTouch.Dialog: UISearchBar Color

In the March 31 release of MonoTouch.Dialog we aren't able to set the color of the UISearchBar anymore now as there is a new container object with hard coded colors. Is there a simpler way to change the color of the UISearchBar ? As a work around, I…
Ian Vink
  • 66,960
  • 104
  • 341
  • 555
3
votes
2 answers

MonoTouch.Dialog how to get data from dialog

I'm a beginner in MonoTouch and MonoTouch.Dialog. I am trying to use MT Dialog but I cannot understand how to get data in and out. Let's say I have Event class: class Event { bool type {get;set;} string name {get;set;} } And I want to edit it…
Yoorek
  • 1,003
  • 1
  • 12
  • 30
3
votes
2 answers

MonoTouch Dialog elements are not updating/repainting themselves

I have the following in a Section: _favElement = new StyledStringElement (string.Empty); _favElement.Alignment = UITextAlignment.Center; if (_room.IsFavourite) { _favElement.Image =…
Dylan
  • 1,919
  • 3
  • 27
  • 51
3
votes
0 answers

Search DialogViewController elements by clicking a button

I have a DialogViewController with EnableSearch = true. This works fine and filters the elements as soon I type something in the search box. What I would like to do was override this behavior and filter the elements only when the user pressed a…
Duarte Silva
  • 96
  • 1
  • 6
3
votes
2 answers

Has anyone used MT.D MultilineEntryElement?

I'm using the most recent one created by Alxandr (Feb/2012). I'm trying to add it to a section using the same technique as I would adding an EntryElement. The MultilineEntryElement adds to the section but the receiving cell will not expand past…
user1229084
  • 103
  • 1
  • 5
3
votes
1 answer

Can MonoTouch.Dialog be used with cascading data sources?

I have the equivalent of 3 cascading data sources or drop down lists. Since all data has to be created up front will this be a good candidate for MonoTouch.Dialog as one item's data depends on the preceding value? Example of what I'm trying to do: I…
valdetero
  • 4,624
  • 1
  • 31
  • 46
3
votes
1 answer

Reuse MonoTouch.Dialog Element

For an application that dynamically changes which inputs are shown on the screen I create all possible Elements and then create a Section which contains the ones I need given the current data. If the user interacts with a BooleanElement for example,…
Timm
  • 2,652
  • 2
  • 25
  • 34
3
votes
1 answer

Monotouch.Dialog: how to preselect an element from a RadioGroup?

I have an element in my Monotouch.Dialog Controller that discloses a list of possible selections (RadioGroup with many RadioElements). If one of the elements is picked, I pop one controller of my stack and the element that showed the subitems now…
Krumelur
  • 32,180
  • 27
  • 124
  • 263
3
votes
1 answer

Styling DateElement in Monotouch.Dialog

I'm using MonoTouch.Dialog on my "settings" section on my app. When I use the DateElement the background is all black, which doesn't really match the rest of the app. Is there a way I can style everything around the "date wheels"?
NicolajB
  • 275
  • 1
  • 6
  • 16
3
votes
2 answers

Weird blocks when adding Elements to MonoTouch Dialog RootElement after it is shown

In an app I am building I use the following pattern: If the user clicks on a hierarchical navigation element I open the next UIViewController immediately, and it takes care about loading its data itself and shows a loading spinner if it is going…
Timm
  • 2,652
  • 2
  • 25
  • 34
1 2
3
30 31