Starts in:
0 DAY
1 HR
16 MIN
55 SEC
Starts in:
0 D
1 H
16 M
55 S

Activities of "nabass"

Question

hi sir i have 2 tables in database (Account / ChartOfAccount) i've made a tree view into Account Page like first image and i made a lookup to show this account into ChartOfAccount CreateModal like second image as a checkbox and it works very good BUT what i want to do is shows records within Account tab as a checkbox but more than one level you can see in image number 2 it is a one level almost into a first image is two levels (parent & child) i want the same into Account tab like image number 3 it is an example for what i want to do

  • ABP Framework version: v8
  • UI Type: MVC
  • Database System: EF Core (SQL Server) :

good morning hope u r well is there a way to transfer data between pages with mvc ?? EX: in angular we separate the page into component then collect the selector of these components to build a page this selector carries all the data , logics and styles. can i do the same thing using ABP Framework ?? in my project i use razor pages and MVC and there are a lot of folders created with js files and razor pages can i create a new page and collect aother folders into the new page i created instead of repeating the code or collect the all code into one page??

  • ABP Framework version: v8
  • UI Type: MVC
  • Database System: EF Core (SQL Server)
Question

hi sir hope you are well, i want to make something like image 1 what i reached for is image 2 how can i put more values under my parent value like framework do??

  • ABP Framework version: v8
  • UI Type: MVC
  • Database System: EF Core (SQL Server)
Question

i hope i can explain my big problem hi sir, i am trying to do update method in a composite key class here is my steps with some attachment: hope you can help me 1- created class (createUpdateDto) 2- put my key into it 3- create an interface 4- create service 5- create controller (i know abp gives me auto controller but i should do it because i have more than module)

i faced problem when trying to update in swagger (error 400) The value '{documentStatusId}' is not valid for DocumentStatusId. i cached the problem in routing he says unused route parameter like image below so i fixed it inject int documentStatuesId and string cultureId and error is gone but interface says i must generate method exactly right my interface see picture and you will understand me thank

  • ABP Framework version: v8
  • UI Type:MVC
  • Database System: EF Core (SQL Server)
  • UI Type:MVC
  • Database System: EF Core (SQL Server)
  • Tiered (for MVC) or Auth Server Separated (for Angular): yes/no
  • Exception message and full stack trace:
  • Steps to reproduce the issue: I have Two Tenants and rule Action Button is disabled and in console i have this Error Failed to load ApplicationConfigurationScript
Question

hi sir, i have a big problem now i made a query and used jsTree to make tree view and it works good but it works for just one level what i mean is one parent has 2 child what if one of these child is parent for another child what should i do? i want to make a view like image 1 and this is my query which is working good but just for one level of parent like image 2 is ABP support this feature and has a documentation link to do that or not??

ALTER PROCEDURE [dbo].[GetAccountTreeStructure2] AS BEGIN SET NOCOUNT ON;

WITH RecursiveCTE AS (
    -- Anchor member: Select root nodes (accounts with no parent)
    SELECT
        A.Id,
        A.AccountName AS ChildName,
        A.ParentAccountId,
        A.AccountLevelId,
        AL.AccountLevelTitle AS ParentName,
        0 AS Level
    FROM
        Acc_Account A
    INNER JOIN
        Acc_AccountLevel AL ON A.AccountLevelId = AL.Id
    WHERE
        A.ParentAccountId IS  NULL 

    UNION ALL

    -- Recursive member: Select child nodes recursively
    SELECT
        A.Id,
        A.AccountName AS ChildName,
        A.ParentAccountId,
        A.AccountLevelId,
        AL.AccountLevelTitle AS ParentName,
        Level + 1 AS Level
    FROM
        Acc_Account A
    INNER JOIN
        Acc_AccountLevel AL ON A.AccountLevelId = AL.Id
    INNER JOIN
        RecursiveCTE R ON A.ParentAccountId = R.Id
)

-- Final query to retrieve the tree structure with account and level information
SELECT
    Id,
    ChildName,
    ParentAccountId,
    AccountLevelId,
    ParentName,
    Level  -- Include the Level column to display the level of each node
FROM
    RecursiveCTE;

END;

  • ABP Framework version: v8
  • UI Type: MVC
  • Database System: EF Core (SQL Server)
Question

hello sir, when i tried to give an input id to catch it and make some logic it doesn't work i attached some screenshots for the problem is that a bug in framework??

  • ABP Framework version: v8
  • UI Type: MVCr
  • Database System: EF Core (SQL Server)

hi sir i have a problem into my manager class in Domain Application according to your documentation you use DomainService which includes GuidGenerator.create to create Guid but what if my class is from (int) type like image below what should i do??

  • ABP Framework version: v8
  • UI Type:MVC
  • Database System: EF Core (SQL Server)
Question

Hi sir i generated project using abp suite but i created my master page using normal steps like book tutorial i didn't use suite to customize my code because it generate a lot of classes so... want to generate detail page using abp suite i already have master like i mentioned before doing it by my self using auto CrudAppService method and these are steps that i did to do detail page

  • ABP Framework version: v8
  • UI Type: MVC
  • Database System: EF Core (SQL Server)
Question

Good evening sir, i use (abp dynamic form) tag it's create Forms magic but if i want to use specific field to do something css style or js code how can i get it's Id ?? i went to console to get Id and it's work but it is not working with datapicker like Date Time i attached link video below to see what happen FYI: when i tried to catch any Id from dynamic forms into Javascript file it doesn't work or change what i want to do like image below Id selector just working with css but not working with js hope you can help me please

Video Link: https://streamable.com/3xrd2g

Image Link:

  • ABP Framework version: v8
  • UI Type: MVC
  • Database System: EF Core (SQL Server)
Showing 41 to 50 of 55 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 20, 2024, 13:06