0
rajasekhard2015 created
Hi,
I want add one more option for seeting the each user loggedin info..
please suggest me the process how to add one modal (Actions like edit, claims and delete user) want add one more action.
8 Answer(s)
-
0
Hi I have added the functionality like,
$(function() { abp.log.info('My custom user script file has been loaded!');
//TODO how to get user instance to add another action
});
JavaScript Then add this file to the bundle of the role management page:
Configure<AbpBundlingOptions>(options => { options.ScriptBundles .Configure( typeof(Volo.Abp.Identity.Web.Pages.Identity.Users.IndexModel).FullName, bundleConfig => { bundleConfig.AddFiles("/Pages/Identity/Users/myuser.js"); }); });
In Js file how can i get the user page instance please give me that steps
Have an answer to this question?
Log in
and write your answer.