Unplanned
Last Updated: 19 Sep 2025 12:57 by Sergei
Sergei
Created on: 19 Sep 2025 12:57
Category: Editor
Type: Bug Report
0
The fields in the Table Wizard of the Editor are not aligned correctly

Bug report

The label of some of the group fields in the table wizard are not properly aligned

Reproduction of the problem

  1. Open the Dojo - https://dojo.telerik.com/IXvPpgtT
  2. Click the 'create table' tool and then 'Table Wizard'

Current behavior

Currently, the labels in the Cell Padding and Cell Properties sections are not correctly aligned

Image

Expected/desired behavior

Image

The issue is a regression starting with 2025.3.812

Workaround

execute: function (e) {
              console.log(e.name);
              if (e.name == "tableWizardInsert" || "tableProperties") {
                setTimeout(function () {
                  debugger;
                  $(".k-form-fieldset .k-d-grid .k-form-field:eq(0)").addClass(
                    "k-col-span-full",
                  );
                });
              }

              if (e.name == "tableCellProperties") {
                setTimeout(function () {
                  $("#k-cell-properties .k-form-field:eq(0)").addClass(
                    "k-col-span-full",
                  );
                });
              }
            },

Dojo - https://dojo.telerik.com/IXvPpgtT

Environment

  • Kendo UI version: 2025.3.825
  • Browser: [all ]
0 comments