Skip to content

Commit 6d97596

Browse files
authored
Image component (#759)
* Image component
1 parent 7f35bc1 commit 6d97596

File tree

47 files changed

+222
-47
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+222
-47
lines changed

BlazorBootstrap.Demo.RCL/Components/Layout/MainLayout.razor.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ internal override IEnumerable<NavItem> GetNavItems()
1414

1515
new (){ Id = "3", Text = "Content", IconName = IconName.BodyText, IconColor = IconColor.Primary },
1616
new (){ Id = "300", Text = "Icons", Href = "/icons", IconName = IconName.PersonSquare, ParentId = "3" },
17+
new (){ Id = "301", Text = "Images", Href = "/images", IconName = IconName.Image, ParentId = "3" },
1718

1819
new (){ Id = "4", Text = "Forms", IconName = IconName.InputCursorText, IconColor = IconColor.Success },
1920
new (){ Id = "400", Text = "Auto Complete", Href = "/autocomplete", IconName = IconName.InputCursorText, ParentId = "4" },
@@ -56,7 +57,7 @@ internal override IEnumerable<NavItem> GetNavItems()
5657
new (){ Id = "51114", Text = "Other", Href = "/grid/other", IconName = IconName.PlusSquareFill, ParentId = "511" },
5758

5859
#endregion Grid
59-
60+
6061
new (){ Id = "512", Text = "Modals", Href = "/modals", IconName = IconName.WindowStack, ParentId = "5" },
6162
new (){ Id = "513", Text = "Offcanvas", Href = "/offcanvas", IconName = IconName.LayoutSidebarReverse, ParentId = "5" },
6263
new (){ Id = "514", Text = "Pagination", Href = "/pagination", IconName = IconName.ThreeDots, ParentId = "5" },

BlazorBootstrap.Demo.RCL/Components/Pages/Grid/01-Overview/Grid_Demo_04_Client_Side_Filtering_Paging_And_Sorting.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
AllowSelection="true"
99
SelectionMode="GridSelectionMode.Multiple"
1010
SelectedItemsChanged="OnSelectedItemsChanged"
11-
Responsive="true">
11+
IsResponsive="true">
1212

1313
<GridColumn TItem="Employee1" HeaderText="Id" PropertyName="Id" SortKeySelector="item => item.Id">
1414
@context.Id

BlazorBootstrap.Demo.RCL/Components/Pages/Grid/01-Overview/Grid_Demo_07_Server_Side_Filtering_Paging_And_Sorting.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Class="table table-hover table-bordered table-striped"
44
AllowFiltering="true"
55
AllowPaging="true"
66
AllowSorting="true"
7-
Responsive="true">
7+
IsResponsive="true">
88

99
<GridColumn TItem="Customer2" HeaderText="Id" PropertyName="CustomerId" SortString="CustomerId" SortKeySelector="item => item.CustomerId" FilterTextboxWidth="50" HeaderTextAlignment="Alignment.Center" TextAlignment="Alignment.Center">
1010
@context.CustomerId

BlazorBootstrap.Demo.RCL/Components/Pages/Grid/03-filters/Grid_Demo_01_A_Client_Side_Filtering.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Class="table table-hover table-bordered table-striped"
44
DataProvider="EmployeesDataProvider"
55
AllowFiltering="true"
6-
Responsive="true">
6+
IsResponsive="true">
77

88
<GridColumn TItem="Employee4" HeaderText="Id" PropertyName="Id">
99
@context.Id

BlazorBootstrap.Demo.RCL/Components/Pages/Grid/03-filters/Grid_Demo_01_B_Client_Side_Filtering_With_StringComparision.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Grid TItem="Employee1" class="table table-hover table-bordered table-striped" DataProvider="EmployeesDataProvider" AllowFiltering="true" Responsive="true">
1+
<Grid TItem="Employee1" class="table table-hover table-bordered table-striped" DataProvider="EmployeesDataProvider" AllowFiltering="true" IsResponsive="true">
22
<GridColumn TItem="Employee1" HeaderText="Id" PropertyName="Id">
33
@context.Id
44
</GridColumn>

BlazorBootstrap.Demo.RCL/Components/Pages/Grid/03-filters/Grid_Demo_05_Set_Default_Filter.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Class="table table-hover table-bordered table-striped"
33
DataProvider="EmployeesDataProvider"
44
AllowFiltering="true"
5-
Responsive="true">
5+
IsResponsive="true">
66

77
<GridColumn TItem="Employee1" HeaderText="Id" PropertyName="Id" FilterOperator="FilterOperator.GreaterThanOrEquals" FilterValue="105">
88
@context.Id

BlazorBootstrap.Demo.RCL/Components/Pages/Grid/03-filters/Grid_Demo_06_Disable_Specific_Column_Filter.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Grid TItem="Employee1" class="table table-hover table-bordered table-striped" DataProvider="EmployeesDataProvider" AllowFiltering="true" Responsive="true">
1+
<Grid TItem="Employee1" class="table table-hover table-bordered table-striped" DataProvider="EmployeesDataProvider" AllowFiltering="true" IsResponsive="true">
22
<GridColumn TItem="Employee1" HeaderText="Id" Filterable="false">
33
@context.Id
44
</GridColumn>

BlazorBootstrap.Demo.RCL/Components/Pages/Grid/03-filters/Grid_Demo_06_Increase_Filter_Textbox_Width.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Grid TItem="Employee3" class="table table-hover table-bordered table-striped" DataProvider="EmployeesDataProvider" AllowFiltering="true" Responsive="true">
1+
<Grid TItem="Employee3" class="table table-hover table-bordered table-striped" DataProvider="EmployeesDataProvider" AllowFiltering="true" IsResponsive="true">
22
<GridColumn TItem="Employee3" HeaderText="Id" PropertyName="Id" FilterTextboxWidth="80">
33
@context.Id
44
</GridColumn>

BlazorBootstrap.Demo.RCL/Components/Pages/Grid/03-filters/Grid_Demo_35_Enum_Filters.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Class="table table-hover table-bordered table-striped"
44
DataProvider="UsersDataProvider"
55
AllowFiltering="true"
6-
Responsive="true">
6+
IsResponsive="true">
77

88
<GridColumn TItem="User" HeaderText="Id" PropertyName="Id">
99
@context.Id

BlazorBootstrap.Demo.RCL/Components/Pages/Grid/03-filters/Grid_Demo_36_Guid_Filters.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Class="table table-hover table-bordered table-striped"
44
DataProvider="UsersDataProvider"
55
AllowFiltering="true"
6-
Responsive="true">
6+
IsResponsive="true">
77

88
<GridColumn TItem="User" HeaderText="Oid" PropertyName="Oid" FilterTextboxWidth="240">
99
@context.Oid

0 commit comments

Comments
 (0)