Can you re-generate blazor bundles with
abp bundle
command?
The CSS file that makes changes to the grid is: blazor-global-styles.css This is in the Blazor project (not Blazor.Client)
abp bundle
is not valid on the Blazor project - only Blazor.Client. I have run this previously (and again now) but it has not effect.
When you run the suggested abp bundle
does it change the cell padding?
Just to recap:
Here is the CSS I have added to blazor-global-styles.css
/* Your Global Styles */ .b-table.table tbody th, .b-table.table tbody td { padding: 0.5rem 0.25rem; background-color: #b6ff00; }
The background-color is just to test that the CSS is being used. And is it. But the padding is not.
Ok thanks, but still no luck on the grid padding I can make changes in blazor-global-styles.css and they are reflected in the UI.
For example, in the following css I used the background-color to test if the css is getting through and it does. But the padding change has not effect:
What is happening is that the custom padding css is superseded by blazor-bundle.css:
Please assist.
<br>
Hello, The blazor-bundle.css file is not part of the project. It only exists in the build output: So, I can't change it there, right?
Can you please advise what project css file I can apply the suggested change.
I have tried several in the Blazor and Blazor.Client + running the abp bundle command for the Blazor.Client.
I don't want to download the LeptonX source
This is the default layout of a new project generated using ABP Suite - Blazor Web App 8.2.... This is not a new issue. It is the default behavior of the Blazorise DataGrid.
You can reproduce this by creating a new Blazor project (any flavor of Blazor)
I want to reduce the padding on each row.
Thanks.
Using 8.2.0-rc4.
Can't now add a navigation property to an Entity using ABP Suite.
Clicking on the ok button does nothing.
I get this on an existing project and a new project (just to confirm behavior)
----- UPDATE A full uninstall and reinstall of ABP Suite and CLI has resolved this for me.
abp suite remove dotnet tool uninstall -g Volo.Abp.Cli
Using ABP Suite. Pages xxxx.Extended.razor.cs files are overwritten on a Save and Generate. Extended files in other projects are not overwritten.
Delete of Entities in ABP Suite does not seem to do anything in RC3. It claims to have deleted the Entity but tables are still in database and code is still in the solution. It seems it just was deleted from ABP Suite itself. I assume the idea is that it should actually be deleted from the solution and maybe database?
Assume you are aware of the concept of soft delete:
https://docs.abp.io/en/abp/latest/Data-FilteringCheck in the database the IsDeleted column. If you want to remove from the database, then you need to do a Hard Delete.
I am not part of the ABP team - but this is not the right channel for this question/feedback. ABP are trying to get 8.2 finished and, with respect, this is noise they don't need.
I suggest reading more carefully before commenting - this is about deleting entities in ABP Suite. Apparently this has never worked the way you can assume it to when you have a delete button right next to a save and generate one. If the current behavior remains unchanged, it should at least be made more clear that it only deletes entities from ABP Suite.
https://support.abp.io/QA/Questions/639/ABP-Suite-does-not-delete-GRUD-Entity-cleanly
My apologies :)
Delete of Entities in ABP Suite does not seem to do anything in RC3. It claims to have deleted the Entity but tables are still in database and code is still in the solution. It seems it just was deleted from ABP Suite itself. I assume the idea is that it should actually be deleted from the solution and maybe database?
Assume you are aware of the concept of soft delete: https://docs.abp.io/en/abp/latest/Data-Filtering
Check in the database the IsDeleted column. If you want to remove from the database, then you need to do a Hard Delete.
I am not part of the ABP team - but this is not the right channel for this question/feedback. ABP are trying to get 8.2 finished and, with respect, this is noise they don't need.
On a new Blazor Web App project in ABP Suite using 8.2.0-rc.3.
When Exceptions are raised the message dialog appears ok, but after clicking ok, the page reverts to the base URL.
It is easy to replace by raising and exception on any Create or Edit modal.
--- UPDATE This only occurs when: <Routes @rendermode="InteractiveWebAssembly" /> and <Routes @rendermode="InteractiveAuto" />
When in <Routes @rendermode="InteractiveServer" /> the exceptions behave as normal.
On a new Blazor Web App project in ABP Suite using 8.2.0-rc.3.
On starts up it looks like the Side Menu is available before it is ready.
If a menu item is clicked before the browser loading spinner stops the menu gets stuck/confused.
It is easily replicated by F5 page refresh, then click on a menu item before the browser spinner stops.
I noticed this when the MyFooter override text does not always displayed. Often it shows the default Lepton text - but other times it is the MyFooter text.
---- SOLVED Added a pages folder to the Blazor project (not the .Client one) and added the same MyFooter.razor
Problem solved.