Miguel Moura
Miguel Moura
Hello, Would be possible to add a way to override the getTooltipContent() function? Something like: ``` $('a').powerTip({ content: function ($element, $tooltip) { return $element.parent().find('.Html').html(); } } ``` And also for...
Hello, I have been looking at Contoso University and I have a question: How do you deal with refilling the model helper properties after being submitted with errors? I am...
I have the following class: public class Post { public Int32 Id { get; set; } public String Title { get; set; } public List Tags { get; set; }...
I had Sidr 1.2.1 working on a web site and I updated it to 2.2.1 ... With this change Sidr does now show anymore ... I then removed "display: none;"...
Hello, I am trying maplace and I have on a page the following: ``` Replace by map ``` I would like to "find" if there are any elements in the...
I am using snake_case on an YAML file and deserializing it as follows: serializer = new Serializer(new SerializerSettings { DefaultStyle = YamlStyle.Block, EmitAlias = false, IndentLess = true, NamingConvention =...
I am serializing and object to YML and the first line on my YML file is: !Proj.PostModel,%2520Proj,%2520Version=1.0.0.0,%2520Culture=neutral,%2520PublicKeyToken=null Any idea where this comes from? How to avoid this being added to...
I am serializing the following object: public class Post { public Int32? Id { get; set; } public String Title { get; set; } } Post post = new Post...
Hello, If I am not wrong the parameter that holds the current culture is "culture", right? Is it possible to change the name of this parameter? Thank You, Miguel
Following the AttributeRouting.NET localization example I have: ``` routes.MapAttributeRoutes(config => { config.ConstrainTranslatedRoutesByCurrentUICulture = true; config.CurrentUICultureResolver = (httpContext, routeData) => { return (string)routeData.Values["culture"] ?? Thread.CurrentThread.CurrentUICulture.Name; }; config.UseRouteHandler(() => new CultureRouteHandler()); });...