No save button when editing mvc Properties
Hi guys,
I can see the properties of my mvc widget in the back end but i can't save them because no button save.
I tried to follow this post www.sitefinity.com/.../no-save-button-when-editing-properties-of-a-news-item without success.
Anything i missed ?
Thanks.
[ControllerToolboxItem(Name = "Features", Title = "Features", SectionName = "MVC")] public class FeatureController : Controller public string HeaderText get; set; // GET: Feature public ActionResult Index() ViewData["HeaderText"] = this.HeaderText; var listOfFeatures = new List<string>(); listOfFeatures.Add( "Pure MVC mode"); listOfFeatures.Add("Classic MVC mode"); listOfFeatures.Add("Hybrid MVC mode"); return View(listOfFeatures); Edit : I figured it out. When i use a page template in hybrid mode, i can't see the save button. If i use the mvc mode only, i can see it ! Any info about that ? (Version Sitefinity 9.0.6010.0)
We figured it out. We got a bootstrap content which interfere with sitefinity bootstrap stuff. It seems to be ok with the newer version of sitefinity.