You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First thank you very much for your nice component :)
In my project i need to specify the full path of my template but when i use a path like : ~/Areas/SiteWeb/Views/Shared/_MyTemplate.cshtml it is not working because in your component in Pager.cs you force the template to be in the Displaytemplates folder like this : var templatePath = string.Format("DisplayTemplates/{0}", this.pagerOptions.DisplayTemplate);
I suggest to check if this.pagerOptions.DisplayTemplate start with ~ in order to use full path like this for example :
First thank you very much for your nice component :)
In my project i need to specify the full path of my template but when i use a path like :
~/Areas/SiteWeb/Views/Shared/_MyTemplate.cshtml
it is not working because in your component in Pager.cs you force the template to be in the Displaytemplates folder like this :var templatePath = string.Format("DisplayTemplates/{0}", this.pagerOptions.DisplayTemplate);
I suggest to check if this.pagerOptions.DisplayTemplate start with
~
in order to use full path like this for example :It will be more flexible for people who have my needs.
Thank you in advance
The text was updated successfully, but these errors were encountered: