[CLOSED] Things changed or removed between 1.3 and 2.0 and not found in Changelog

Page 2 of 3 FirstFirst 123 LastLast
  1. #11
    Quote Originally Posted by feanor91 View Post
    1.3
    Column AutoExpandMin attribute has disapeared
    2.0
    ?

    1.3
    Column AutoExpandMax attribute has disapeared
    2.0
    ?
    They have been removed.

    Please use MaxWidth and MinWidth of Column.
  2. #12
    Quote Originally Posted by feanor91 View Post
    1.3
    In this code :
    <Plugins>
        <ext:RowEditing ID="RowEditingOSA" runat="server" SaveText="Update" ClicksToEdit="2" >
            <DirectEvents>
                <BeforeEdit OnEvent="ValidateEditRight">
                    <ExtraParams>
                        <ext:Parameter  Name="data" Value="#{grdOSA}.store.getAt(rowIndex).data" Mode="raw" Encode="true" ></ext:Parameter>
                    </ExtraParams>
                </BeforeEdit>
                <AfterEdit  OnEvent="AddData">
                    <ExtraParams>
                        <ext:Parameter  Name="data" Value="r.data" Mode="raw" Encode="true" ></ext:Parameter>
                    </ExtraParams>
                </AfterEdit>
            </DirectEvents>
            <Listeners>
                <PreEdit Handler="#{grdOSA}.setDisabled(false);"/>
                <CancelEdit Fn="cancelAddOSAData" />
            </Listeners>
        </ext:RowEditing>
    </Plugins>
    AfterEdit disapeared
    2.0
    change to ValidateEdit (to confirm)
    The AfterEdit event has been renamed to Edit.
  3. #13
    Quote Originally Posted by feanor91 View Post
    1.3
    gridPanel
    <LoadMask ShowMask="true" />
    2.0
    ?
    Please use the GridView LoadMask. Defaults to true.

    Example
    <ext:GridPanel runat="server">
        ...
        <View>
            <ext:GridView runat="server" LoadMask="false" />
        </View>
    </ext:GridPanel>
  4. #14
    Quote Originally Posted by feanor91 View Post
    1.3
    Grid Gouping HideGroupedColumn disapeared
    2.0
    ?
    Quote Originally Posted by feanor91 View Post
    1.3
    Grid Gouping GroupTextTpl disapeared
    2.0
    ?
    Please see the item #23.
    https://examples2.ext.net/#/Getting_...nts/CHANGELOG/
  5. #15
    Quote Originally Posted by feanor91 View Post
    1.3
    RowEditor SaveText="" disapeared
    2.0
    ?
    Please use the RowEditing plugin and its SaveBtnText property.

    Example
    <ext:GridPanel runat="server">
        ...
        <Plugins>
            <ext:RowEditing runat="server" SaveBtnText="My Save Txt" />
        </Plugins>
    </ext:GridPanel>
  6. #16
    Quote Originally Posted by feanor91 View Post
    1.3
    If Ext.Net.X.IsIE Then
    2.0
    IsIE is not a member of Ext.Net.X
    Please use:
    Ext.Net.RequestManager.IsIE
  7. #17
    Quote Originally Posted by feanor91 View Post
    1.3
    Dim ColumnModel As Ext.Net.ColumnModel
    2.0
    Type not defined
    Please use the GridHeaderContainer class instead.
  8. #18
    Quote Originally Posted by feanor91 View Post
    1.3
    grd.ColumnModel.Columns(7).Editor.Editor.Disabled=false
    2.0
    Editor is not a member of Ext.Net.EditorCollection
    Please use:

    C#
    GridPanel1.ColumnModel.Columns[0].Editor[0]
    or
    GridPanel1.ColumnModel.Columns[0].Editor.Primary
    VB
    GridPanel1.ColumnModel.Columns(0).Editor(0)
    or
    GridPanel1.ColumnModel.Columns(0).Editor.Primary
    Last edited by Daniil; Apr 18, 2012 at 7:29 PM.
  9. #19
    Quote Originally Posted by feanor91 View Post
    1.3
    combobox.SelectedIndex = i
    2.0
    SelectIndex is not a mamber of Ext.Net.ComboBox
    It has been removed. Please use the SelectedItems.

    Example
    <ext:ComboBox runat="server">
        <SelectedItems>
            <ext:ListItem Index="0" />
        </SelectedItems>  
    </ext:ComboBox>
  10. #20
    Quote Originally Posted by feanor91 View Post
    1.3
    Dim RwEdit As RowEditor
    2.0
    RowEditor undefined.
    Please use the RowEditing plugin instead. It should be added into the GridPanel Plugins.
Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. [CLOSED] Ext.Net 2.1 version changelog
    By Daly_AF in forum 2.x Legacy Premium Help
    Replies: 4
    Last Post: Dec 14, 2012, 10:59 AM
  2. [CLOSED] ChangeLog Questions
    By softmachine2011 in forum 2.x Legacy Premium Help
    Replies: 6
    Last Post: Jul 12, 2012, 2:56 PM
  3. Replies: 12
    Last Post: Jul 25, 2011, 2:25 PM
  4. [CLOSED] I can not find the file CHANGELOG.txt?
    By flormariafr in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Jan 26, 2010, 11:40 AM

Posting Permissions