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

monotouch DialogViewController change order of elements

I am currently using the advanced editing tableview as outlined in Monotouch.Dialog that allows a user to delete as well as edit the label of table elements. Is there a way to enrich the tableview to achieve something similar to the screenshot, i.e.…
kos
  • 269
  • 3
  • 12
2
votes
1 answer

Changing TabBarController & NavigationController when using MonoTouch.Dialog

I am trying to change the the colour of a navigation bar controller and also a tab bar controller I am using the monotouch.dialog to build my application and have the following code public partial class AppDelegate : UIApplicationDelegate { …
Diver Dan
  • 9,953
  • 22
  • 95
  • 166
2
votes
1 answer

Using a tabbar controller with monotouch.dialog

I am trying to basically the same as poupou has shown on this previous SO post Tab Bar at the Bottom with MonoTouch.Dialog? My question is what template do I use to get started with this? I have tried each of the templates and none of the inherit…
Diver Dan
  • 9,953
  • 22
  • 95
  • 166
2
votes
1 answer

MonoTouch.Dialog: Upside down text in Section Header View

I am using MonoTouch.Dialog and creating a custom Section HeaderView. The Text renders upside down. What am I missing? public class SectionHeader: UIView { string title; public SectionHeader (string Title): base(new…
Ian Vink
  • 66,960
  • 104
  • 341
  • 555
2
votes
2 answers

monotouch DialogViewController RefreshRequested "System.ArgumentException: You should set the handler before the controller is shown"

I have some problems with getting the RefreshRequested event to work in one of my ViewControllers that implements the DialogViewController: public CustomViewController () : base (null, true) { RefreshRequested += delegate { ... …
kos
  • 269
  • 3
  • 12
2
votes
1 answer

UIPopoverController w/MonoTouch.Dialog results in unwanted resizing of popover

I am using MonoTouch.Dialog within a UIPopoverController to give our iPad users a series of settings to work with. In my app, I am using this CalendarView (http://escoz.com/blog/monotouch-calendar-control-is-here/) so the user can set dates for the…
2
votes
1 answer

MonoTouch.Dialog: Arabic Elements

Is there a way to have the text in a StyledStringElement be RTL so that Arabic and Farsi and Hebrew can render correctly? I create an StyledStringElement: var eBahai = new StyledStringElement ("بهائی"); When rendered it is left aligned, not right…
Ian Vink
  • 66,960
  • 104
  • 341
  • 555
2
votes
1 answer

Monotouch.dialog EntryElement not being updated after editing

I'm using this code to create the dialog: SettingsDialog settingDialog = new SettingsDialog (); RootElement dialog = settingDialog.CreateDialog (); DialogViewController dv = new DialogViewController (dialog, true); dv.ViewDissapearing +=…
ignacio
  • 245
  • 2
  • 12
2
votes
3 answers

MonoTouch.Dialog: Update of Text in an Element

Using MonoTouch.Dialog I add StyledStringElement elements. There is a background task that retrieves details that need to update the element.Value Is there a way to force the element to have it's text updated after the element.Value is updated? Ian
Ian Vink
  • 66,960
  • 104
  • 341
  • 555
2
votes
1 answer

MonoTouch.Dialog events and Sections

i need one more help. First question is: I understood that the sections, text, images, etc on a MonoTouch.Dialog will be created dynamically. But can i have buttons as well? If yes, how can i have the events of that button binded. Second question…
Abhishek Sharma
  • 359
  • 3
  • 16
2
votes
1 answer

MonoTouch.Dialog Autorotate

I can't seem to get the MonoTouch.Dialog to rotate. In my constructor, I set Autorotate = true. I also added all orientations in the supported orientations section of info.plist. I also overrode the ShouldAutorotateToInterfaceOrientation method…
user472292
  • 1,069
  • 2
  • 22
  • 37
2
votes
2 answers

Monotouch: Multitasking sample?

Are there any Monotouch multitasking sample I can download? I'm having problems in finding out best practice using multitasking with Monotouch. How I should handle when user presses home button, my application goes to the background, reopens my…
MojoDK
  • 4,410
  • 10
  • 42
  • 80
2
votes
1 answer

MonoTouch.Dialog - Responding to DetailDisclosureButton Taps

The Element class has a Tapped event which can be used to respond to taps of the element. However, when a element has its accessory set to DetailDisclosureButton, there is no way it seems to respond to the tap of the DetailDisclosureButton. Using…
Ian Vink
  • 66,960
  • 104
  • 341
  • 555
2
votes
1 answer

CheckboxElement with Subtitle using MonoTouch.Dialog

I am new to iPhone development. I am using Monotouch.Dialog for iPhone application. We can create a StyledStringElement that shows a Subtitle. I would like to show a CheckboxElement with subtitle. Is that possible? Thanks in advance.
Ravindra
  • 21
  • 1
2
votes
1 answer

UISplitViewController with MonoTouch.Dialog

Using a UISplitViewController with MonoTouch.Dialog (DialogViewController) I am having issues when using the "back" button of the navigation controller: https://i.stack.imgur.com/LeykT.png There is a big animation on the detail side vertically from…
t9mike
  • 1,546
  • 2
  • 19
  • 31