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

How can I add new Monotouch dialog views dynamically?

When creating views in Monotouch Dialog, one possible way is to create .cs files which hold the view information like so: [Caption("Create user")] [Alignment(UITextAlignment.Center)] public RegistrationSchema CreateAccount; But say I needed to have…
Darkwood
  • 111
  • 1
  • 7
2
votes
1 answer

Showing a number of RootElement(s) depending on the value of RadioElement with MonoTouch.Dialog

I have been searching high and low for information on how to do this: I need to create a number of RootElements depending on the value of a RadioGroup, I am not quite sure how or where to write it. Ideally it would create a new RootElement…
mackwerk
  • 1,689
  • 4
  • 21
  • 44
2
votes
2 answers

Monotouch.Dialog IOS 6 Split view Rotation issue

BUMP .. still havent figured this out, the thing rotates, but out of view. so weird. can i provide better information to get help? STILL HAVING THIS ISSUE! its really bad i cant fix this :( help PLEASE BUMP .. please im dieing here! someone…
Roy Harel
  • 23
  • 1
  • 6
2
votes
1 answer

monotouch collection view iOS 5

I know in iOS6 there is the new collection view which would allow me to create a sort of table view with multiple columns or effectively a grid view. I am looking to achieve the same effect but on iOS5 and some guidance would be appreciated. So I…
JonBull2013
  • 315
  • 1
  • 3
  • 9
2
votes
1 answer

Changing a ViewController's transition direction?

Possible Duplicate: How to change the Push and Pop animations in a navigation based app Using MonoTouch and MonoTouch.Dialog, I have a DialogViewController that I'm pushing onto a UINavigationController and when I do so it makes the current…
Smoore
  • 732
  • 2
  • 10
  • 27
2
votes
1 answer

AllowsMultipleSelectionDuringEditing not supported by Monotouch.Dialog?

i wan't to use UITableView.AllowsMultipleSelectionDuringEditing with Monotouch.Dialog. If the property is set to true, the click on the table (with edit mode enabled) seems to be ignored (no selection happens). If there is an Element.Tapped, it will…
unreal
  • 1,259
  • 12
  • 17
2
votes
1 answer

Is there a Monotouch Color Picker control?

I see a whole bunch of iOS open source common controls to pick a color, but I've not found anything that I can use for Monotouch in C#. I've looked in Monotouch.Dialog but can't see it. Here's some iOS one's I've…
user1690146
  • 383
  • 3
  • 14
2
votes
1 answer

Does MonoTouch.Dialog support an (alphabetic) index?

With UITableView one can add a quick navigation (like in contacts on iOS) on the right side. Does MT.Dialog also support this? How?
Krumelur
  • 32,180
  • 27
  • 124
  • 263
2
votes
1 answer

How do I make a UIView clickable in MonoTouch?

I'm currently trying to create a simple UIView which contains some labels and images. How can I set the UIView as clickable? I have already tried to override the onTouchEnded method, but when I added the labels and the images as sub-views to the…
dimka87il
  • 95
  • 6
2
votes
1 answer

MonoTouch.Dialog: When no ImageUrl, default image on StyledStringElement

I am setting the ImageUrl of a StyledStringElement, but do not know if the url exists. I'd like to put in an placeholder image that is used until the image is successfully downloaded: var item = new StyledStringElement(n.Title); …
Ian Vink
  • 66,960
  • 104
  • 341
  • 555
2
votes
2 answers

MvvmCross: binding lists in MonoTouch

I am refactoring an app using MvvmCross and I am in the midst of getting a Settings View to show on the three platforms: WP7, Android and iPhone. I have created a SettingsViewModel which holds two lists. One with Update Frequencies to poll a server…
Cheesebaron
  • 24,131
  • 15
  • 66
  • 118
2
votes
1 answer

drawing grids in a UITableViewCell using Monotouch

Hi I am just a week old with Monotouch, the task that I have in hand is to display a table on an ipad with multiple rows and multiple columns i.e. a grid like structure with many cells and each cell containing some data which can later be edited…
Ajit
  • 964
  • 10
  • 17
2
votes
1 answer

MonoTouch.Dialog: Add(System.Collections.Generic.IEnumerable) is obsolete - do I have to change something?

The piece of code below gives me the warning: Warning CS0618: MonoTouch.Dialog.Section.Add(System.Collections.Generic.IEnumerable)' is obsolete:Please use AddAll since this version will not work in future versions of…
Krumelur
  • 32,180
  • 27
  • 124
  • 263
2
votes
1 answer

How to show a UIPickerView using Monotouch Dialog?

I have a requirement that the user needs to select a category followed by a subcategory. Normally I would use two UIPickerViews to perform the selection. How would you do this with Monotouch Dialog? I cannot find any examples or built in elements…
Dylan
  • 1,919
  • 3
  • 27
  • 51
2
votes
1 answer

Monotouch random crash in native code using UITableView

Please help me, what am I doing wrong. I use BubbleCell and BubbleElement from the examples. For unknown reasons, the application sometimes crashes in native code. I try out a little bit to correct the situation if I do not use DequeueReusableCell,…