Thanks Prakash
Getting jQuery undefined error...
<body class="page-md page-header-fixed page-sidebar-closed-hide-logo">
<div class="page-header navbar navbar-fixed-top md-shadow-zero-light">
@Html.Action("Header", "Layout")
</div>
<div class="clearfix">
</div>
**<script type="text/javascript">
jQuery(function () {
alert("Hello Before");
});
</script>**
....
Thanks Prakash
What is link to down metronics theme to use in asp.net zero projects. i want to use other features of metronics.
prakash
Thanks it was some kind of caching issue, I clean and rebuild the solution and it started working.
Thanks Prakash
Good Morning All,
I have modified AppAuthorizationProvider, AppPermissions like this
//Survey Application var survey = pages.CreateChildPermission(AppPermissions.Pages_Survey, L("Survey")); survey.CreateChildPermission(AppPermissions.Pages_Survey_Create, L("CreateSurvey")); survey.CreateChildPermission(AppPermissions.Pages_Survey_Edit, L("EditSurvey")); survey.CreateChildPermission(AppPermissions.Pages_Survey_Delete, L("DeleteSurvey"));
public const string Pages_Survey = "Pages.Survey"; public const string Pages_Survey_Create = "Pages.Survey.Create"; public const string Pages_Survey_Edit = "Pages.Survey.Edit"; public const string Pages_Survey_Delete = "Pages.Survey.Delete";
and have localization entries <text name="Survey">Survey</text> <text name="CreateSurvey">Create Survey</text> <text name="EditSurvey">Edit Survey</text> <text name="DeleteSurvey">Delete Survey</text>
but still the new TreeSub Item Survey and its permissions are not showing up in assign permissions? What I am missing? I am using MPA and have deleted app folder.
Thanks Prakash
Hi All,
I want to use Telerik ASP.Net MVC with ASP.Net Zero. Have any one done applying Telerik on top of ASP.Net Zero. I have followed the steps Telerik outlines to integrate with any ASP.Net MVC application, but seems like there is conflicts with Scripts, CSS. Any help greatly appreciated.
Thanks Prakash