Wiki

Case Status Kiln
Register Log In

Wiki

 
FogBugz Class Library»FogBugz UI Elements»Using CMiniTable
  • RSS Feed

Last modified on 12/15/2014 4:27 PM by User.

Tags:

Using CMiniTable

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();