Fabrik.Common icon indicating copy to clipboard operation
Fabrik.Common copied to clipboard

Useful stuff from fabrik

Results 25 Fabrik.Common issues
Sort by recently updated
recently updated
newest added

Sharing the changes I had to make to support my use case: having content type="text/xml" in feed entry content. Current code supports only plain text and html. I updated AtomExtensions...

I changed ImportModelStateFromTempDataAttribute to check if the result is ViewResultBase instead of ViewResult so it includes PartialViewResults like the comment implies.

When I download it and try to run it (Fabrik.Common.Web.Example) on vs2013, it's fails to build. After I fix the (*.dll) with nuget, it continues to fail ![error1](https://cloud.githubusercontent.com/assets/7828467/3210516/84cf4280-eec9-11e3-866d-1cda12ffbdc3.png) Nothing seems...

Should allow passing of serializer settings so we can, for example, return camelcased JSON.

enhancement

Helpers such as `Html.CheckBoxListFor` currently use `ExpressionHelper.GetExpressionText(expression)` to generate element names. This generates an incorrect name when using the helper within nested editor templates. E.g. Index.cshtml: `@Html.EditorFor(model => model.Other)` EditorTemplates/Other.cshtml...

bug

Makes it easy to generate or manipulate querystrings.

enhancement

Add HijaxAttribute and JsonStatusCodeResult currently in Fabrik.

enhancement

``` public static bool In(this T t, params T[] values) { return values.Contains(t); } public static bool NotIn(this T t, params T[] values) { return !In(t, values); } ```

enhancement