[Feature] Support custom template in list views
See original GitHub issueFeature Requests
It often makes sense to have differents data displayed depending on the view. Most of the time you can’t put to much data in an event square but in a list view you have as much space as you want. In that way, a render function could be a nice to have.
{
listEventRender: ({ resource, event, eventClick }) => {
return `<div>
<h4>${event.title}<h4>
<div>Some data</div>
<a onclick="eventClick">more details</a>
</div>`
}
}
Issue Analytics
- State:
- Created 4 years ago
- Comments:6 (4 by maintainers)
Top Results From Across the Web
Create List View Templates for any Standard or Custom Object
Create List View Templates for any Standard or Custom Object ... Although we may have need for 15 - 20 different views across...
Read more >Custom Templates in ListView - DevExpress Support
Template can be set in the OnCreateCustomTemplate method. This will be prompted each time a DetailView is called. It is always possible to...
Read more >How to Create Different Templates using the List View Widget
To configure this view, click 'Edit' on the list view widget and under the 'Data' tab select the Dynamics CRM entity and then...
Read more >Creating custom list templates - SharePoint - Microsoft Learn
By default, the custom list template will be available to everyone in your organization. If you want, you can limit access to specific...
Read more >Manage feature templates—ArcGIS Online Help
See Create a feature template in the ArcGIS Pro help for more information. ... In the drop-down list, click the name of the...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
You could do that in
eventRender
by rendering something different based on which view is active, eg:https://codepen.io/acerix/pen/Kjwzjv?editors=0010
I’m just asking for the control of
eventClick
in theeventRender
, not the ability to return JSX ineventRender
or v-slot support for event rendering. If all these issues imply a global change in fullcalendar, may you create an issue in this repo ?