Back to FogBugz UI Elements
The FogCreek.FogBugz.UI.CMiniTable is used for the admin dashboard. Plugins can quickly and easily use it for their own interfaces. Here is an example:
Code
CMiniTable minitable = new CMiniTable();
minitable.AddRow("Apples");
minitable.AddRow("Rice");
minitable.AddRow("Chocolate");
minitable.sFooter = FogCreek.FogBugz.UI.Icons.EditIcon() + "Edit";
minitable.sInstructions = "Click the edit icon to bring up the food editor.";
minitable.sTitle = "Foods";
return minitable.RenderHtml();