view type of datepicker in datatable editing

Hello.
I wonder if it is supportable “month view” of datepicker in datatable editing.
I know ui.datepicker supports month view by type property. But in datatable editing, it seems that only “date” view is supported.
This is what I refer to https://snippet.webix.com/b71794bf.
I have changed editor property from “date” to “month”.
It turned out not working.
How to use “month view” in datatable edting?

try to create own popup editor

  webix.editors.$popup.month = {
    view:"popup",
    body:{
      view:"calendar",
      type:"month"
    }
  };
  
  webix.editors.month = webix.extend({
    popupType:"month"
  }, webix.editors.date);

column config:
{
    ..., editor:"month"
}

Thanks a lot. :smile: