Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
Could it be that 7.5 doesn't has support for legacy editors? Now you have to write them i Dojo.
I am looking at this issue now and will add support for 7.5.
Created an issue: https://github.com/Geta/Tags/issues/6
Just released new version of Geta Tags: http://geta.no/blogg/geta-tags-for-episerver-7.5-released/
And it's available on nuget.episerver.com.
Now it uses Dojo MultiComboBox for selecting tags.
Do i need to setup a route for this to work. When i try to call /getatags/?name=test - i get a 404. thanks in advance.
It uses MVC with default routes. If you do not have MVC routes set, then you should add them.
Here is default routes for MVC:
public class RouteConfig
{
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
}
}
And register them in Global.asax:
public class Global : EPiServer.Global
{
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
RouteConfig.RegisterRoutes(RouteTable.Routes); // <-- Register routes
BundleConfig.RegisterBundles(BundleTable.Bundles);
ViewEngines.Engines.Insert(0, new CustomViewEngine());
ModelBinders.Binders.DefaultBinder = new BetterDefaultModelBinder();
MvcHandler.DisableMvcResponseHeader = true;
}
}
Maybe I was under the wrong impression but thought episerver added these as default but as normal, i must be wrong. Thanks for your work on this Maris.
I´ve added it as a bug: https://github.com/Geta/Tags/issues/8. Since the module should register the route for the controller (explicitly not using rely on the default route).
Frederik
I have used geta.tags since its inception but for some reason when moving over to episerver 7.5. I just get a textbox. I don't get anything other than that. Has anyone else ran into this issue. I have the following in my model(ContentType)
I am not what sure would cause this. I have the include module and what not added from nuget and still, to no avail.... Any help would be appreciated.