Hi, yes its working. Are we not allowed to c hange password from applicaiton ? What happen if we change password from windows?
Hi , i am working in MPA project. Made all changes, add pages etc etc. Now if we want to use SPA, should we have to add all pages in SPA project ?
Thanks
Hi, I have disabled multi tenancy option and login on browser with default admin user. It is logged in successfully. Now i go to User page :- <a class="postlink" href="http://localhost:6240/Mpa/Users">http://localhost:6240/Mpa/Users</a> .
After that i copy this URL (<a class="postlink" href="http://localhost:6240/Mpa/Users">http://localhost:6240/Mpa/Users</a> ) on other browser. Then my application crashes. But it should take me to the login page. i am attaching screenshot of crashed page.
Hi, What should we needed to implement LDAP integration. i have done what is written in this link : <a class="postlink" href="https://www.aspnetzero.com/Documents/Development-Guide#enabling-ldap-active-directory-authentication">https://www.aspnetzero.com/Documents/De ... entication</a> , but in settings -> user management it shows only email confirmation option. i am attaching screenshot with this. Please tell me what are other things i need to done to implement LDAP.
Hi, Yes i have seen this document. Is there any other document related to code description and all features.
Thanks
Hi, It is showing loading image constantly, not showing the data from database.
code is as below:-
this is Index.js file code. to load data in grid.
var _$FileTable = $('#FileTable'); // div where we add the grid.
_$FileTable.jtable({ title: app.localize('File Tracking'),
actions: {
listAction: {
method: _fileService.GetFiles
}
},
fields: {
id: {
key: true,
list: false
},
actions: {
title: app.localize('Actions'),
width: '30%',
display: function (data) {
var $span = $('<span></span>');
if (_permissions.edit) {
$('<button class="btn btn-default btn-xs" title="' + app.localize('Edit') + '"><i class="fa fa-edit"></i></button>')
.appendTo($span)
.click(function () {
_createOrEditModal.open({ id: data.record.id });
});
}
if (!data.record.isStatic && _permissions.delete) {
$('<button class="btn btn-default btn-xs" title="' + app.localize('Delete') + '"><i class="fa fa-trash-o"></i></button>')
.appendTo($span)
.click(function () {
deleteRole(data.record);
});
}
return $span;
}
},
displayName: {
title: app.localize('FileName'),
width: '35%',
display: function (data) {
var $span = $('<span></span>');
$span.append(data.record.FileName + " ");
return $span;
}
},
creationTime: {
title: app.localize('CreationTime'),
width: '35%',
display: function (data) {
return moment(data.record.CreateDate).format('L');
}
}
}
});
function getRoles() { _$FileTable.jtable('load'); }
getRoles();
FiletrackingAppservice.cs ( this is i am using to retireve data from database)
public ListResultDto<FileListDto> GetFiles(GetFileTrack input) { var files = _fileRepository .GetAll() .Include(p => p.User) .WhereIf( !input.Filter.IsNullOrEmpty(), p => p.FileName.Contains(input.Filter) || p.FilePath.Contains(input.Filter) || p.File_Status.Contains(input.Filter) ) .OrderBy(p => p.FileName) .ThenBy(p=>p.File_Status) .ToList();
return new ListResultDto<FileListDto>(files.MapTo<List<FileListDto>>());
}
Thanks
Hi,
I want to show data in jtable from database but not able to view data. i am able to retreive data from database but not able to show on browser, It stuck at loading bar.
i want to know what parameters we need to pass when calling the load method of jtable.
Thanks
Hi, I am working with ASPNET zero application. I have a full source code. i want full detailed features document which helps me to understand the process and all features of project. Please provide some document for this.
Thanks
Hi, Yes, now i got the mail and able to access pages.
Thanks Himanshu sharma
Hi, My github username is "hsharma89". i have recieved email from your side that i am invited to private repository. but when i try to download it shows error that this page doesn't exists. This is the link i am trying to access.
<a class="postlink" href="https://github.com/aspnetzero/aspnet-zero/releases/download/v1.10.0/metronic-v4.5.6.zip">https://github.com/aspnetzero/aspnet-ze ... v4.5.6.zip</a>
Thanks Himanshu sharma