Custom CellEditing Break after Upgrading from 3.3 to 5.3

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1

    Custom CellEditing Break after Upgrading from 3.3 to 5.3

    I had the following codes working fine until I upgraded from 3.3 to 5.3 any thoughts? I was able to move to next row same column when inputting values in a grid using these codes. Since the upgrade, I only get moved next row only. Were there any breaking changes?

                                        <ext:Column runat="server" ID="Col6" DataIndex="TOTAL" Text="TOTAL" Width="90" Align="Center">
                                            <Editor>
                                                <ext:TextField ID="TextField5" runat="server">
                                                    <Listeners>
                                                        <SpecialKey Handler="if (e.getKey() === e.ENTER) {this.up('gridpanel').enterWasPressed = true;}" />
                                                    </Listeners>
                                                </ext:TextField>
                                            </Editor>
                                        </ext:Column>
    
                                <Plugins>
                                    <ext:CellEditing ID="CellEditing1" runat="server" ClicksToEdit="1">
                                        <Listeners>
                                            <Edit Handler="if (e.grid.enterWasPressed) {
                                                            this.startEdit(e.rowIdx + 1, e.column);
                                                            e.grid.enterWasPressed = false;
                                                        }" />
                                        </Listeners>
                                    </ext:CellEditing>
                                </Plugins>
    Last edited by geoffrey.mcgill; Dec 23, 2020 at 3:56 PM.

Similar Threads

  1. [CLOSED] 4.8 (latest) break internet explorer
    By Z in forum 4.x Legacy Premium Help
    Replies: 9
    Last Post: Aug 28, 2019, 5:39 AM
  2. [CLOSED] Convert RowEditing Plugins to CellEditing CellEditing
    By Alaswad in forum 3.x Legacy Premium Help
    Replies: 5
    Last Post: Aug 23, 2016, 12:09 PM
  3. [CLOSED] Did Charts break
    By randy85253 in forum 1.x Legacy Premium Help
    Replies: 8
    Last Post: Sep 05, 2013, 7:18 PM
  4. How to not break the back button inside a viewport?
    By netwearcdz in forum 1.x Help
    Replies: 0
    Last Post: Oct 22, 2009, 6:58 PM
  5. [CLOSED] no line break in text area
    By Sharon in forum 1.x Legacy Premium Help
    Replies: 5
    Last Post: Aug 07, 2009, 4:53 AM

Tags for this Thread

Posting Permissions