@boikom
@boikom
Forum Replies Created
-
AuthorPosts
-
admin
KeymasterHi tanner anz,
Thanks for the feedback. We were able to reproduce the behavior.
Best regards,
Peter Stoev
Smart UI Team
https://www.htmlelements.com/October 30, 2020 at 5:40 am in reply to: There are some issues with using Grid in Angular following the official guide #101126admin
KeymasterHello LC,
The following step from the https://www.htmlelements.com/docs/grid/#angular guide is very important and should solve your issue:
3. Adding CSS reference
The following CSS file is available in ../node_modules/smart-webcomponents-angular/ package folder. This can be referenced in [src/styles.css] using following code.
@import 'smart-webcomponents-angular/source/styles/smart.default.css';
Another way to achieve the same is to edit the angular.json file and in the styles add the style."styles": [ "node_modules/smart-webcomponents-angular/source/styles/smart.default.css" ]
Best regards,
Dimitar
Smart HTML Elements Team
https://www.htmlelements.comadmin
KeymasterHi Dennis,
The filtering requires additional resources so it will indeed take a bit longer. There is mot a way around this.
Best Regards,
Peter Stoevadmin
KeymasterHello davout,
Both approaches are valid and applicable. To enable paging in the case where a table element is inside smart-table, just set the attribute (property) paging and whatever other settings you require to the smart-table tag, i.e.:<smart-table id="table" paging> <table> <thead> <tr> <th scope="col">Country</th> <th scope="col">Area</th> <th scope="col">Population_Rural</th> <th scope="col">Population_Total</th> <th scope="col">GDP_Total</th> </tr> </thead> <tbody> <tr> <td>Brazil</td> <td>8515767</td> <td>0.15</td> <td>205809000</td> <td>2353025</td> ...
Best regards,
Dimitar
Smart HTML Elements Team
https://www.htmlelements.comadmin
KeymasterHello Peter,
There is no need to add a dependency to another, more specific, npm package. What matters to the size of the build is what is actually imported in your Angular application (in app.module.ts). If you have imported only, for example, DockingLayoutModule, only it will be bundled when the application is built.
Best regards,
Dimitar
Smart HTML Elements Team
https://www.htmlelements.comadmin
KeymasterHello!
In the query builder, is it possible to add the options: “Not And”, “Not Or” when you add a group or a field? Because now there are only “And” and “Or”.admin
KeymasterHello tanner anz,
Thank you for the feedback. We will work on updating this behavior for the next version of Smart HTML Elements.
Best regards,
Dimitar
Smart HTML Elements Team
https://www.htmlelements.comadmin
KeymasterHi dcjuan00001,
1. Thank you for your feedback. There is indeed currently an issue with the export to PDF at certain widths of Smart.Grid. We will try to fix it as soon as possible. The expected behavior can be seen if you open the same demo in a separate window: https://www.htmlelements.com/demos/grid/data-export/index.htm:
– Exported column widths correspond to the current column widths of the Grid;
– If there is not enough space on the page for all columns, they are displayed on separate pages. This is also the way exporting to PDF works in Microsoft Excel.
2. In Chrome, to enable printing of colored background, you would have to click “More settings” in the Print dialog and then check “Background graphics”.
Best regards,
Dimitar
Smart HTML Elements Team
https://www.htmlelements.comadmin
KeymasterHi davout,
We updated it. Thanks for the feedback.
Best regards,
Peter Stoev
Smart UI Team
https://www.htmlelements.com/admin
KeymasterThank you, I’ll try that.
Best Regards,
Gerhardadmin
KeymasterHi Gerhard,
It is normal a CPU to rise when you scroll through a Grid, because there are calculations being made by the component, sometimes cells formatting, loading of html templates, etc. What we can recommend is, if you do not use the advanced features of the Grid and you do not work with large data set to switch to our lightweight version – the Table component.
Best regards,
Boyko Markov
Smart UI Team
https://www.htmlelements.com/admin
KeymasterHi Douglas,
You can find our Admin and Dashboard Templates here: https://github.com/HTMLElements/smart-templates
Best regards,
Peter Stoev
Smart UI Team
https://www.htmlelements.com/admin
KeymasterHi developer09,
We created work items for both reported issues:
https://github.com/HTMLElements/smart-webcomponents/issues/3
https://github.com/HTMLElements/smart-webcomponents/issues/4
Thank you for the valuable feedback!
Best regards,
Boyko Marokv
Smart UI Team
https://www.htmlelements.com/admin
KeymasterOk. If I copy&paste your code in my local project it works now. If I return back to my initial project and remove Bootstrap styles, then it works too. So that is.
I will wait for the next release. Is there any due date (or approximate) for the fix?
Thanks.admin
KeymasterHi developer09,
The issue is a conflict with other scripts and css on the page. When we remove them, it works: https://dotnetfiddle.net/GaLrBG
We will work on this for the next version to clear these conflicts with other libraries.
Best regards,
Boyko Marokv
Smart UI Team
https://www.htmlelements.com/ -
AuthorPosts