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
2 answers

What UINavigationController event can be overridden to get access to current view controller?

What UINavigationController event can be overridden to get access to current view controller? My end goal is to check the current screen in the Navigation Controller to determine whether or not to call SetNavigationBarHidden.
Brian David Berman
  • 7,514
  • 26
  • 77
  • 144
0
votes
1 answer

Right aligned EntryElement

Any sample on making EntryElement align to the right? I can't figure out how to inherit/override the EntryElement. Thanks, Mojo
MojoDK
  • 4,410
  • 10
  • 42
  • 80
0
votes
1 answer

Monotouch.dialog - how to create a delegate to access an Element Value the moment it is altered

I am beginning to use the monotouch.dialog utility and would be most grateful if someone could advise me how it is possible to access instantaneous changes to a value of an element (EntryElement, FloatElement, BoolElement etc) just after it has been…
user414396
  • 11
  • 1
  • 2
0
votes
0 answers

Mono touch Dialog RTL overlap issue for Entry Element in Xamarin iOS

When EntryElement is used for Arabic language the UITextfield overlap with the Title Label EntryElement entryElementSerialNo = new BasicEntryElement("Serial No.", "Enter Sr no", number) { TextAlignment = UITextAlignment.Right, KeyboardType =…
kush
  • 77
  • 6
0
votes
2 answers

Is it possible to create a Checkbox Selection list using MonoTouch.Dialog?

Basically I want the same functionality that you get by using the RadioSelection attribute except that it allows multiple selections to be made. Something like this: [CheckSelection] private IList currentSelections; private IList
Adam Jones
  • 2,370
  • 5
  • 23
  • 40
0
votes
2 answers

MonoTouch.Dialog: UINavigation Holding UITabBar - Missing Back Button

My MonoTouch.Dialog Reflection-generated form is in an UITabBar which is in a UINavigationControl. Works great. When the user however clicks the list generated from the following: [RadioSelection ("State"),Caption("State")] public int…
Ian Vink
  • 66,960
  • 104
  • 341
  • 555
0
votes
0 answers

Monotouch.Dailog change font color for selected item of RadioElement

I have used Monotouch.Dailog to create list items for radio selection, I need to change the font color of selected radio element to blue and make it bold how can I do that? public class Demo : DialogViewController{ public override void…
kush
  • 77
  • 6
0
votes
1 answer

MonoTouch.Dialog: No Default value

I am using the BindingContext to generate the table and don't want a default value chosen. My Class has this field: [RadioSelection ("Model:")] public int model = -1; public IList Model; It is then added to the Root: car = new AddCar…
Ian Vink
  • 66,960
  • 104
  • 341
  • 555
0
votes
1 answer

Using the MonoTouch.Dialog feature to create an application similar to the SMS application

I am trying to learn using MonoTouch. I am basically trying to create something similar to the sms message application that is built into the iphone. I want the Edit button and a add button within the root element. Is this possible? Im creating the…
Diver Dan
  • 9,953
  • 22
  • 95
  • 166
0
votes
1 answer

Getting to the ID of a UITableView Cell's Data object

So I have list of customer objects, custFname, CustLName, custID. Using LINQ I put all the first letters as sections in a RootView, and all the customers as StringElements inside of their respective section. Now when an item is selected I can't…
Chuck Pinkert
  • 1,325
  • 1
  • 14
  • 24
0
votes
0 answers

MonoTouch.Dialog DialogViewController Rowheight not maintained when orientation change

In my Xamarin project, I have used DailogViewController. Using this, I have set the root elements and height both. When I run the application, it works fine and the height (35f) which I set. But when orientation change, in debug console, I see 35f…
Wolverine
  • 4,264
  • 1
  • 27
  • 49
0
votes
1 answer

MonoTouch.Dialog: Title Bar color with reflection api

I'm using the MonoTouch.Dialog reflection API to create a new DialogViewController: var dashBoard = new RootElement (""){ new Section("My Dashboard", "All alerts, follow-ups, and tasks are automatically synced each time you launch…
Billy Coover
  • 3,827
  • 5
  • 36
  • 50
0
votes
1 answer

Alternative to UITableView.Begin/EndUpdates

We have a custom MonoTouch Dialog (MT D) Element that we want to expand as we type into it. We experienced the common MT D issue of the height not recalculating. The common solution for that is to call…
Pat Long - Munkii Yebee
  • 3,592
  • 2
  • 34
  • 68
0
votes
1 answer

MonoTouch.Dialog: ContentSizeForViewInPopover changes in Date

I have a Reflection-created dialog that looks like below. When the date is clicked, the popover changes shape and renders the datepicker squished, see below too. My Class is below for reference. [Preserve(AllMembers = true)] public class…
Ian Vink
  • 66,960
  • 104
  • 341
  • 555
0
votes
0 answers

Application Loader reports missing code-signing certificate

I am developing my App in xamarin studio. I want the solution for xamarin Ios app not on xcode. I produce screenshots about my issue.please give me the right solution. I am creating Distribution profile like below: And finally Signing…