how to add a upload file button in tui.editor of cmskit module or change the insert img button not only upload img but also file?
in abp v5.1.3, add a new template with app-nolayers option, but some time I want to use it in abp commercial, please add the option in abp commercial and abp suite ,thanks
I want to add a “View" function In CmsKit Page to direct view the content of a Page,So I add index.js in fold pages\CmsKit\Pages like this:
and change the index.js like this:
{
text: l('Edit'),
visible: abp.auth.isGranted('CmsKit.Pages.Update'),
action: function (data) {
location.href = 'Pages/Update/' + data.record.id;
}
},
{
text: l('View'),
visible: abp.auth.isGranted('CmsKit.Pages.Update'),
action: function (data) {
location.href = 'Pages/View';
}
},
and I also add a page name View.cshtml. but when I click the ”View" Button,
show wrong msg : can't fund the page View
please help me, thanks
I want to use flowchart in tui.editor, how to write a plugin for mermaid.thanks
I want to link to a file have uploaded to FileManager Module for example ,I have uploaded a file name "有害垃圾.docx" to FileManager
now In tui.Editor, I want insert a link when I click "Insert link" button
how to write the URL in the picture?
I need upload file(like pdf,doc,zip file) in toastui-editor, how to add a file upload button in the toolbar and write the event? please help me.
for example, I create a standalone module ZSHTech.DataDictionary in E:\abp商业版开发软件\模块\数据字典
and I also create ZSHTech.IPMS application use abp suite in E:\abp商业版开发软件\基建项目管理软件
and I want to use my own standalone module ZSHTech.DataDictionary in my application ZSHTech.IPMS,
so I enter the folder E:\abp商业版开发软件\基建项目管理软件 and run cmd:
abp add-module ZSHTech.DataDictionary -s ..\模块\数据字典\src\ZSHTech.DataDictionary.Web\ZSHTech.DataDictionary.Web.csproj
but I got a wrong msg:
ERROR: 'ZSHTech.DataDictionary' module could not be found!
my question is : how to add local module to abp application use abo cli cmd? thanks
I want to use tui-grid in my project, so I run cmd
npm install --save tui-grid
in the web project,then I run cmd
gulp
but I can't see any tui-grid file in the libs, please help me how to copy tui-grid to my libs path?
I use abp suite to create a module solution(use EF as database), with some reason,I delete the database. but when I use update-database command to produce the database,there has nothing in the abpUses table, so I can't login the system and can't debug the solution. Please help me how to manual add seed to the database?