예제 #1
0
        public static string HTML_COLUMN_IN_SEARCHEDITFORM_ON_MODAL(string controllername, ColumnInfo col)
        {
            dynamic model = col.ToDymanicObject();

            model.Controller = controllername;
            return(GenerateHelper.CompileTemplate("html.share.col_on_searcheditform_on_modal", model));
        }
예제 #2
0
        public static string HTML_Column_In_ChildSearchForm(string childtable, string controllername, ColumnInfo col)
        {
            dynamic model = col.ToDymanicObject();

            model.ChildTable = childtable;
            model.Controller = controllername;
            return(GenerateHelper.CompileTemplate("html.share.col_on_childsearchform", model));
        }