Ejemplo n.º 1
0
        public void SaveSectionContentUI(int sectionId)
        {
            String name = "#sectionContent" + sectionId;
            Dictionary <string, string> result = CssFormUtil.getPostValues(ctx);

            updateValues(name, result);
        }
Ejemplo n.º 2
0
        public void SaveRowUI(int iRow)
        {
            String name = "#row" + iRow;
            Dictionary <string, string> result = CssFormUtil.getPostValues(ctx);

            updateValues(name, result);
        }
Ejemplo n.º 3
0
        public void SaveUI(int layoutId)
        {
            String name = getCoulumnName(layoutId);
            Dictionary <string, string> result = CssFormUtil.getPostValues(ctx);

            updateValues(name, result);
        }
Ejemplo n.º 4
0
        public virtual void SaveSectionTitleUI(long sectionId)
        {
            String name = "#sectionTitle" + sectionId;
            Dictionary <string, string> result = CssFormUtil.getPostValues(ctx);

            updateValues(name, result);
        }