There is conflict with Taxonomy Views Integrator (TVI) module.

To reproduce:
1. Install both modules.
2. Enable Taxonomy term build-in view.
3. Change Format: Editable table
4. Add some editable field.

When both modules are enabled - there is no input field and no Save button.
If you disable TVI - editable views works as designed.

Comments

Dimetry’s picture

Issue summary: View changes
Dimetry’s picture

Issue summary: View changes
joachim’s picture

Version: 7.x-1.0-beta9 » 7.x-1.x-dev
Status: Active » Postponed (maintainer needs more info)

Does the view work correctly if you change its path and access it there?

If so, that would point to tvi_render_view() as being the source of the problem. You'd need to do some debugging there.

Dimetry’s picture

You are right.
I have problem only when I use standard path: /taxonomy/term/1

And no problem when I use non-standard path: /taxterm/1

joachim’s picture

Status: Postponed (maintainer needs more info) » Closed (cannot reproduce)

So the problem is in tvi_render_view(). That calls $view->execute_display() to get the view output. The docs for that method say:

   * This function should NOT be used by anything external as this
   * returns data in the format specified by the display. It can also
   * have other side effects that are only intended for the 'proper'
   * use of the display, such as setting page titles and breadcrumbs.
   *
   * If you simply want to view the display, use view::preview() instead.

I'm going to say that's the problem there.