"nabass" 'in aktiviteleri

hi sir, hope u r well i faced a problem with creating a master detail page master record inserted well but when i try to open a detail page i got an (error 400) despite of ID is correct ,, i attached a video to explain my problem

https://streamable.com/f06ahb

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

hi sir, hope u r will if i have 2 table and i want to make a master detail page thanks to abp framework it make it easy BUT what if the (master) page is normal page and (detail) page is composite key like image below how can i make it ???? how can i make it normally if abp doesn't support it ???

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

hi sir can you explain ? i can not open and use suite how abp suite is already installed and terminal show me that it isn't installed i tried to remove abp using (abp suite remove) then reinstall it and this is what i get

  • ABP Framework version: v8
Soru

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)
Soru

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)
Soru

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
Soru

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)

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)
28 kayıttan 11 ile 20 arası gösteriliyor.
Made with ❤️ on ABP v8.2.0-preview Updated on Mart 25, 2024, 15:11