taffy-coustom-ui
Version:
26 lines (24 loc) • 510 B
Plain Text
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace jQWidgetsMVCDemo.Controllers
{
public class WidgetsController : Controller
{
// GET: /Widgets//TreeWithCheckboxes
public ActionResult TreeWithCheckboxes(string theme)
{
return View("TreeWithCheckboxes");
}
public ActionResult Tree()
{
var items = Request.Form["tree"];
if (null == items)
items = "";
ViewData["Tree Items"] = items;
return View();
}
}
}