Search found 274 matches

by MikaelNazarenko
24 Feb 2021, 19:36
Forum: Help
Topic: CMS extension
Replies: 62
Views: 60557

Re: CMS extension

I tried to extend cms table: return [ 'table' => [ 'mshop_cms' => function ( \Doctrine\DBAL\Schema\Schema $schema ) { $table = $schema->getTable( 'mshop_cms' ); $table->addColumn( 'parentid', 'integer', ['notnull' => false] ); $table->addColumn( 'level', 'smallint', [] ); $table->addColumn( 'nleft',...
by MikaelNazarenko
24 Feb 2021, 13:48
Forum: Help
Topic: CMS extension
Replies: 62
Views: 60557

Re: CMS extension

ok, I have updated the components. But when I clicked to add new content item I got JS error :( And the page is not displayed in tree ( Seems tree is not implemented yet ? JS error seems related to this file https://github.com/aimeos/ai-cms-grapesjs/blob/master/admin/jqadm/themes/custom.js line 199,...
by MikaelNazarenko
24 Feb 2021, 07:47
Forum: Help
Topic: CMS extension
Replies: 62
Views: 60557

Re: CMS extension

Hi there, just tried to get updated extension. I have installed the project with the following commands: composer create-project aimeos/aimeos:dev-master aimeosdev composer req aimeos/ai-cms-grapejs:dev-main And I noticed some problems: When I am on cms main page - there is error 'Unable to call met...
by MikaelNazarenko
19 Feb 2021, 08:40
Forum: Help
Topic: CMS extension
Replies: 62
Views: 60557

Re: CMS extension

So there is not stable version yet with updated blue design in back-end ?)
by MikaelNazarenko
18 Feb 2021, 08:22
Forum: Help
Topic: CMS extension
Replies: 62
Views: 60557

Re: CMS extension

Thanks! You are the best! Sorry that I could not provide finished PR, so low free time last days ((

Ah and by the way, the new aimeos version with updated design in back-end also going soon to be stable ?
by MikaelNazarenko
16 Feb 2021, 14:43
Forum: Help
Topic: CMS extension
Replies: 62
Views: 60557

Re: CMS extension

Thank you very much! To get fixed JS error, what should I update, ai-admin-jqadm ? or grapesjs extension ? I tried composer update but same js error, these are components versions: aimeos/ai-admin-jqadm dev-master e0aa47a Aimeos Vue.js+Bootstrap admin interface aimeos/ai-admin-jsonadm dev-master 950...
by MikaelNazarenko
16 Feb 2021, 13:15
Forum: Help
Topic: CMS extension
Replies: 62
Views: 60557

Re: Setup new entity for jsonadm

Grapesjs editor works in current cms extension version ? And also where the content from editor will be stored ? in which db table ? I just try now set up it and check if works. Can you please rename topic to 'cms extension' or something like this. Also it need to send data from editor some way. How...
by MikaelNazarenko
12 Feb 2021, 21:47
Forum: Help
Topic: CMS extension
Replies: 62
Views: 60557

Re: Setup new entity for jsonadm

Hi) I have created pull request, sorry, I don't know if I have done it very well, because I did not use pull requests so often.. For now there is couple bugs. The first is always appearing alert. And the second is delete modal is not working correctly, close buttons not working and info about deleti...
by MikaelNazarenko
11 Feb 2021, 12:43
Forum: Help
Topic: CMS extension
Replies: 62
Views: 60557

Re: Setup new entity for jsonadm

I work on cms tree and by the way delete item from tree not working. Screen just got grey. Modal is not opened.

This might be the fix

Code: Select all

$('#confirm-delete > div').modal('show')
And also seems vue has not rendered items
by MikaelNazarenko
10 Feb 2021, 15:25
Forum: Help
Topic: CMS extension
Replies: 62
Views: 60557

Re: Setup new entity for jsonadm

I thought to make it another way. Provide entity widget. And then it would be handy for user when he manage items in widget like media in product. I think it is more handy for customer to manage it such way than deal with html blocks in editor.. Moreover it is better because no need to copy and dupl...