Base solution for your next web application

Activities of "wcdagency"

hello the following css is not working. I created a simple project , below code is working but  in aspnetzero .core project it is not working. something is overwritten them. what  are the correct ways to do it? (1) below code: it changes the color of clicked row var table1 = $('#TestDataTableId').DataTable();

$('#TestDataTableId tbody').on('click', 'tr', function () { if ($(this).hasClass('selected')) { $(this).removeClass('selected'); } else { table1.$('tr.selected').removeClass('selected'); $(this).addClass('selected'); } }); (2) below code: it changes the color of hovered rows <style>

<br> table.dataTable.display tbody tr:hover { background: yellow; }

&lt;/style>

hELLO

I  want to add View to the permission tree. some of user will just see the records, not create-edit or delete

how could I accomplish that?

hello

from event

public async Task<PartialViewResult> CreateOrEditModal(int? id, bool? abc ) {

} modal.open( modalOptions, onClose, onOpen); --> onopen event is working. modal.open( { abc:true } modalOptions, onClose, onOpen); --> I could send param to controller but this way, onopen event is not working.

what is the correct way of passing param to controller so both I could pass abc params and onOpen event would work?

Hello

in database,

what does IsTwoFactorEnabled for? what are its purposes?

~~~~

hello

My customer's intent is;

les say we have a page table name: person columns: Id : int not null FirstName: nvarchar 200 LastName : nvarchar 200

he (last user) wants a page, from there, he could be able to add properties, dynamically, just using web page

les say

TCKimlikNo: nvarchar 50

is it possible?

hello

My customer wants to print the exact look of grid, i mean, les say i have 20 rows of grid then I implied search filter then it reduced from 20 to 8, so , I want to add a button nearby a grid (print) , after clicking this button, it will print 8 rows of this filtered grid. What do you suggest?

hello I want to use select2 selectbox, what would you suggest?

hello

I created many entities in host account. I created a tenant then created user for this tenant. when I login to system, left menu is empty. but I already created entities in host. how could I give permissions for for the ones I created in host account to make them visible in tenant account?

hello

an interesting situation, when I could not be able to login, I stop project then restart project ; after that I realize that , a brand new record is inserted in abpusers, which is not good. what could be reason and ways to avoid it?

Hello in ../mvc/accountcontroller

{
var loginResult = await _logInManager.LoginAsync(usernameOrEmailAddress, password, tenancyName);

        switch (loginResult.Result)
        {
            case AbpLoginResultType.Success:
                return loginResult;
            default:
                throw _abpLoginResultTypeHelper.CreateExceptionForFailedLoginAttempt(loginResult.Result, usernameOrEmailAddress, tenancyName);
        }
    }


loginresult returns null. I want to check the .LoginAsync function but I could not be able to access it, I have to debug why user could not be able to login. where could I access .loginasync method?

Showing 1 to 10 of 19 entries