diff --git a/Lib.Web.Mvc/JQuery/JqGrid/JqGridHelper.cs b/Lib.Web.Mvc/JQuery/JqGrid/JqGridHelper.cs index 67eacad..bb51089 100644 --- a/Lib.Web.Mvc/JQuery/JqGrid/JqGridHelper.cs +++ b/Lib.Web.Mvc/JQuery/JqGrid/JqGridHelper.cs @@ -2062,6 +2062,9 @@ public JqGridHelper AddActionsColumn(string name, int position = 0, int JqGridColumnModel actionsColumnModel = new JqGridColumnModel(name); actionsColumnModel.Width = width; actionsColumnModel.Resizable = false; + actionsColumnModel.Searchable = false; + actionsColumnModel.Sortable = false; + actionsColumnModel.Viewable = false; actionsColumnModel.Formatter = JqGridColumnPredefinedFormatters.Actions; actionsColumnModel.FormatterOptions = new JqGridColumnFormatterOptions() { diff --git a/Lib.Web.Mvc/Properties/AssemblyInfo.cs b/Lib.Web.Mvc/Properties/AssemblyInfo.cs index c42a13e..3611f14 100644 --- a/Lib.Web.Mvc/Properties/AssemblyInfo.cs +++ b/Lib.Web.Mvc/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("5.0.1.0")] -[assembly: AssemblyFileVersion("5.0.1.0")] +[assembly: AssemblyVersion("5.0.2.0")] +[assembly: AssemblyFileVersion("5.0.2.0")]