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

Monotouch Dialog: Passing data up the navigation tree

I was wondering if you could help me with a problem: Consider the following dialog which contains two screens. The first screen shows a StringElement (called 'address') along with a RootElement which navigates to the second screen which has an…
AdamM
  • 55
  • 3
0
votes
1 answer

Using an EntryElement with AutoComplete features and Google Places API

Im wondering if you can help me with a problem: Problem: Im trying to create a dialog with an EntryElement that allows a user to enter an address. As the user enters the address I would like to call the Google Places API to bring back a list of…
AdamM
  • 55
  • 3
0
votes
1 answer

Monotouch.Dialog MultiLineElement

I am trying to create a MultiLineInputElement using Monotouch.Dialog. I have taken the code from the InputElement class and modified it to use UITextView so that it will work. No matter what I do to force the UITextView to size to more than one line…
user156888
0
votes
1 answer

How to extend DateElement to display with Year selection

I have extended the DateElement with DateTimePicker, DatePicker and TimePicker - depend on the DateTimeMode attribute passed in. however the problem is i want to add another option which is select year. one way is to create PopoverController. But…
sagheer
  • 1,195
  • 1
  • 12
  • 19
0
votes
1 answer

monotouch dialog search keyboard customise

How would I change the text on the search bar induced keyboard from "search" to "cancel" or "done" I can change the keyboard type: ((UISearchBar)TableView.TableHeaderView).KeyboardType = UIKeyboardType.CHOICE
WickedW
  • 2,331
  • 4
  • 24
  • 54
0
votes
1 answer

Monotouch: Table report

I have to create a function to create table reports in runtime, the function will receive the columns names and the rows values so this function only have to create a table with the data and then show it in the UI. I saw that UITableView only have…
HDEV
  • 105
  • 6
0
votes
1 answer

MonoTouch.Dialog: How to make a RadioElement multiline?

I am trying to develop an app with MonoTouch. For some screens I create the UI in code. I have a dynamically created RadioGroup with normally two to four RadioElements (choices). Sometimes the text (dynamic too) is too long for the RadioElement…
Halvard
  • 3,891
  • 6
  • 39
  • 51
0
votes
2 answers

Binding StringElement (MT.D) with MvvmCross

We are using some MT.D StringElements, and their Value Property is bound to properties in the ViewModel. The initial value is correctly shown but when the ViewModel changes some values and triggers PropertyChanged then the StringElements contain the…
Fabien
  • 1,015
  • 2
  • 11
  • 22
0
votes
1 answer

Disable button in MT.Dialog and change image

Can anyone help, i want to change my image(button), when i press my buttonImage i open MT.Dialog and then i login, and when i login i want the button to change how do i do that, i have found the code, but it doesn't work in MT.Dialog Here is how i…
Lobbe
  • 71
  • 1
  • 11
0
votes
0 answers

MonoTouch DateElement - Get the value

How to get the value of DateElement after I changed the day/month/year for example. Everytime I changed one of them, the DateValue property is still the old value, but the Value property is changed.
0
votes
1 answer

Using MVVMCross and Monotouch, can you bind to a Dialog.Section Visible property?

I am trying to bind the Visible property of a MVVMCross Dialog Section. var refillSection = new Section() { new StringElement("Refill").Bind(this, "SelectedCommand OpenExternal") }.Bind(this, "Visible…
Brian Chance
  • 1,249
  • 10
  • 15
0
votes
2 answers

Monotouch.Dialog Loading Overlay not showing

I am using the overlay code from here - http://docs.xamarin.com/recipes/ios/standard_controls/popovers/display_a_loading_message It worked all fine..., I was able to call View.Add(loadingOverlay) ...until I changed things to MonoTouch.Dialog and it…
eMi
  • 5,540
  • 10
  • 60
  • 109
0
votes
1 answer

Centering an image in an ImageElement

When trying to center an image in a custom ImageElement in MonoTouch.Dialog, I'm having some issues. I've tried just about every technique in the book, from setting the image's center to the cell's center, adjusting content modes, etc. My current…
pierceboggan
  • 317
  • 5
  • 21
0
votes
1 answer

Determine which Monotouch.Dialog Checkbox was checked/unchecked

I have a list of people that I want to display with checkboxes next to their names. When an CheckBoxElement (person) is checked or unchecked, I need to handle the event. List cbPersonElements = new List
0
votes
1 answer

Make EntryElement look like a UISearchBar

I am using Monotouch.Dialog and I would like to customize an EntryElement to either make it look like a UISearchBar, or make it use, internally, a UISearchBar. Any idea on how to do that? Maybe I need to inherit from Element and create my custom…
Fabien
  • 1,015
  • 2
  • 11
  • 22