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.

learn more… | top users | synonyms (1)

0
votes
1answer
35 views

Headers dissapear when after overriding TableView.Scrolled

I have been in a pickle with this problem for a while now. When I try to manually handle how my table behaves while scrolling, everything works fine, except all my section headers dissapear. What I ...
0
votes
0answers
18 views

Background color of montouch Root Elements is lost within child root elements

I have a MTD setup. My root element basically has 3 child root elements nested in it. The navigation works fine however I can't seem to style the child root elements. They always are set to show the ...
0
votes
1answer
20 views

Update the BackButton text within a dialog view controller

I have a monotouch dialog view controller. I have a number of nested root elements public RootElement LoginSection() { //var rootSection = new Section(""); var root = new ...
-2
votes
0answers
9 views

Is it Possible to Specify the value of the Key defined with AUTOINCREMENT When Insert a New Row in SQLIte?

for examply, I define a table as below: CREATE TABLE Family (Id INTEGER PRIMARY KEY AUTOINCREMENT, Name nText NOT NULL) Then, does belwo sql work? (assume there is no row with the id of 3) INSERT ...
0
votes
1answer
29 views

Setting gradient to StyledStringElement

I'm trying to set a gradient using CAGradientLayer to a cell in StyledStringElement. This is the code I have so far: public class DerreckStyledStringElement : StyledStringElement { public ...
0
votes
1answer
56 views

Monotouch using custom cell accessory - how to tell what row selected

If you use a custom cell accessory instead of the DetailDisclosureButton you can no long use the AccessoryButtonTapped event...how do I use a custom cell accessory (i.e. a UIButton set as the ...
3
votes
1answer
24 views

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 ...
0
votes
0answers
4 views

Internationalize dialogview strings

I've been looking through the monotouch documentation to see if there is a way to internationalize the strings that appear on screen in a dialogview and don't seem to be able to find anything. If I ...
1
vote
1answer
29 views

Monotouch.Dialog stretching UIView in Section

I have an image, a logo, that appears at the top of my Monotouch.Dialog using this code: var logo = new UIImageView(logonLogoPNG) { AutoresizingMask = ...
0
votes
0answers
16 views

How can I display the caption of an EntryElement on multiple lines?

I have an EntryElement with a very long caption, and I need to display it on multiple lines. Until now I extended EntryElement and added my own UITextView to that element, but the height of the whole ...
2
votes
1answer
32 views

Rounded corner when change LoadMoreElement background color in Monotouch Dialog

I'm trying using this code : LoadMoreElement elm = new LoadMoreElement (normalCaption, loadingCaption, tapped); elm.BackgroundColor = UIColor.Blue; // new UIColor (27,109,192,1); elm.TextColor = ...
0
votes
1answer
17 views

Update width after new element added

I have a simple section with a short caption = "A" in the first EntryElement. So the first element caption width is very small. Then, I have to add new elements programmatically. The new elements ...
0
votes
1answer
62 views

MonoTouch.Dialog Overriding GetCell?

In MT.Dialog the Source class has this: public override UITableViewCell GetCell (UITableView tableView, MonoTouch.Foundation.NSIndexPath indexPath) { ...... } In my class: public class ...
0
votes
1answer
30 views

Detecting when keyboard of a entryelement returns monotouch.dialog

I'm using this code for detect returning from a keyboard of a entry element in the monotouch.dialog. RltEntryElement createServerUrlEntry(){ try { ServerNameEntryElement = ...
0
votes
1answer
52 views

Changing EntryElement keyboard returnkeytype monotouch.dialog

I'm using this code for changing the keyboard returnkeytype of the entry element in monotouch.dialog but it yet show 'return' on the keyboard. protected override MonoTouch.UIKit.UITextField ...
0
votes
1answer
31 views

Element for picking an integer in MonoTouch.Dialog

I have an application using the MonoTouch.Dialog Reflection API, and I have a view model with a couple of int properties. Unfortunately, it doesn't seem like MonoTouch.Dialog have any elements ...
0
votes
1answer
95 views

MonoTouch DialogViewController - why must it be in the first place of a UINavigationController?

I want to use a DialogViewController inside of a UITabViewController. Problem: Nested elements don't show a navigation bar, and so it is not possible to go back. When I push my class (inherited from ...
1
vote
3answers
76 views

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 ...
1
vote
1answer
57 views

UIWindow and Statusbar

I have a DialogViewController that I load up for the main UI (login) window = new UIWindow(UIScreen.MainScreen.Bounds); var logonView = new LogonViewController(); ...
0
votes
3answers
66 views

Using 'if' statements within Linq statement

So, we are trying to display information using a Linq statement yet the issue we are having is we don't want some elements to be created if a variable is "" - Currently we are unable to do this as we ...
1
vote
1answer
45 views

MonoTouch.Dialog StyledStringElement Hidden

Is there a way to hide and show a StyledStringElement in MonoTouch.Dialog? I have only found Dispose(), but nothing happened.
1
vote
1answer
55 views

Dynamic list element in MvxDialogViewController

We have a dialog inheriting MvxDialogViewController containing two Sections - TheRadios and TheList. In response to the user changing the radio within TheRadios, we repopulate TheList (in the view ...
0
votes
1answer
30 views

Montouch.dialog access elements individually causes error

I'm wanting to style the cells that I get back from a JSON response. I'm able to loop through the elements but as soon as I try to style them I get the error below. What am I missing? !-- error ...
0
votes
1answer
129 views

How can I update an existing DialogViewController RadioElement group after navigating away using MonoTouch?

I am looking for ideas as to how I should implement this: I have an app with a tab bar controller, and off of this come navigation controllers for each "Screen" (which is accessed by its own tab on ...
1
vote
1answer
51 views

Styling headers on a DialogViewController

I'm wanting to style the headers on my DialogViewController. The content of the controller is loaded from a JSON response. How can I style the header elements with background colours etc? string ...
0
votes
1answer
91 views

Adding monotouch.Dialog as part of uiviewcontroller in monotouch iphone

I want to create a page like this: My idea for bottom place is using monotouhc.Dialog by viewElement. But the question is this: Is using monotouch for this the best way? or using tableview with ...
0
votes
2answers
58 views

MonoTouch.Dialog UIProgressView

How can I implement an UIProgressView with MonoTouch.Dialog? Is there a way to do it without creating a custom element?
0
votes
1answer
100 views

MonoTouch - changing DetailTextLabel text color is causing a NullReferenceException error

I am trying to finish up a custom cell for my tables using monotouch.dialog, and have nearly everything sorted out, except for my cell's detail text label colour. I am overriding GetCell to ...
0
votes
1answer
70 views

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?
0
votes
1answer
89 views

MonoTouch.Dialog StyledStringElement

Hy guys! How can I set / access the DetailTextLabel of a StyledStringElement in MonoTouch.Dialog?
2
votes
1answer
107 views

Figuring out how to get rid of border around cell in UITableView cell

I recently had help getting to the properties available on a cell by overriding the GetCell method using monotouch.dialog. My problem now is that I can't see to get rid of the default border around ...
0
votes
1answer
40 views

Is it possible in MonoTouch to determine if the user clicked on an image in a BadgeElement?

I have amended the TODO list app to use a badge element instead of the boolean element as follows: protected void PopulateTable() { tasks = TaskManager.GetTasks().ToList (); ...
0
votes
0answers
39 views

MonoTouch.Dialog in PopOver

hy guys, I have a popover which is called by a styledstringelement. Inside the popover are other elements, which are dynamically loaded. So perhaps there are at on time 4 elements and at an other time ...
0
votes
1answer
275 views

How can I create a custom styled EntryElement with MonoTouch.dialog?

I am trying to create a custom entry element using monotouch.dialog. I understand how to subclass a StringElement to style my own string elements - see example below: public class ...
0
votes
0answers
42 views

The RootElement's Group is null or is not a RadioGroup (System.Exception) - loading from JSON response

I'm receiving an error when I try to create my radiogroup section with monotouch dialog. I'm loading the elements from a JSON response and I'm receiving the error "The RootElement's Group is null or ...
0
votes
1answer
134 views

How to display HTML string with MonoTouch Dialog?

I need a way to display a string with HTML tags within MonoTouch.Dialog element. If I understand right the build in HTMLElement is only for load external data to display. So I asked google for and ...
1
vote
1answer
88 views

Set view backgroundcolor with MonoTouch.Dialog

since a couple of days I'm trying to set the background of a MonoTouch.Dialog to blue ... I collect a lot of information while searching like this one How to set the background to transparent on a ...
0
votes
2answers
104 views

Positioning of Section HeaderView elements in MonoTouch Dialog

I am trying to customize the position of text in Section element headers in MonoTouch Dialog. I read up on how you are supposed to create you own UILabel to create styled text and then assign that to ...
0
votes
0answers
25 views

radioelemnt with subtitle monotouch.dialog

I wanna to create a radioelement with subtitle that describe the caption. I write the code by inheriting from RadioElement and using some code of this class and StringElement class: public class ...
0
votes
1answer
102 views

Saving Monotouch.Dialog element values to a file

I'm using MonoTouch for developing my iPhone application. I want to use Monotouch. Dialog for showing some data to a client and let them change data and then save them to the file again. My code is ...
1
vote
1answer
33 views

MonoTouch.Dialog LoadMoreElement blocking on delegate

I am trying to use a LoadMoreElement object to display an activity indicator when the cell is clicked. The below code works, however the NavigationController object is long running and the activity ...
0
votes
1answer
79 views

MonoDroid AlertDialg with ListView

I am fairly new to MonoDroid/Android Development and I was wondering if anyone can point me to a sample or explain how I would go about creating an AlertDialog with a custom ListView? I need to ...
1
vote
1answer
151 views

Is it possible to use Monotouch.Dialog to create a custom list like this?

I just discovered Xamarin Studio and Monotouch.Dialog, and I've been doing a lot of research on custom table cells. So far I've been pretty successful experimenting with some of the features, but I'm ...
0
votes
1answer
211 views

Monotouch.Dialog: crash with EnableSearch and custom RootElement

i use Monotouch.Dialog (Xamarin.iOS Version: 6.2.0.65) to create a RadioGroup with RadioElements. I only want the 'search' functionality in the second screen (where the user selects from the long ...
0
votes
0answers
106 views

Unable to update the text of a RootElement when used with a modal RadioGroup Section with MonoTouch Dialog

I am creating an iPad app using MonoTouch 2.10.11 and I want to MonoTouch.Dialog to create some of the editable fields on a form. One of the fields will use a RadioGroup to allow the user to select ...
0
votes
1answer
97 views

Profile - Mono - Other Root inverse reference

When disposing a Monotouch.Dialog instance: Custom UIBubbleMapElement elements are disposed by the GC; For each disposed element, a custom UIBubbleMapCell also gets disposed by the GC; But for all ...
0
votes
1answer
34 views

Open own screens from RootElement

I want to use Monotouch.Dialog for the first screen (after login in) that shows all the 'things' a user can do (just a simple grouped table style). I know i can achieve this very easily with Dialog, ...
0
votes
1answer
87 views

Record sound from microphone in Monotouch.Dialog

Xamarin example found here : http://docs.xamarin.com/samples/Sound works, but the GUI is not Monotouch.Dialog, and it looks poor together with the rest of my MD APP. How to add a Monotouch.Dialog ...
0
votes
1answer
87 views

Monotouch OwnerDrawnElement Click Event

I'm using the OwnerDrawnElement example from the Monotouch.Dialog example project (modifying colors but that's about it). I would like to know how to register click events for each row working. I've ...
0
votes
1answer
159 views

How to add a Monotouch.Dialog.Element to UIView.AddSubview

In simple terms, I want to add an Monotouch.Dialog.Element to an UIView using UIView.AddSubview. What do I need to change/create to make this possible?

1 2 3 4 5 8