Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Deprecated code in Showcase examples

    Hi,

    Just wanted to ask if possible to remove the deprecated source code from Showcase. I usually get the source code from there and tweak it.

    Code:
        /**
         * Synonym for {@link setEditorProperties(FormItem)}.
         *
         * @param editorType FormItem with default properties to be applied when editing
         * @deprecated Renamed to {@link setEditorProperties(FormItem)}. You can also consider using 
         *             {@link setEditorType(Class)} or {@link setEditorType(String)} instead.
         */
        public void setEditorType(FormItem editorType) {
            setEditorProperties(editorType);
        }
    e.g.
    is used in Grids --> Editing --> Custom Column Editors.

    This time I was lucky because I leaned a lot from reflection mechanism :-)

    I appreciate it in advance and wanted to thank you guys for making one of the best libraries accessible to us...

    #2
    The source code was updated and you will see the change as of tomorrow's builds.

    Comment

    Working...
    X