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

monotouch dialog multiple radiogroups on a single view (single rootelement)

I would like to use multiple radio groups within a single rootelelement with monotouch dialog. Each radiogroup would have its own section. I can't find a way to make this work because a single radiogroup can only be assigned to the rootelement
svn
  • 1,235
  • 10
  • 22
3
votes
2 answers

Getting errror when trying to run Monotouch-bindngs sample facebook

I am getting following error..... Error MT5202: Native linking failed. Please review the build log. (MT5202). Compiling to native code /Developer/MonoTouch/usr/bin/mtouch -sdkroot "/Applications/Xcode.app/Contents/Developer" -v --cache…
Dorababu Dodda
  • 452
  • 3
  • 23
3
votes
1 answer

How can I fix the scrolling with EntryElement in custom sized MonoTouch Dialog?

I have done something very similar to this question. I have created a MonoTouch DialogViewController which has a bunch of EntryElements in it used to capture information for a user registering. I then add this DialogViewController into another…
Dylan
  • 1,919
  • 3
  • 27
  • 51
3
votes
1 answer

Center cell contents in custom Monotouch.Dialog element

I'm coding a generig Monotouch.Dialog element to display an Image (that doesn't display the image picker), I'm reusing code from UIViewElement and ImageElement, added some parameters so it can be usable in a login screen for instance (showing…
Radius
  • 350
  • 3
  • 14
3
votes
1 answer

MonoTouch.Dialog Image only cell

I'am working on a app where the user can put in some data and then take a image with the camera or from the device. The problem i'am having is that i cant seem to get a cell or element to only display a image. Width of the image would be the width…
Andreas
  • 73
  • 7
3
votes
1 answer

MonoTouch Dialog - OnTap Not Working

I am using the Reflection API for MonoTouch.Dialog. What I want to accomplish is, when the user selects an item from a list, I want the navigation controller to go back. I don't want to force the user to click an item, then click the Back button…
Ryan Alford
  • 7,514
  • 6
  • 42
  • 56
3
votes
1 answer

How to use MonoTouch.Dialog's ActivityElement?

I might be missing something here, but this code: this.oSectionDRs = new Section() { new ActivityElement() { Caption = Locale.GetLocale("Settings_Loading"), Animating = true } }; // To begin with just show a loading…
Krumelur
  • 32,180
  • 27
  • 124
  • 263
3
votes
1 answer

Cannot find how to add scroll event to DialogControllerView in MonoTouch.DIalog

I'm currently working with Monotouch.Dialog and I have a big list of item. I don't want to load all data immediately, so I implemented (on monodroid) a LoadMore method which load more data in my list when I scroll to the bottom of the list ( 20…
2
votes
1 answer

How to set the cell width within MonoTouch.Dialog

I'm using MonoTouch.Dialog on an iPad screen. I have created a fullscreen background on which I have a MonoTouch.Dialog Table plotted. I wish to change the width of the MonoTouch.Dialog Table (or of all the cells), while leaving the fullscreen…
2
votes
1 answer

MonoTouch Dialog add a toolbar at the bottom of the dialog

I am trying to add a Toolbar that is anchored to the bottom of a MonoTouch Dialog. Here is an example: So as you scroll, the table's contents scroll but the toolbar at the bottom remains in view always. I know how to do this by using the…
Dylan
  • 1,919
  • 3
  • 27
  • 51
2
votes
1 answer

Get a Monotouch.Dialog InputElement for a password field

I am trying to get the value from an EntryElement var password = new EntryElement("Password","Password",null,true); I have a StyledStringElement with a click event like new Section() { new…
Diver Dan
  • 9,953
  • 22
  • 95
  • 166
2
votes
2 answers

Add button to EntryElement

I have created an EntryElement in which the user enters a phone number.How can I add a button at the end of the element so that the user can press the button and make a call?
2
votes
1 answer

Can you place two edit fields side-by-side?

In all the examples I've seen it's just one element per line. I would like to place 2 or more edit boxes next to each other to conserve vertical space. Has anyone run across sample showing how this is done?
user1229084
  • 103
  • 1
  • 5
2
votes
1 answer

MonoTouch.Dialog: StringElement with value, but hide value in UI?

I want the user to select one out of many elements. So I'm creating a long list of StringElement, each one with a specific caption. Each element is associated with a specific value. My ideas was to set the Value property of the StringElement.…
Krumelur
  • 32,180
  • 27
  • 124
  • 263
2
votes
1 answer

Monotouch UITableView or MonoTouch.Dialog

I am building an iPhone app with MonoTouch and it gets its data from a web service. The trouble I am having is that the first screen gets a list of say countries. When the user selects a country it should then retrieve the list of cities from the…