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.
2
votes
1answer
24 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
14 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
38 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
22 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
38 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
24 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
58 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
55 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
34 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
62 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
33 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
41 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 ...
-1
votes
0answers
29 views
How to track monotouch inactivity timeout [closed]
i am developing monotouch application. here i need to find the user inactivity time, i mean find the time user keep idle in the application without touching the screen..
Plese send me the sample code ...
0
votes
1answer
26 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
99 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
41 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
64 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
43 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
67 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
55 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
62 views
MonoTouch.Dialog StyledStringElement
Hy guys!
How can I set / access the DetailTextLabel of a StyledStringElement in MonoTouch.Dialog?
2
votes
1answer
83 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
36 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
29 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
169 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
38 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
101 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
67 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
85 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
24 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
81 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
29 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
70 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
135 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
192 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
101 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
83 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
32 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
81 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
80 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
128 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
vote
0answers
45 views
MonoTouch App doesn´t respond to touches after a while
I am working on a Calendar App pretty similar to the iOS integrated Calendar, but with other (specific) functionality.
I have many of those Settings Screens build up in Monotouch.Dialog, but not ...
0
votes
1answer
168 views
Unrecognized selector sent to instance in UITableViewCell AccessoryView
I'm trying to add a plus button to my UITableViewCell.
I subclass a StringElement and add an UIImageView as my Cell AccessoryView.
To make it touchable, I add a UITapGestureRecognizer but everytime ...
2
votes
1answer
53 views
Monotouch.Dialog Generate from db and retain values
I'm have a settings view where I'm using MT.D to build out my UI. I just got it to read elements from a database to populate the elements in a section.
What I don't know how to do is access each ...
1
vote
1answer
72 views
Can I customise the Search bar with Monotouch.dialog
I have a custom monotouch dialogviewcontroller created, and I have set:
EnableSearch = true
however, I am using a background colour of dark grey and I have a black colour UINavigationBar too. So ...
0
votes
1answer
140 views
Single-Select Checkbox group in Monotouch.Dialog
I am using this code to put a Checkbox group in a MonoTouch table and the update the values based on items checked:
var applescheck = new CheckboxElement ("Apples", false, "purchase");
var ...
0
votes
2answers
59 views
StringElement-derived control is not updating caption
I have a control that is derived from MT.D StringElement. The element can be created with a blank/empty Caption which is subsequently updated when the user adds text to a different control. Caption is ...
0
votes
3answers
61 views
What causes the “brown-background” issue when using MonoTouch and MonoTouch.Dialog?
We use MonoTouch for our application and we sometime experience (after some usage) that the view controller background suddenly turns brown. This happens when we pop another view controller from the ...
0
votes
0answers
52 views
DialogViewController and JSON
I have been driving myself crazy trying to learn how to use MT.D. Here is my scenario, I have a DialogViewController that I am pushing to a Navigation Controller.
...
0
votes
1answer
55 views
Monotouch.Dialog: Background for RadoElement block
(from MT examples)
I have a simple dialog which shows a list of desserts. When the desserts is taped the list appears. However, the style of the list of deserts is not the same as the main view ...

