Base solution for your next web application
Starts in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "huntethan89"

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 ?

Question

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.

Thanks.

Question

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

Question

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.

Thanks

Question

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.

Question

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

Question

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

Question

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

Question

Hi, I have sent you my github Username, but still permission is pending from your side. Please grant me permission so that i can process further with my project.

Thanks Himanshu sharma

Hi, i am looking into <a class="postlink" href="https://www.aspnetzero.com/Documents/Developing-Step-By-Step-MPA#authorization-for-phone-book">https://www.aspnetzero.com/Documents/De ... phone-book</a> this link to add authorization for page. i have added same as described in documnet but the permission is not showing in permission tree. what is the possible reason behind this issue.

code added in AppAuthorizationProvider.cs

var phoneBook = pages.CreateChildPermission(AppPermissions.Pages_Tenant_PhoneBook, L("PhoneBook"), multiTenancySides: MultiTenancySides.Tenant); phoneBook.CreateChildPermission(AppPermissions.Pages_Tenant_PhoneBook_CreatePerson, L("CreateNewPerson"), multiTenancySides: MultiTenancySides.Tenant);

In AppPermissions class.cs

public const string Pages_Tenant_PhoneBook = "Pages.Tenant.PhoneBook";

Thanks Himanshu sharma

Showing 71 to 80 of 80 entries