public void SaveSectionContentUI(int sectionId) { String name = "#sectionContent" + sectionId; Dictionary <string, string> result = CssFormUtil.getPostValues(ctx); updateValues(name, result); }
public void SaveRowUI(int iRow) { String name = "#row" + iRow; Dictionary <string, string> result = CssFormUtil.getPostValues(ctx); updateValues(name, result); }
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); }