for Table or for Grid
- [Parameter]
+ [Parameter]
public string ColumnClass { get; set; } // class for column element - only applicable to Grid format
[Parameter]
diff --git a/Oqtane.Client/Modules/Controls/Section.razor b/Oqtane.Client/Modules/Controls/Section.razor
index 3620d893..e0fa42ef 100644
--- a/Oqtane.Client/Modules/Controls/Section.razor
+++ b/Oqtane.Client/Modules/Controls/Section.razor
@@ -49,7 +49,7 @@
base.OnParametersSet();
_heading = !string.IsNullOrEmpty(Heading)
- ? Localize(nameof(Heading), Heading)
- : Localize(nameof(Name), Name);
+ ? LocalizeResource(nameof(Heading), Heading)
+ : LocalizeResource(nameof(Name), Name);
}
}
diff --git a/Oqtane.Client/Modules/Controls/TabPanel.razor b/Oqtane.Client/Modules/Controls/TabPanel.razor
index de41b392..c38b9fc7 100644
--- a/Oqtane.Client/Modules/Controls/TabPanel.razor
+++ b/Oqtane.Client/Modules/Controls/TabPanel.razor
@@ -38,11 +38,11 @@ else
if (string.IsNullOrEmpty(Heading))
{
- Heading = Localize(nameof(Name), Name);
+ Heading = LocalizeResource(nameof(Name), Name);
}
else
{
- Heading = Localize(nameof(Heading), Heading);
+ Heading = LocalizeResource(nameof(Heading), Heading);
}
}
diff --git a/Oqtane.Client/Resources/Modules/Controls/Pager.resx b/Oqtane.Client/Resources/Modules/Controls/Pager.resx
new file mode 100644
index 00000000..710d041d
--- /dev/null
+++ b/Oqtane.Client/Resources/Modules/Controls/Pager.resx
@@ -0,0 +1,123 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Page {0} of {1}
+
+
\ No newline at end of file