public ActionResult Batch() {
            SetItems();

            var meta = new Meta
            {
                Mode = "batch",
                Title = "Batch Update Mode",
                Description = "In Batch Update mode, new items are created on the server, but edit's and delete's are made to the model and are not submitted to the server until the 'Save Changes' button is clicked.  Then they are sent in batches instead of individual calls."
            };

            return View("Index", meta);
        }
        public ActionResult Index() {
            SetItems();

            var meta = new Meta
            {
                Mode = "single",
                Title = "Single Update Mode",
                Description = "In Single Update mode, all actions are sent to the server as individual requests as soon as they are initiated in the UI.  The UI reflects the changes made on the server."
            };

            return View(meta);
        }