Creating a Custom View w/ Custom Markup

I’d like to create a list view with a few different columns. This would be similar to the map view, only with more columns and no map.

Is there a way to create a custom view like that?

Thanks,
Will

Hello,

Be sure to checkout following sample
scheduler\samples\03_extensions\27_grid_view.html

Best regards,
Ilya

Awesome. Thanks, Ilya.

I’m also going to need to write a view that’s 100% custom. What’s the recommended approach to creating a tab, have that tab trigger a function to display the necessary markup, and be able to access the current date of the scheduler?

Does that make sense?

Thanks,
Will

Hello,

Read the first part on how to add new tab:
docs.dhtmlx.com/doku.php?id=dhtm … stom_views
TL;DR - do it as you add any tab for extension view.

As for function - be sure to define

// here "custom" part is the name of your view, should match tab name scheduler.custom_view = function(mode) { if (mode) { // we are displaying mode } else { // we are leaving mode, clean up, etc } }
Best regards,
Ilya