Hi, There is one issue I am getting in i-phone and i-pads. When I open website in i-phone or i-pads the 3 bar icon button is not working which we used to open menu bar. So, I thought this is due to this error. I am not sure about this.
I am attaching screen shot with this message that where is error occurring. It is working fine on All other devices like android. Only problem in apple devices. The Button mark in red(in attached figure) is not working.
Hi ,
Following is the script which is added in header.cshtml
<script id="linkedAccountsSubMenuTemplate" type="x-tmpl-mustache"> {{#items}} <li> <a href="" data-user-id="{{id}}" data-tenant-id="{{tenantId}}" class="recently-linked-user"> {{shownUserName}} </a> </li> {{/items}} {{#hasLinkedUsers}} <li class="divider"></li> {{/hasLinkedUsers}} <li> <a href="" id="ManageLinkedAccountsLink"> <i class="icon-settings"></i> @L("ManageAccounts") </a> </li> </script>
Thanks
Hi,
Yes its working now. I am using ListresultDto. Now its working after using PagedResultDto.
Thanks
Hi, I need a condition in which i can hide menus of left side.
Lets assume i have 7 menus of left side. i open first page and there is button on that page. On click of that button i want to hide first 5 menus and show only 6 and 7 menu item.
How can i achieve this?
Thanks
Hi, This worked for me.
Thanks
Hi, I have 3 menu items on left side. i opened first menu and there is some grid on that form. On click of row of grid i want to call 2nd menu item page.
this is my navigation menu :- ... AddItem(new MenuItemDefinition( PageNames.App.Tenant.DMS, L("DMS"), url: "Mpa/DMS", icon: "glyphicon glyphicon-book" ).AddItem(new MenuItemDefinition( PageNames.App.Tenant.BuilderInformation, L("BuilderInformation"), url: "Mpa/BuilderInformation", icon: "glyphicon glyphicon-book" ) ).AddItem(new MenuItemDefinition( PageNames.App.Tenant.DeveloperInformation, L("DeveloperInformation"), url: "Mpa/DeveloperInformation", icon: "glyphicon glyphicon-book" ) ).....
now assume on DMS page i have grid. i clicked one of the row of grid. On click it should get id and open builder information page. How can i go to that page which click on menu ?
Hi, I am using jtable to display data from database, but when i tried to implement paging and any other feature it is showing error.
This is my js code of jtable.
_$MortgageCompaniesTable.jtable({ // title: app.localize('Builders List'), paging: true, sorting: true, multiSorting: true, actions: { listAction: { method: _MortgageCompaniesService.getMortgageCompanies } },
fields: {
id: {
key: true,
list: false
},
actions: {
title: app.localize('Actions'),
width: '15%',
sorting: false,
display: function (data) {
var $span = $('<span></span>');
if (_permissions.edit) {
$('<button class="btn btn-icon btn-xs" title="' + app.localize('Edit') + '"><i class="fa fa-edit"></i></button>')
.appendTo($span)
.click(function () {
// _createOrEditModal.open({ id: data.record.id });
});
}
if (_permissions.delete) {
$('<button class="btn btn-icon btn-xs" title="' + app.localize('Delete') + '"><i class="fa fa-trash-o"></i></button>')
.appendTo($span)
.click(function () {
//deleteRole(data.record);
});
}
return $span;
}
},
mCompanyName: {
title: app.localize('MCompanyName'),
//display: function (data) {
// var $span = $('<span></span>');
// $span.append(data.record.solicitorsName + " ");
// return $span;
//}
},
mCompanyAddress: {
title: app.localize('MCompanyAddress'),
//display: function (data) {
// var $span = $('<span></span>');
// $span.append(data.record.solicitorsAddress + " ");
// return $span;
//}
}
}
});
Result - the result grid is attached with this email. the total count of rows on left bottom corner is showing undefined.
Hi, lets assume we created a user group named technician user in system. also we created role name technician in our application then we have to map these two roles. But, how can we retrieve user group from LDAP ?
Thanks
Hi , if we change passwords from windows. the application allows it login from new password as well as new password. when a LDAP user logs in nothing is visible to him. No Roles assign to him. How to bind windows roles to application roles. So that is get access of particular things. Thanks