@@ -403,7 +403,7 @@ public GriddlySettings<TRow> RowId(Expression<Func<TRow, object>> expression, st
403
403
return this ;
404
404
}
405
405
406
- public GriddlySettings < TRow > Column < TProperty > ( Expression < Func < TRow , TProperty > > expression , string caption = null , string format = null , string expressionString = null , SortDirection ? defaultSort = null , string className = null , bool isExportOnly = false , string width = null , SummaryAggregateFunction ? summaryFunction = null , object summaryValue = null , Func < TRow , object > template = null , Func < GriddlyColumn , GriddlyFilter > filter = null , Func < TRow , object > htmlAttributes = null , object headerHtmlAttributes = null , int defaultSortOrder = 0 , Expression < Func < TRow , object > > value = null )
406
+ public GriddlySettings < TRow > Column < TProperty > ( Expression < Func < TRow , TProperty > > expression , string caption = null , string format = null , string expressionString = null , SortDirection ? defaultSort = null , string className = null , ColumnRenderMode renderMode = ColumnRenderMode . Both , string width = null , SummaryAggregateFunction ? summaryFunction = null , object summaryValue = null , Func < TRow , object > template = null , Func < GriddlyColumn , GriddlyFilter > filter = null , Func < TRow , object > htmlAttributes = null , object headerHtmlAttributes = null , int defaultSortOrder = 0 , Expression < Func < TRow , object > > value = null )
407
407
{
408
408
ModelMetadata metadata = null ;
409
409
@@ -467,7 +467,7 @@ public GriddlySettings<TRow> Column<TProperty>(Expression<Func<TRow, TProperty>>
467
467
DefaultSort = defaultSort ,
468
468
DefaultSortOrder = defaultSortOrder ,
469
469
ClassName = className ,
470
- IsExportOnly = isExportOnly ,
470
+ RenderMode = renderMode ,
471
471
Width = width ,
472
472
HtmlAttributesTemplate = htmlAttributes ,
473
473
HeaderHtmlAttributes = ( IDictionary < string , object > ) headerHtmlAttributes ,
@@ -477,9 +477,9 @@ public GriddlySettings<TRow> Column<TProperty>(Expression<Func<TRow, TProperty>>
477
477
return this ;
478
478
}
479
479
480
- public GriddlySettings < TRow > Column ( string caption = null , string format = null , string expressionString = null , SortDirection ? defaultSort = null , string className = null , bool isExportOnly = false , string width = null , SummaryAggregateFunction ? summaryFunction = null , object summaryValue = null , Func < TRow , object > template = null , Func < GriddlyColumn , GriddlyFilter > filter = null , Func < TRow , object > htmlAttributes = null , object headerHtmlAttributes = null , int defaultSortOrder = 0 , Expression < Func < TRow , object > > value = null )
480
+ public GriddlySettings < TRow > Column ( string caption = null , string format = null , string expressionString = null , SortDirection ? defaultSort = null , string className = null , ColumnRenderMode renderMode = ColumnRenderMode . Both , string width = null , SummaryAggregateFunction ? summaryFunction = null , object summaryValue = null , Func < TRow , object > template = null , Func < GriddlyColumn , GriddlyFilter > filter = null , Func < TRow , object > htmlAttributes = null , object headerHtmlAttributes = null , int defaultSortOrder = 0 , Expression < Func < TRow , object > > value = null )
481
481
{
482
- return Column < object > ( null , caption , format , expressionString , defaultSort , className , isExportOnly , width , summaryFunction , summaryValue , template , filter , htmlAttributes , headerHtmlAttributes , defaultSortOrder , value ) ;
482
+ return Column < object > ( null , caption , format , expressionString , defaultSort , className , renderMode , width , summaryFunction , summaryValue , template , filter , htmlAttributes , headerHtmlAttributes , defaultSortOrder , value ) ;
483
483
}
484
484
485
485
public GriddlySettings < TRow > SelectColumn ( Expression < Func < TRow , object > > id , object summaryValue = null , Func < TRow , object > inputHtmlAttributesTemplate = null )
0 commit comments