dfaruque / Serenity.Extra

Name of the repo says that this is an EXTRA of http://serenity.is platform
60 stars 34 forks source link

Installition and Jquery Not Defined Error #37

Closed muhammedyaman closed 4 years ago

muhammedyaman commented 4 years ago

This is a great extra for serenity thank you for this. I have a question about installition. I am installing to an existing start# project. 3rd step says "Change Base/Super classes of Dialog.ts and Grid.ts using following mappings" which files should i modify? my xyzdialogs and xyzgrids one by one?

Also I am having an issue after i complete the steps except the 3rd one. image

dfaruque commented 4 years ago

For JQuery related error: you should include the files after jquery. i.e after the following line in LayoutHead.cshtml file. @Html.ScriptBundle("Base")

For the 3rd step: yes. you are correct. if you want to use Serenity.Extra grid/dialog base to all of your grids/dialogs then you could use find-replace. for dialog, Search term: extends Serenity.EntityDialog< Replace term: extends _Ext.DialogBase<

for grid, Search term: extends Serenity.EntityGrid< Replace term: extends _Ext.GridBase<

muhammedyaman commented 4 years ago

Thank you. This is a great extra!