I am using a SimpleMultilineEntryElement in MonotouchDialog, from the Elements Pack (here).
Regardless of the height setting, this element continued to appear at the 'default' table cell height. The actual editable part varied, but the background cell outline did not. Much browsing indicated a SizingSource needed to be implemented, and I've done that. So, using a pretty brittle workaround I can now resize cells selectively. Using the UnevenRows property on the Root element did not help. Trying to get the cell at that index killed the app, even though indexes were definitely being returned.
Is there a way to just make it use the height properties I defined for the Multiline entryelement?
using System; using System.Drawing; using MonoTouch.Dialog; using MonoTouch.Foundation; using MonoTouch.UIKit; using ElementPack; using System.Collections.Generic;
namespace MyNameSpace { // Edit existing project or add one if none exists
public partial class ProjectEdit : DialogViewController { Project _p; UINavigationController _nc;
public ProjectEdit (Project p, UINavigationController nc) : base(null, true) { _p = p; _nc = nc; if (_p == null) { _p = new Project(); _p.InitialiseProjectDefaults(); } } public override Source CreateSizingSource (bool unevenRows) { //if (unevenRows) { return new unevenSizingSource(this); } } public class unevenSizingSource : DialogViewController.SizingSource { public unevenSizingSource(DialogViewController vc) : base (vc) { } public override float GetHeightForRow (UITableView tableView, NSIndexPath indexPath) { // workaround to resize selectively // location if (indexPath.Section == 1 && indexPath.Row == 0) { return 200; } // description if (indexPath.Section == 2 && indexPath.Row == 0) { return 200; } return 200; } } public override void ViewDidLoad () { base.ViewDidLoad (); } public override void ViewWillAppear (bool animated) { base.ViewWillAppear (animated); // Client selection ClientListViewController cl = new ClientListViewController(_nc, _p); var basicDetailsSection = new Section("Client") { new StringElement(_p.ClientDisplayName, delegate { _nc.PushViewController(cl, true); }) //new UIViewElement ("", new GapElement (), true) }; var locationSection = new Section("Location") { new SimpleMultilineEntryElement ("", "This is the\n location.") { Editable = true, Height = 200, } }; var descSection = new Section ("Job Description"){ new SimpleMultilineEntryElement ("", "This is the\n description") { Editable = true, Height = 200 } }; Root = new RootElement ("Project Details") { basicDetailsSection, locationSection, descSection }; }}
}