Package org.zkoss.zul

Examples of org.zkoss.zul.Grid


            snippetModel.prepareForCreate();
            // Disable some buttons and grid while the new snippet is not save
            Button addcodeButton = (Button) editWindow.getFellow("addcodeButton");
            Button saveButton = (Button) editWindow.getFellow("saveButton");
            Button saveandcontinueButton = (Button) editWindow.getFellow("saveandcontinueButton");
            Grid snippetCodeGrid = (Grid) editWindow.getFellow("snippetCodeGrid");
            addcodeButton.setDisabled(true);
            saveButton.setDisabled(true);
            saveandcontinueButton.setDisabled(true);
            snippetCodeGrid.setVisible(false);

            showEditWindow("Create a new  snippet");
            isnewSnippet = true;
    }
View Full Code Here


            snippetModel.save();
            Util.reloadBindings(editWindow);
            notificator.info("Snippet saved");
            if (isnewSnippet)   {
                Button addcodeButton = (Button) editWindow.getFellow("addcodeButton");
                Grid snippetCodeGrid = (Grid) editWindow.getFellow("snippetCodeGrid");
                snippetCodeGrid.setVisible(true);
                addcodeButton.setDisabled(false);
                // Now we go to "edit mode"
                openEditForm(snippetModel.getSnippet());
            }
        } catch (DuplicateName e) {
View Full Code Here

TOP

Related Classes of org.zkoss.zul.Grid

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.