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

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

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

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

            updateValues(name, result);
        }