Search found 27 matches

by Dinver
03 Nov 2020, 07:08
Forum: Help
Topic: How to used html-editor in custom page (admin panel)
Replies: 6
Views: 2059

Re: How to used html-editor in custom page (admin panel)

aimeos wrote: 31 Oct 2020, 09:43 Each panels is it's own Vue applications. If you add your own one, you need to add a "vue-block" CSS class too to make them a Vue application:

Code: Select all

<div class="form-group row mandatory vue-block">
Thank you for help! :)
by Dinver
30 Oct 2020, 06:10
Forum: Help
Topic: How to used html-editor in custom page (admin panel)
Replies: 6
Views: 2059

Re: How to used html-editor in custom page (admin panel)

Could you remove the colon here: is="html-editor" If moved textarea block to first tab its working. Move in the second tab, not working... <div class="row item-container"> <div class="col-md-3 item-navbar"> <div class="navbar-content"> <ul class="nav nav...
by Dinver
29 Oct 2020, 08:41
Forum: Help
Topic: How to used html-editor in custom page (admin panel)
Replies: 6
Views: 2059

Re: How to used html-editor in custom page (admin panel)

Probably this is the problem: :value="<?= $enc->html( $this->get( 'itemData/html' ) ); ?>" Try instead: :value="'<?= $enc->attr( $this->get( 'itemData/html' ) ); ?>'" Note the additional apostrophs! Did not help. Does it have he to be additionally init js? https://i.ibb.co/hsvsr...
by Dinver
29 Oct 2020, 07:41
Forum: Help
Topic: Questions by URL and breadcrumbs
Replies: 11
Views: 4675

Re: Questions by URL and breadcrumbs

We've tried to suppress displaying the stage image in the detail view but that change had the consequence of breaking the breadcrumb in the detail view: https://github.com/aimeos/ai-client-html/commit/802576d6f022ceb414fdd25c0c6ead15fbaf44bf Now, we made a different kind of implementation for that....
by Dinver
28 Oct 2020, 16:54
Forum: Help
Topic: How to used html-editor in custom page (admin panel)
Replies: 6
Views: 2059

How to used html-editor in custom page (admin panel)

I made static-page builder (table/create/edit). With input text/checkbox all understandably. But textarea with vue.component not working. <textarea class="form-control item-content" required="required" :is="html-editor" :key="idx" :id="cke-idx" :valu...
by Dinver
27 Oct 2020, 09:27
Forum: Help
Topic: Questions by URL and breadcrumbs
Replies: 11
Views: 4675

Re: Questions by URL and breadcrumbs

The breadcrumbs are automatically generated if you have nested categories and the user clicks on one of them. If no category is selected, only "Your search result" is shown. They not working at click for category on local and on demo site (laravel.demo.aimeos.org). https://media.giphy.com...
by Dinver
26 Oct 2020, 10:01
Forum: Help
Topic: Questions by URL and breadcrumbs
Replies: 11
Views: 4675

Questions by URL and breadcrumbs

Hi,I installed demo shop aimeos-laravel. there is some questions. 1. URL category without nested tree. /shop/category click subcategory /shop/subcategory How to get URL (/shop/category/subcategory)? 2. I have not working breadcrumbs. My local server behave like demo on laravel.demo.aimeos.org. I nee...