Files
radzen-blazor/Radzen.sln

141 lines
9.8 KiB
Plaintext
Raw Normal View History

2021-11-01 11:05:41 +02:00

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31612.314
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Radzen.Blazor", "Radzen.Blazor\Radzen.Blazor.csproj", "{30919FA8-6A6A-45A3-9B05-0B65ABF8F70F}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RadzenBlazorDemos", "RadzenBlazorDemos\RadzenBlazorDemos.csproj", "{DF9EC444-791A-415A-A3EB-C4B008E5FCB5}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Radzen.Blazor.Tests", "Radzen.Blazor.Tests\Radzen.Blazor.Tests.csproj", "{BC20637F-A979-425A-9C3F-D72633FE555C}"
EndProject
WebAssembly version of demos added (#704) * Demos as WASM * Copy the default wasm loading CSS. * InMemory database instead SQLite * DbContext filled with data * Host project added * Server renamed to Host * Remove location.reload. * Remove startup. * Stop github caching to file. Use larger page size to improve load time. * Display enum values. * DbContext with static data * Host DbContex added * Examples and Sitemap added * docker updated * Theme changing. * Update Dockerfile * Set WORKDIR. * Do not throw errors for duplicate assets. * Do not inherit Index from DbContextPage * Documentation works again. * Sqlite removed from host * DataGrid Save/Load settings fixed * Demo source fixed * Add loading. * Add loading image * Hide the loading with JS interop. * Add the loading globally. * Add server demos. * Delete data files. * Remove the db copy code from Dockerfile. * DbContext seed fixed * missing await added * Separate solutions for all project, Blazor server and Blazor WebAssembly added * tree demos data access fixed * Avoid using Last() and First() * Orders and OrderDetails data made smaller * Update loading animation * Move the loading to MainLayout. * Update loading animation speed * Seed() improved * Revert "Move the loading to MainLayout." This reverts commit f43ce050396b9483e8809af35493eb35531f254c. * Fix homepage bg color with dark theme * Revert "Revert "Move the loading to MainLayout."" This reverts commit faee40d4ad92f474577434c61f31d847e6777a53. Co-authored-by: Atanas Korchev <akorchev@gmail.com> Co-authored-by: yordanov <vasil@yordanov.info>
2022-11-14 13:14:47 +02:00
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RadzenBlazorDemos.Host", "RadzenBlazorDemos.Host\RadzenBlazorDemos.Host.csproj", "{18702B3F-791E-45F3-BCFD-1792A1300AAB}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RadzenBlazorDemos.Server", "RadzenBlazorDemos.Server\RadzenBlazorDemos.Server.csproj", "{EC869401-304A-45BC-93CA-C1CDFAAA7F7B}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RadzenBlazorDemos.Tools", "RadzenBlazorDemos.Tools\RadzenBlazorDemos.Tools.csproj", "{8726EFA9-554D-41D4-8B99-27744DCC7017}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{972C3730-C322-4A6F-A106-18D53BF8E08D}"
ProjectSection(SolutionItems) = preProject
.editorconfig = .editorconfig
EndProjectSection
EndProject
v10 (#2471) * Chip and ChipList components added Code improved demos improved Update Chip styles Exctract mixins for button, badge and chip styles Update Chip demos Update Chip styles in themes Fix chip styles in dropdowns Fix icon position in different chip sizes Fix chip border-radius Optimize styles Update Chip icon Update premium themes Chip/ChipList keyboard navigation fixed Invalid code fixed Update Chip focus styles * Gantt added code improved demo update with more data more demo improvements more improvements rendering updated Gantt Splitter ChangeStateOnResize set to false Gantt connecting lines added Tooltips added FIltering demo added Gantt editing demos added demo updated scrollbar improved Gantt ExpandRows() added thead height made equal material fixed filtering improved Subtitle2 removed Gantt drag & resize added Critical Path, Dependency Types and Baselines added Today Line, Non-Working Days, TaskRender Callback, Vertical Date Markers and Custom Task Bar Template added Zoom to fit and multiline headers added Rendering optimized Grouped header should be static Invalidate row count on expand/collapse and filter progress, critical path, red vertical line and baseline styling improved frozen columns in demos should have Width set alignment improved Auto scroll to events when switching between views Dependency Data added * Move scheduler month view "more" button to slot header The "+X more" button was absolutely positioned inside the events area, occupying space that could hold an additional appointment. Move it inline into the slot title header next to the day number so it no longer consumes an event slot. - Fix operator precedence bug in MaxAppointmentsInSlot auto-calculation - Style the button end-aligned in the header using flex + margin-inline-start: auto - Add demo appointments to trigger the "more" button in the default demo * Use ResizeObserver to measure month view content height Replace the hardcoded (Height - 60) / 6 calculation with actual measurements from a ResizeObserver on the view content element. This fixes appointment overflow at non-default scheduler heights (e.g. 500px) where the 60px header estimate was inaccurate (~91px actual). The MonthView now uses the existing createResizable JS pattern to observe its own content area and dynamically computes the correct MaxAppointmentsInSlot from the measured height and actual week count. * Replace createScheduler with createResizable for ResizeObserver support The scheduler-specific JS functions only used window resize events. Switch to the shared createResizable/destroyResizable pattern which uses ResizeObserver with a window resize fallback, consistent with charts and gauges. * Replace DocFX with Blazor class library for API reference generation Add Radzen.Blazor.Api and Radzen.Blazor.Api.Generator projects that generate .razor pages from Radzen.Blazor assembly metadata at build time. Pages are generated conditionally (Release builds or -p:GenerateApiPages=true). The API assembly is lazy-loaded to avoid initial payload penalty. Old .html URLs are preserved via 301 redirects in CanonicalRedirectMiddleware. * Improve API reference navigation and member anchors - Add anchor links to member headings via RadzenText Anchor parameter - Fix inherited member links to navigate to the specific member, not just the declaring type - Add nav panel that expands/selects the current type on navigation - Fix RadzenBody to scroll to fragment target instead of resetting to top * Stop RadzenToc from updating URL hash on scroll and fix scroll container - Remove navigateTo call from scroll handler so URL hash is not overwritten - Set TOC Selector to .rz-body so it monitors the correct scrollable container * Align API layout header with MainLayout * Refactor RadzenToc scroll listener disposal and item link updates. Return a disposable JS listener handle instead of storing expando handlers on elements, and move TOC item href refresh to NavigationManager location-change handling so links stay in sync with path/query changes. * Add v10 RadzenToc changelog notes. Document the RadzenToc breaking changes around link rendering, aria-selected semantics, and address bar behavior during scrolling, plus the high-level scroll tracking update. * Fix RadzenToc NullReferenceException during concurrent disposal and API reference redirect loop. Capture scrollListenerRef in a local variable before disposing to prevent a race condition when multiple RadzenTocItem components dispose concurrently. Skip scroll listener re-registration when the parent RadzenToc is already disposed. Remove UseDefaultFiles middleware and fix API Reference link to prevent redirect loops. * Fix RadzenToc scrollspy to match Bootstrap ScrollSpy behavior. Remove fallback that always highlighted the first item on load. Require actual scroll (scrollY > 0) before activating the at-bottom branch so short pages don't highlight the last item. Add click handler to RadzenTocItem so clicking an item activates it immediately (matching the DocFX affix click behavior). * Fix misaligned code examples in generated API documentation XML doc comment code blocks retained source-level indentation after parsing, causing excessive leading whitespace in rendered examples. Replace simple .Trim() with indentation normalization that strips the common leading whitespace prefix from all lines. * Update ApiLayout and MainTopNav * Fixed .Server project Cannot provide a value for property 'AssemblyLoader' on type 'RadzenBlazorDemos.Routes'. * Scatter and Bubble series added to Chart * LinearGauge added * Popup cut off on rightmost columns and flickers Fix #2414, #2181 * CheckBoxList filter options update without clicking Apply Fix #2155 * tests updated * DataGrid Reload() lags one render behind Fix #2214 * Gaps in Data for Charts Fix #765 * DataGrid Fixed Column resizing will show visual white space between fixed columns Fix #2228 * Setting Parameter on RadzenDataGridColumn<T> does not always trigger render of content Fix #2215 * DataGrid column resizing does not work on mobile and tablet devices Fix #2168 * RadzenAccordion invalid ARIA aatributes Fix #1931 * DropDownDataGrid search text clear button added Fix #1555 * Caruosel AnimationDuration added Fix #2438 * Tooltip ARIA attributes improved Fix #2314 * Long tooltip does not wrap Fix #2320 * Clicking into Padding of PanelMenuItem does navigate but not expand Item Fix #2244 * RadzenDatePicker FocusedDate synced with current date Fix #1991 * Dialog OnSideClose gets called when opening and closing Fix #1976 * RadzenNumeric RemoveNonNumericCharacters improved Fix #1937 * Optimize CSS rules and SCSS mixins * Fix percentage values in SCSS * Update premium themes * Line Chart markers cannot be dynamically turned off using @if Fix #1229 * DropDownDataGrid exception when changing data object Fix #1941 * RadzenChat new messages button added Fix #2375 * RadzenHtmlEditor Immediate property added Fix #2279 * Radzen Popup shows wrongly in a RTL Fix #2271 * RadzenListBox/RadzenPickList EmptyTemplate and EmptyText added Fix #2018 * DataGrid footer and header is being incorrectly rendered for frozen columns Fix #1402 * PropertyAccess.GetValue() fixed to work with sub interfaces Fix #1249 * RadzenPickList AllowVirtualization added Fix #2456 * DataGrid add new row issue with LoadData method Fix #365 * Various components keyboard navigation not working as described in the demos Fix #2446 * RadzenDataGrid Keyboard Selection jumps when AllowVirtualization is enabled Fix #2439 * RadzenPanelMenu MenuItemDisplayStyle.IconAndTextStacked added Fix #2368 * RadzenPickList SelectedSourceChanged/SelectedTargetChanged added Fix #2324 * RadzenTabs AllowReorder property added Fix #2318 * RadzenAccordion ExpandAll()/CollapseAll() added Fix #2206 * RadzenDropZoneContainer Start/End Drag events added Fix #2158 * RadzenDataGrid doesn't appear to do colspan/rowspan properly Fix #1064 * Update Gantt styles * Update Gantt styles and premium themes * Update Gantt styles * Update Gantt demos * Update Linear Gauge demos * Update component icons * tests fixed --------- Co-authored-by: Atanas Korchev <akorchev@gmail.com> Co-authored-by: yordanov <vasil@yordanov.info>
2026-03-11 16:13:33 +02:00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Radzen.Blazor.Api", "Radzen.Blazor.Api\Radzen.Blazor.Api.csproj", "{B190D50E-6239-46BF-B49A-F37EDC358DC3}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Radzen.Blazor.Api.Generator", "Radzen.Blazor.Api.Generator\Radzen.Blazor.Api.Generator.csproj", "{0CE710A6-8514-4358-ABFF-12943ACD4D72}"
EndProject
2021-11-01 11:05:41 +02:00
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
v10 (#2471) * Chip and ChipList components added Code improved demos improved Update Chip styles Exctract mixins for button, badge and chip styles Update Chip demos Update Chip styles in themes Fix chip styles in dropdowns Fix icon position in different chip sizes Fix chip border-radius Optimize styles Update Chip icon Update premium themes Chip/ChipList keyboard navigation fixed Invalid code fixed Update Chip focus styles * Gantt added code improved demo update with more data more demo improvements more improvements rendering updated Gantt Splitter ChangeStateOnResize set to false Gantt connecting lines added Tooltips added FIltering demo added Gantt editing demos added demo updated scrollbar improved Gantt ExpandRows() added thead height made equal material fixed filtering improved Subtitle2 removed Gantt drag & resize added Critical Path, Dependency Types and Baselines added Today Line, Non-Working Days, TaskRender Callback, Vertical Date Markers and Custom Task Bar Template added Zoom to fit and multiline headers added Rendering optimized Grouped header should be static Invalidate row count on expand/collapse and filter progress, critical path, red vertical line and baseline styling improved frozen columns in demos should have Width set alignment improved Auto scroll to events when switching between views Dependency Data added * Move scheduler month view "more" button to slot header The "+X more" button was absolutely positioned inside the events area, occupying space that could hold an additional appointment. Move it inline into the slot title header next to the day number so it no longer consumes an event slot. - Fix operator precedence bug in MaxAppointmentsInSlot auto-calculation - Style the button end-aligned in the header using flex + margin-inline-start: auto - Add demo appointments to trigger the "more" button in the default demo * Use ResizeObserver to measure month view content height Replace the hardcoded (Height - 60) / 6 calculation with actual measurements from a ResizeObserver on the view content element. This fixes appointment overflow at non-default scheduler heights (e.g. 500px) where the 60px header estimate was inaccurate (~91px actual). The MonthView now uses the existing createResizable JS pattern to observe its own content area and dynamically computes the correct MaxAppointmentsInSlot from the measured height and actual week count. * Replace createScheduler with createResizable for ResizeObserver support The scheduler-specific JS functions only used window resize events. Switch to the shared createResizable/destroyResizable pattern which uses ResizeObserver with a window resize fallback, consistent with charts and gauges. * Replace DocFX with Blazor class library for API reference generation Add Radzen.Blazor.Api and Radzen.Blazor.Api.Generator projects that generate .razor pages from Radzen.Blazor assembly metadata at build time. Pages are generated conditionally (Release builds or -p:GenerateApiPages=true). The API assembly is lazy-loaded to avoid initial payload penalty. Old .html URLs are preserved via 301 redirects in CanonicalRedirectMiddleware. * Improve API reference navigation and member anchors - Add anchor links to member headings via RadzenText Anchor parameter - Fix inherited member links to navigate to the specific member, not just the declaring type - Add nav panel that expands/selects the current type on navigation - Fix RadzenBody to scroll to fragment target instead of resetting to top * Stop RadzenToc from updating URL hash on scroll and fix scroll container - Remove navigateTo call from scroll handler so URL hash is not overwritten - Set TOC Selector to .rz-body so it monitors the correct scrollable container * Align API layout header with MainLayout * Refactor RadzenToc scroll listener disposal and item link updates. Return a disposable JS listener handle instead of storing expando handlers on elements, and move TOC item href refresh to NavigationManager location-change handling so links stay in sync with path/query changes. * Add v10 RadzenToc changelog notes. Document the RadzenToc breaking changes around link rendering, aria-selected semantics, and address bar behavior during scrolling, plus the high-level scroll tracking update. * Fix RadzenToc NullReferenceException during concurrent disposal and API reference redirect loop. Capture scrollListenerRef in a local variable before disposing to prevent a race condition when multiple RadzenTocItem components dispose concurrently. Skip scroll listener re-registration when the parent RadzenToc is already disposed. Remove UseDefaultFiles middleware and fix API Reference link to prevent redirect loops. * Fix RadzenToc scrollspy to match Bootstrap ScrollSpy behavior. Remove fallback that always highlighted the first item on load. Require actual scroll (scrollY > 0) before activating the at-bottom branch so short pages don't highlight the last item. Add click handler to RadzenTocItem so clicking an item activates it immediately (matching the DocFX affix click behavior). * Fix misaligned code examples in generated API documentation XML doc comment code blocks retained source-level indentation after parsing, causing excessive leading whitespace in rendered examples. Replace simple .Trim() with indentation normalization that strips the common leading whitespace prefix from all lines. * Update ApiLayout and MainTopNav * Fixed .Server project Cannot provide a value for property 'AssemblyLoader' on type 'RadzenBlazorDemos.Routes'. * Scatter and Bubble series added to Chart * LinearGauge added * Popup cut off on rightmost columns and flickers Fix #2414, #2181 * CheckBoxList filter options update without clicking Apply Fix #2155 * tests updated * DataGrid Reload() lags one render behind Fix #2214 * Gaps in Data for Charts Fix #765 * DataGrid Fixed Column resizing will show visual white space between fixed columns Fix #2228 * Setting Parameter on RadzenDataGridColumn<T> does not always trigger render of content Fix #2215 * DataGrid column resizing does not work on mobile and tablet devices Fix #2168 * RadzenAccordion invalid ARIA aatributes Fix #1931 * DropDownDataGrid search text clear button added Fix #1555 * Caruosel AnimationDuration added Fix #2438 * Tooltip ARIA attributes improved Fix #2314 * Long tooltip does not wrap Fix #2320 * Clicking into Padding of PanelMenuItem does navigate but not expand Item Fix #2244 * RadzenDatePicker FocusedDate synced with current date Fix #1991 * Dialog OnSideClose gets called when opening and closing Fix #1976 * RadzenNumeric RemoveNonNumericCharacters improved Fix #1937 * Optimize CSS rules and SCSS mixins * Fix percentage values in SCSS * Update premium themes * Line Chart markers cannot be dynamically turned off using @if Fix #1229 * DropDownDataGrid exception when changing data object Fix #1941 * RadzenChat new messages button added Fix #2375 * RadzenHtmlEditor Immediate property added Fix #2279 * Radzen Popup shows wrongly in a RTL Fix #2271 * RadzenListBox/RadzenPickList EmptyTemplate and EmptyText added Fix #2018 * DataGrid footer and header is being incorrectly rendered for frozen columns Fix #1402 * PropertyAccess.GetValue() fixed to work with sub interfaces Fix #1249 * RadzenPickList AllowVirtualization added Fix #2456 * DataGrid add new row issue with LoadData method Fix #365 * Various components keyboard navigation not working as described in the demos Fix #2446 * RadzenDataGrid Keyboard Selection jumps when AllowVirtualization is enabled Fix #2439 * RadzenPanelMenu MenuItemDisplayStyle.IconAndTextStacked added Fix #2368 * RadzenPickList SelectedSourceChanged/SelectedTargetChanged added Fix #2324 * RadzenTabs AllowReorder property added Fix #2318 * RadzenAccordion ExpandAll()/CollapseAll() added Fix #2206 * RadzenDropZoneContainer Start/End Drag events added Fix #2158 * RadzenDataGrid doesn't appear to do colspan/rowspan properly Fix #1064 * Update Gantt styles * Update Gantt styles and premium themes * Update Gantt styles * Update Gantt demos * Update Linear Gauge demos * Update component icons * tests fixed --------- Co-authored-by: Atanas Korchev <akorchev@gmail.com> Co-authored-by: yordanov <vasil@yordanov.info>
2026-03-11 16:13:33 +02:00
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
2021-11-01 11:05:41 +02:00
Release|Any CPU = Release|Any CPU
v10 (#2471) * Chip and ChipList components added Code improved demos improved Update Chip styles Exctract mixins for button, badge and chip styles Update Chip demos Update Chip styles in themes Fix chip styles in dropdowns Fix icon position in different chip sizes Fix chip border-radius Optimize styles Update Chip icon Update premium themes Chip/ChipList keyboard navigation fixed Invalid code fixed Update Chip focus styles * Gantt added code improved demo update with more data more demo improvements more improvements rendering updated Gantt Splitter ChangeStateOnResize set to false Gantt connecting lines added Tooltips added FIltering demo added Gantt editing demos added demo updated scrollbar improved Gantt ExpandRows() added thead height made equal material fixed filtering improved Subtitle2 removed Gantt drag & resize added Critical Path, Dependency Types and Baselines added Today Line, Non-Working Days, TaskRender Callback, Vertical Date Markers and Custom Task Bar Template added Zoom to fit and multiline headers added Rendering optimized Grouped header should be static Invalidate row count on expand/collapse and filter progress, critical path, red vertical line and baseline styling improved frozen columns in demos should have Width set alignment improved Auto scroll to events when switching between views Dependency Data added * Move scheduler month view "more" button to slot header The "+X more" button was absolutely positioned inside the events area, occupying space that could hold an additional appointment. Move it inline into the slot title header next to the day number so it no longer consumes an event slot. - Fix operator precedence bug in MaxAppointmentsInSlot auto-calculation - Style the button end-aligned in the header using flex + margin-inline-start: auto - Add demo appointments to trigger the "more" button in the default demo * Use ResizeObserver to measure month view content height Replace the hardcoded (Height - 60) / 6 calculation with actual measurements from a ResizeObserver on the view content element. This fixes appointment overflow at non-default scheduler heights (e.g. 500px) where the 60px header estimate was inaccurate (~91px actual). The MonthView now uses the existing createResizable JS pattern to observe its own content area and dynamically computes the correct MaxAppointmentsInSlot from the measured height and actual week count. * Replace createScheduler with createResizable for ResizeObserver support The scheduler-specific JS functions only used window resize events. Switch to the shared createResizable/destroyResizable pattern which uses ResizeObserver with a window resize fallback, consistent with charts and gauges. * Replace DocFX with Blazor class library for API reference generation Add Radzen.Blazor.Api and Radzen.Blazor.Api.Generator projects that generate .razor pages from Radzen.Blazor assembly metadata at build time. Pages are generated conditionally (Release builds or -p:GenerateApiPages=true). The API assembly is lazy-loaded to avoid initial payload penalty. Old .html URLs are preserved via 301 redirects in CanonicalRedirectMiddleware. * Improve API reference navigation and member anchors - Add anchor links to member headings via RadzenText Anchor parameter - Fix inherited member links to navigate to the specific member, not just the declaring type - Add nav panel that expands/selects the current type on navigation - Fix RadzenBody to scroll to fragment target instead of resetting to top * Stop RadzenToc from updating URL hash on scroll and fix scroll container - Remove navigateTo call from scroll handler so URL hash is not overwritten - Set TOC Selector to .rz-body so it monitors the correct scrollable container * Align API layout header with MainLayout * Refactor RadzenToc scroll listener disposal and item link updates. Return a disposable JS listener handle instead of storing expando handlers on elements, and move TOC item href refresh to NavigationManager location-change handling so links stay in sync with path/query changes. * Add v10 RadzenToc changelog notes. Document the RadzenToc breaking changes around link rendering, aria-selected semantics, and address bar behavior during scrolling, plus the high-level scroll tracking update. * Fix RadzenToc NullReferenceException during concurrent disposal and API reference redirect loop. Capture scrollListenerRef in a local variable before disposing to prevent a race condition when multiple RadzenTocItem components dispose concurrently. Skip scroll listener re-registration when the parent RadzenToc is already disposed. Remove UseDefaultFiles middleware and fix API Reference link to prevent redirect loops. * Fix RadzenToc scrollspy to match Bootstrap ScrollSpy behavior. Remove fallback that always highlighted the first item on load. Require actual scroll (scrollY > 0) before activating the at-bottom branch so short pages don't highlight the last item. Add click handler to RadzenTocItem so clicking an item activates it immediately (matching the DocFX affix click behavior). * Fix misaligned code examples in generated API documentation XML doc comment code blocks retained source-level indentation after parsing, causing excessive leading whitespace in rendered examples. Replace simple .Trim() with indentation normalization that strips the common leading whitespace prefix from all lines. * Update ApiLayout and MainTopNav * Fixed .Server project Cannot provide a value for property 'AssemblyLoader' on type 'RadzenBlazorDemos.Routes'. * Scatter and Bubble series added to Chart * LinearGauge added * Popup cut off on rightmost columns and flickers Fix #2414, #2181 * CheckBoxList filter options update without clicking Apply Fix #2155 * tests updated * DataGrid Reload() lags one render behind Fix #2214 * Gaps in Data for Charts Fix #765 * DataGrid Fixed Column resizing will show visual white space between fixed columns Fix #2228 * Setting Parameter on RadzenDataGridColumn<T> does not always trigger render of content Fix #2215 * DataGrid column resizing does not work on mobile and tablet devices Fix #2168 * RadzenAccordion invalid ARIA aatributes Fix #1931 * DropDownDataGrid search text clear button added Fix #1555 * Caruosel AnimationDuration added Fix #2438 * Tooltip ARIA attributes improved Fix #2314 * Long tooltip does not wrap Fix #2320 * Clicking into Padding of PanelMenuItem does navigate but not expand Item Fix #2244 * RadzenDatePicker FocusedDate synced with current date Fix #1991 * Dialog OnSideClose gets called when opening and closing Fix #1976 * RadzenNumeric RemoveNonNumericCharacters improved Fix #1937 * Optimize CSS rules and SCSS mixins * Fix percentage values in SCSS * Update premium themes * Line Chart markers cannot be dynamically turned off using @if Fix #1229 * DropDownDataGrid exception when changing data object Fix #1941 * RadzenChat new messages button added Fix #2375 * RadzenHtmlEditor Immediate property added Fix #2279 * Radzen Popup shows wrongly in a RTL Fix #2271 * RadzenListBox/RadzenPickList EmptyTemplate and EmptyText added Fix #2018 * DataGrid footer and header is being incorrectly rendered for frozen columns Fix #1402 * PropertyAccess.GetValue() fixed to work with sub interfaces Fix #1249 * RadzenPickList AllowVirtualization added Fix #2456 * DataGrid add new row issue with LoadData method Fix #365 * Various components keyboard navigation not working as described in the demos Fix #2446 * RadzenDataGrid Keyboard Selection jumps when AllowVirtualization is enabled Fix #2439 * RadzenPanelMenu MenuItemDisplayStyle.IconAndTextStacked added Fix #2368 * RadzenPickList SelectedSourceChanged/SelectedTargetChanged added Fix #2324 * RadzenTabs AllowReorder property added Fix #2318 * RadzenAccordion ExpandAll()/CollapseAll() added Fix #2206 * RadzenDropZoneContainer Start/End Drag events added Fix #2158 * RadzenDataGrid doesn't appear to do colspan/rowspan properly Fix #1064 * Update Gantt styles * Update Gantt styles and premium themes * Update Gantt styles * Update Gantt demos * Update Linear Gauge demos * Update component icons * tests fixed --------- Co-authored-by: Atanas Korchev <akorchev@gmail.com> Co-authored-by: yordanov <vasil@yordanov.info>
2026-03-11 16:13:33 +02:00
Release|x64 = Release|x64
Release|x86 = Release|x86
2021-11-01 11:05:41 +02:00
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{30919FA8-6A6A-45A3-9B05-0B65ABF8F70F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{30919FA8-6A6A-45A3-9B05-0B65ABF8F70F}.Debug|Any CPU.Build.0 = Debug|Any CPU
v10 (#2471) * Chip and ChipList components added Code improved demos improved Update Chip styles Exctract mixins for button, badge and chip styles Update Chip demos Update Chip styles in themes Fix chip styles in dropdowns Fix icon position in different chip sizes Fix chip border-radius Optimize styles Update Chip icon Update premium themes Chip/ChipList keyboard navigation fixed Invalid code fixed Update Chip focus styles * Gantt added code improved demo update with more data more demo improvements more improvements rendering updated Gantt Splitter ChangeStateOnResize set to false Gantt connecting lines added Tooltips added FIltering demo added Gantt editing demos added demo updated scrollbar improved Gantt ExpandRows() added thead height made equal material fixed filtering improved Subtitle2 removed Gantt drag & resize added Critical Path, Dependency Types and Baselines added Today Line, Non-Working Days, TaskRender Callback, Vertical Date Markers and Custom Task Bar Template added Zoom to fit and multiline headers added Rendering optimized Grouped header should be static Invalidate row count on expand/collapse and filter progress, critical path, red vertical line and baseline styling improved frozen columns in demos should have Width set alignment improved Auto scroll to events when switching between views Dependency Data added * Move scheduler month view "more" button to slot header The "+X more" button was absolutely positioned inside the events area, occupying space that could hold an additional appointment. Move it inline into the slot title header next to the day number so it no longer consumes an event slot. - Fix operator precedence bug in MaxAppointmentsInSlot auto-calculation - Style the button end-aligned in the header using flex + margin-inline-start: auto - Add demo appointments to trigger the "more" button in the default demo * Use ResizeObserver to measure month view content height Replace the hardcoded (Height - 60) / 6 calculation with actual measurements from a ResizeObserver on the view content element. This fixes appointment overflow at non-default scheduler heights (e.g. 500px) where the 60px header estimate was inaccurate (~91px actual). The MonthView now uses the existing createResizable JS pattern to observe its own content area and dynamically computes the correct MaxAppointmentsInSlot from the measured height and actual week count. * Replace createScheduler with createResizable for ResizeObserver support The scheduler-specific JS functions only used window resize events. Switch to the shared createResizable/destroyResizable pattern which uses ResizeObserver with a window resize fallback, consistent with charts and gauges. * Replace DocFX with Blazor class library for API reference generation Add Radzen.Blazor.Api and Radzen.Blazor.Api.Generator projects that generate .razor pages from Radzen.Blazor assembly metadata at build time. Pages are generated conditionally (Release builds or -p:GenerateApiPages=true). The API assembly is lazy-loaded to avoid initial payload penalty. Old .html URLs are preserved via 301 redirects in CanonicalRedirectMiddleware. * Improve API reference navigation and member anchors - Add anchor links to member headings via RadzenText Anchor parameter - Fix inherited member links to navigate to the specific member, not just the declaring type - Add nav panel that expands/selects the current type on navigation - Fix RadzenBody to scroll to fragment target instead of resetting to top * Stop RadzenToc from updating URL hash on scroll and fix scroll container - Remove navigateTo call from scroll handler so URL hash is not overwritten - Set TOC Selector to .rz-body so it monitors the correct scrollable container * Align API layout header with MainLayout * Refactor RadzenToc scroll listener disposal and item link updates. Return a disposable JS listener handle instead of storing expando handlers on elements, and move TOC item href refresh to NavigationManager location-change handling so links stay in sync with path/query changes. * Add v10 RadzenToc changelog notes. Document the RadzenToc breaking changes around link rendering, aria-selected semantics, and address bar behavior during scrolling, plus the high-level scroll tracking update. * Fix RadzenToc NullReferenceException during concurrent disposal and API reference redirect loop. Capture scrollListenerRef in a local variable before disposing to prevent a race condition when multiple RadzenTocItem components dispose concurrently. Skip scroll listener re-registration when the parent RadzenToc is already disposed. Remove UseDefaultFiles middleware and fix API Reference link to prevent redirect loops. * Fix RadzenToc scrollspy to match Bootstrap ScrollSpy behavior. Remove fallback that always highlighted the first item on load. Require actual scroll (scrollY > 0) before activating the at-bottom branch so short pages don't highlight the last item. Add click handler to RadzenTocItem so clicking an item activates it immediately (matching the DocFX affix click behavior). * Fix misaligned code examples in generated API documentation XML doc comment code blocks retained source-level indentation after parsing, causing excessive leading whitespace in rendered examples. Replace simple .Trim() with indentation normalization that strips the common leading whitespace prefix from all lines. * Update ApiLayout and MainTopNav * Fixed .Server project Cannot provide a value for property 'AssemblyLoader' on type 'RadzenBlazorDemos.Routes'. * Scatter and Bubble series added to Chart * LinearGauge added * Popup cut off on rightmost columns and flickers Fix #2414, #2181 * CheckBoxList filter options update without clicking Apply Fix #2155 * tests updated * DataGrid Reload() lags one render behind Fix #2214 * Gaps in Data for Charts Fix #765 * DataGrid Fixed Column resizing will show visual white space between fixed columns Fix #2228 * Setting Parameter on RadzenDataGridColumn<T> does not always trigger render of content Fix #2215 * DataGrid column resizing does not work on mobile and tablet devices Fix #2168 * RadzenAccordion invalid ARIA aatributes Fix #1931 * DropDownDataGrid search text clear button added Fix #1555 * Caruosel AnimationDuration added Fix #2438 * Tooltip ARIA attributes improved Fix #2314 * Long tooltip does not wrap Fix #2320 * Clicking into Padding of PanelMenuItem does navigate but not expand Item Fix #2244 * RadzenDatePicker FocusedDate synced with current date Fix #1991 * Dialog OnSideClose gets called when opening and closing Fix #1976 * RadzenNumeric RemoveNonNumericCharacters improved Fix #1937 * Optimize CSS rules and SCSS mixins * Fix percentage values in SCSS * Update premium themes * Line Chart markers cannot be dynamically turned off using @if Fix #1229 * DropDownDataGrid exception when changing data object Fix #1941 * RadzenChat new messages button added Fix #2375 * RadzenHtmlEditor Immediate property added Fix #2279 * Radzen Popup shows wrongly in a RTL Fix #2271 * RadzenListBox/RadzenPickList EmptyTemplate and EmptyText added Fix #2018 * DataGrid footer and header is being incorrectly rendered for frozen columns Fix #1402 * PropertyAccess.GetValue() fixed to work with sub interfaces Fix #1249 * RadzenPickList AllowVirtualization added Fix #2456 * DataGrid add new row issue with LoadData method Fix #365 * Various components keyboard navigation not working as described in the demos Fix #2446 * RadzenDataGrid Keyboard Selection jumps when AllowVirtualization is enabled Fix #2439 * RadzenPanelMenu MenuItemDisplayStyle.IconAndTextStacked added Fix #2368 * RadzenPickList SelectedSourceChanged/SelectedTargetChanged added Fix #2324 * RadzenTabs AllowReorder property added Fix #2318 * RadzenAccordion ExpandAll()/CollapseAll() added Fix #2206 * RadzenDropZoneContainer Start/End Drag events added Fix #2158 * RadzenDataGrid doesn't appear to do colspan/rowspan properly Fix #1064 * Update Gantt styles * Update Gantt styles and premium themes * Update Gantt styles * Update Gantt demos * Update Linear Gauge demos * Update component icons * tests fixed --------- Co-authored-by: Atanas Korchev <akorchev@gmail.com> Co-authored-by: yordanov <vasil@yordanov.info>
2026-03-11 16:13:33 +02:00
{30919FA8-6A6A-45A3-9B05-0B65ABF8F70F}.Debug|x64.ActiveCfg = Debug|Any CPU
{30919FA8-6A6A-45A3-9B05-0B65ABF8F70F}.Debug|x64.Build.0 = Debug|Any CPU
{30919FA8-6A6A-45A3-9B05-0B65ABF8F70F}.Debug|x86.ActiveCfg = Debug|Any CPU
{30919FA8-6A6A-45A3-9B05-0B65ABF8F70F}.Debug|x86.Build.0 = Debug|Any CPU
2021-11-01 11:05:41 +02:00
{30919FA8-6A6A-45A3-9B05-0B65ABF8F70F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{30919FA8-6A6A-45A3-9B05-0B65ABF8F70F}.Release|Any CPU.Build.0 = Release|Any CPU
v10 (#2471) * Chip and ChipList components added Code improved demos improved Update Chip styles Exctract mixins for button, badge and chip styles Update Chip demos Update Chip styles in themes Fix chip styles in dropdowns Fix icon position in different chip sizes Fix chip border-radius Optimize styles Update Chip icon Update premium themes Chip/ChipList keyboard navigation fixed Invalid code fixed Update Chip focus styles * Gantt added code improved demo update with more data more demo improvements more improvements rendering updated Gantt Splitter ChangeStateOnResize set to false Gantt connecting lines added Tooltips added FIltering demo added Gantt editing demos added demo updated scrollbar improved Gantt ExpandRows() added thead height made equal material fixed filtering improved Subtitle2 removed Gantt drag & resize added Critical Path, Dependency Types and Baselines added Today Line, Non-Working Days, TaskRender Callback, Vertical Date Markers and Custom Task Bar Template added Zoom to fit and multiline headers added Rendering optimized Grouped header should be static Invalidate row count on expand/collapse and filter progress, critical path, red vertical line and baseline styling improved frozen columns in demos should have Width set alignment improved Auto scroll to events when switching between views Dependency Data added * Move scheduler month view "more" button to slot header The "+X more" button was absolutely positioned inside the events area, occupying space that could hold an additional appointment. Move it inline into the slot title header next to the day number so it no longer consumes an event slot. - Fix operator precedence bug in MaxAppointmentsInSlot auto-calculation - Style the button end-aligned in the header using flex + margin-inline-start: auto - Add demo appointments to trigger the "more" button in the default demo * Use ResizeObserver to measure month view content height Replace the hardcoded (Height - 60) / 6 calculation with actual measurements from a ResizeObserver on the view content element. This fixes appointment overflow at non-default scheduler heights (e.g. 500px) where the 60px header estimate was inaccurate (~91px actual). The MonthView now uses the existing createResizable JS pattern to observe its own content area and dynamically computes the correct MaxAppointmentsInSlot from the measured height and actual week count. * Replace createScheduler with createResizable for ResizeObserver support The scheduler-specific JS functions only used window resize events. Switch to the shared createResizable/destroyResizable pattern which uses ResizeObserver with a window resize fallback, consistent with charts and gauges. * Replace DocFX with Blazor class library for API reference generation Add Radzen.Blazor.Api and Radzen.Blazor.Api.Generator projects that generate .razor pages from Radzen.Blazor assembly metadata at build time. Pages are generated conditionally (Release builds or -p:GenerateApiPages=true). The API assembly is lazy-loaded to avoid initial payload penalty. Old .html URLs are preserved via 301 redirects in CanonicalRedirectMiddleware. * Improve API reference navigation and member anchors - Add anchor links to member headings via RadzenText Anchor parameter - Fix inherited member links to navigate to the specific member, not just the declaring type - Add nav panel that expands/selects the current type on navigation - Fix RadzenBody to scroll to fragment target instead of resetting to top * Stop RadzenToc from updating URL hash on scroll and fix scroll container - Remove navigateTo call from scroll handler so URL hash is not overwritten - Set TOC Selector to .rz-body so it monitors the correct scrollable container * Align API layout header with MainLayout * Refactor RadzenToc scroll listener disposal and item link updates. Return a disposable JS listener handle instead of storing expando handlers on elements, and move TOC item href refresh to NavigationManager location-change handling so links stay in sync with path/query changes. * Add v10 RadzenToc changelog notes. Document the RadzenToc breaking changes around link rendering, aria-selected semantics, and address bar behavior during scrolling, plus the high-level scroll tracking update. * Fix RadzenToc NullReferenceException during concurrent disposal and API reference redirect loop. Capture scrollListenerRef in a local variable before disposing to prevent a race condition when multiple RadzenTocItem components dispose concurrently. Skip scroll listener re-registration when the parent RadzenToc is already disposed. Remove UseDefaultFiles middleware and fix API Reference link to prevent redirect loops. * Fix RadzenToc scrollspy to match Bootstrap ScrollSpy behavior. Remove fallback that always highlighted the first item on load. Require actual scroll (scrollY > 0) before activating the at-bottom branch so short pages don't highlight the last item. Add click handler to RadzenTocItem so clicking an item activates it immediately (matching the DocFX affix click behavior). * Fix misaligned code examples in generated API documentation XML doc comment code blocks retained source-level indentation after parsing, causing excessive leading whitespace in rendered examples. Replace simple .Trim() with indentation normalization that strips the common leading whitespace prefix from all lines. * Update ApiLayout and MainTopNav * Fixed .Server project Cannot provide a value for property 'AssemblyLoader' on type 'RadzenBlazorDemos.Routes'. * Scatter and Bubble series added to Chart * LinearGauge added * Popup cut off on rightmost columns and flickers Fix #2414, #2181 * CheckBoxList filter options update without clicking Apply Fix #2155 * tests updated * DataGrid Reload() lags one render behind Fix #2214 * Gaps in Data for Charts Fix #765 * DataGrid Fixed Column resizing will show visual white space between fixed columns Fix #2228 * Setting Parameter on RadzenDataGridColumn<T> does not always trigger render of content Fix #2215 * DataGrid column resizing does not work on mobile and tablet devices Fix #2168 * RadzenAccordion invalid ARIA aatributes Fix #1931 * DropDownDataGrid search text clear button added Fix #1555 * Caruosel AnimationDuration added Fix #2438 * Tooltip ARIA attributes improved Fix #2314 * Long tooltip does not wrap Fix #2320 * Clicking into Padding of PanelMenuItem does navigate but not expand Item Fix #2244 * RadzenDatePicker FocusedDate synced with current date Fix #1991 * Dialog OnSideClose gets called when opening and closing Fix #1976 * RadzenNumeric RemoveNonNumericCharacters improved Fix #1937 * Optimize CSS rules and SCSS mixins * Fix percentage values in SCSS * Update premium themes * Line Chart markers cannot be dynamically turned off using @if Fix #1229 * DropDownDataGrid exception when changing data object Fix #1941 * RadzenChat new messages button added Fix #2375 * RadzenHtmlEditor Immediate property added Fix #2279 * Radzen Popup shows wrongly in a RTL Fix #2271 * RadzenListBox/RadzenPickList EmptyTemplate and EmptyText added Fix #2018 * DataGrid footer and header is being incorrectly rendered for frozen columns Fix #1402 * PropertyAccess.GetValue() fixed to work with sub interfaces Fix #1249 * RadzenPickList AllowVirtualization added Fix #2456 * DataGrid add new row issue with LoadData method Fix #365 * Various components keyboard navigation not working as described in the demos Fix #2446 * RadzenDataGrid Keyboard Selection jumps when AllowVirtualization is enabled Fix #2439 * RadzenPanelMenu MenuItemDisplayStyle.IconAndTextStacked added Fix #2368 * RadzenPickList SelectedSourceChanged/SelectedTargetChanged added Fix #2324 * RadzenTabs AllowReorder property added Fix #2318 * RadzenAccordion ExpandAll()/CollapseAll() added Fix #2206 * RadzenDropZoneContainer Start/End Drag events added Fix #2158 * RadzenDataGrid doesn't appear to do colspan/rowspan properly Fix #1064 * Update Gantt styles * Update Gantt styles and premium themes * Update Gantt styles * Update Gantt demos * Update Linear Gauge demos * Update component icons * tests fixed --------- Co-authored-by: Atanas Korchev <akorchev@gmail.com> Co-authored-by: yordanov <vasil@yordanov.info>
2026-03-11 16:13:33 +02:00
{30919FA8-6A6A-45A3-9B05-0B65ABF8F70F}.Release|x64.ActiveCfg = Release|Any CPU
{30919FA8-6A6A-45A3-9B05-0B65ABF8F70F}.Release|x64.Build.0 = Release|Any CPU
{30919FA8-6A6A-45A3-9B05-0B65ABF8F70F}.Release|x86.ActiveCfg = Release|Any CPU
{30919FA8-6A6A-45A3-9B05-0B65ABF8F70F}.Release|x86.Build.0 = Release|Any CPU
2021-11-01 11:05:41 +02:00
{DF9EC444-791A-415A-A3EB-C4B008E5FCB5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DF9EC444-791A-415A-A3EB-C4B008E5FCB5}.Debug|Any CPU.Build.0 = Debug|Any CPU
v10 (#2471) * Chip and ChipList components added Code improved demos improved Update Chip styles Exctract mixins for button, badge and chip styles Update Chip demos Update Chip styles in themes Fix chip styles in dropdowns Fix icon position in different chip sizes Fix chip border-radius Optimize styles Update Chip icon Update premium themes Chip/ChipList keyboard navigation fixed Invalid code fixed Update Chip focus styles * Gantt added code improved demo update with more data more demo improvements more improvements rendering updated Gantt Splitter ChangeStateOnResize set to false Gantt connecting lines added Tooltips added FIltering demo added Gantt editing demos added demo updated scrollbar improved Gantt ExpandRows() added thead height made equal material fixed filtering improved Subtitle2 removed Gantt drag & resize added Critical Path, Dependency Types and Baselines added Today Line, Non-Working Days, TaskRender Callback, Vertical Date Markers and Custom Task Bar Template added Zoom to fit and multiline headers added Rendering optimized Grouped header should be static Invalidate row count on expand/collapse and filter progress, critical path, red vertical line and baseline styling improved frozen columns in demos should have Width set alignment improved Auto scroll to events when switching between views Dependency Data added * Move scheduler month view "more" button to slot header The "+X more" button was absolutely positioned inside the events area, occupying space that could hold an additional appointment. Move it inline into the slot title header next to the day number so it no longer consumes an event slot. - Fix operator precedence bug in MaxAppointmentsInSlot auto-calculation - Style the button end-aligned in the header using flex + margin-inline-start: auto - Add demo appointments to trigger the "more" button in the default demo * Use ResizeObserver to measure month view content height Replace the hardcoded (Height - 60) / 6 calculation with actual measurements from a ResizeObserver on the view content element. This fixes appointment overflow at non-default scheduler heights (e.g. 500px) where the 60px header estimate was inaccurate (~91px actual). The MonthView now uses the existing createResizable JS pattern to observe its own content area and dynamically computes the correct MaxAppointmentsInSlot from the measured height and actual week count. * Replace createScheduler with createResizable for ResizeObserver support The scheduler-specific JS functions only used window resize events. Switch to the shared createResizable/destroyResizable pattern which uses ResizeObserver with a window resize fallback, consistent with charts and gauges. * Replace DocFX with Blazor class library for API reference generation Add Radzen.Blazor.Api and Radzen.Blazor.Api.Generator projects that generate .razor pages from Radzen.Blazor assembly metadata at build time. Pages are generated conditionally (Release builds or -p:GenerateApiPages=true). The API assembly is lazy-loaded to avoid initial payload penalty. Old .html URLs are preserved via 301 redirects in CanonicalRedirectMiddleware. * Improve API reference navigation and member anchors - Add anchor links to member headings via RadzenText Anchor parameter - Fix inherited member links to navigate to the specific member, not just the declaring type - Add nav panel that expands/selects the current type on navigation - Fix RadzenBody to scroll to fragment target instead of resetting to top * Stop RadzenToc from updating URL hash on scroll and fix scroll container - Remove navigateTo call from scroll handler so URL hash is not overwritten - Set TOC Selector to .rz-body so it monitors the correct scrollable container * Align API layout header with MainLayout * Refactor RadzenToc scroll listener disposal and item link updates. Return a disposable JS listener handle instead of storing expando handlers on elements, and move TOC item href refresh to NavigationManager location-change handling so links stay in sync with path/query changes. * Add v10 RadzenToc changelog notes. Document the RadzenToc breaking changes around link rendering, aria-selected semantics, and address bar behavior during scrolling, plus the high-level scroll tracking update. * Fix RadzenToc NullReferenceException during concurrent disposal and API reference redirect loop. Capture scrollListenerRef in a local variable before disposing to prevent a race condition when multiple RadzenTocItem components dispose concurrently. Skip scroll listener re-registration when the parent RadzenToc is already disposed. Remove UseDefaultFiles middleware and fix API Reference link to prevent redirect loops. * Fix RadzenToc scrollspy to match Bootstrap ScrollSpy behavior. Remove fallback that always highlighted the first item on load. Require actual scroll (scrollY > 0) before activating the at-bottom branch so short pages don't highlight the last item. Add click handler to RadzenTocItem so clicking an item activates it immediately (matching the DocFX affix click behavior). * Fix misaligned code examples in generated API documentation XML doc comment code blocks retained source-level indentation after parsing, causing excessive leading whitespace in rendered examples. Replace simple .Trim() with indentation normalization that strips the common leading whitespace prefix from all lines. * Update ApiLayout and MainTopNav * Fixed .Server project Cannot provide a value for property 'AssemblyLoader' on type 'RadzenBlazorDemos.Routes'. * Scatter and Bubble series added to Chart * LinearGauge added * Popup cut off on rightmost columns and flickers Fix #2414, #2181 * CheckBoxList filter options update without clicking Apply Fix #2155 * tests updated * DataGrid Reload() lags one render behind Fix #2214 * Gaps in Data for Charts Fix #765 * DataGrid Fixed Column resizing will show visual white space between fixed columns Fix #2228 * Setting Parameter on RadzenDataGridColumn<T> does not always trigger render of content Fix #2215 * DataGrid column resizing does not work on mobile and tablet devices Fix #2168 * RadzenAccordion invalid ARIA aatributes Fix #1931 * DropDownDataGrid search text clear button added Fix #1555 * Caruosel AnimationDuration added Fix #2438 * Tooltip ARIA attributes improved Fix #2314 * Long tooltip does not wrap Fix #2320 * Clicking into Padding of PanelMenuItem does navigate but not expand Item Fix #2244 * RadzenDatePicker FocusedDate synced with current date Fix #1991 * Dialog OnSideClose gets called when opening and closing Fix #1976 * RadzenNumeric RemoveNonNumericCharacters improved Fix #1937 * Optimize CSS rules and SCSS mixins * Fix percentage values in SCSS * Update premium themes * Line Chart markers cannot be dynamically turned off using @if Fix #1229 * DropDownDataGrid exception when changing data object Fix #1941 * RadzenChat new messages button added Fix #2375 * RadzenHtmlEditor Immediate property added Fix #2279 * Radzen Popup shows wrongly in a RTL Fix #2271 * RadzenListBox/RadzenPickList EmptyTemplate and EmptyText added Fix #2018 * DataGrid footer and header is being incorrectly rendered for frozen columns Fix #1402 * PropertyAccess.GetValue() fixed to work with sub interfaces Fix #1249 * RadzenPickList AllowVirtualization added Fix #2456 * DataGrid add new row issue with LoadData method Fix #365 * Various components keyboard navigation not working as described in the demos Fix #2446 * RadzenDataGrid Keyboard Selection jumps when AllowVirtualization is enabled Fix #2439 * RadzenPanelMenu MenuItemDisplayStyle.IconAndTextStacked added Fix #2368 * RadzenPickList SelectedSourceChanged/SelectedTargetChanged added Fix #2324 * RadzenTabs AllowReorder property added Fix #2318 * RadzenAccordion ExpandAll()/CollapseAll() added Fix #2206 * RadzenDropZoneContainer Start/End Drag events added Fix #2158 * RadzenDataGrid doesn't appear to do colspan/rowspan properly Fix #1064 * Update Gantt styles * Update Gantt styles and premium themes * Update Gantt styles * Update Gantt demos * Update Linear Gauge demos * Update component icons * tests fixed --------- Co-authored-by: Atanas Korchev <akorchev@gmail.com> Co-authored-by: yordanov <vasil@yordanov.info>
2026-03-11 16:13:33 +02:00
{DF9EC444-791A-415A-A3EB-C4B008E5FCB5}.Debug|x64.ActiveCfg = Debug|Any CPU
{DF9EC444-791A-415A-A3EB-C4B008E5FCB5}.Debug|x64.Build.0 = Debug|Any CPU
{DF9EC444-791A-415A-A3EB-C4B008E5FCB5}.Debug|x86.ActiveCfg = Debug|Any CPU
{DF9EC444-791A-415A-A3EB-C4B008E5FCB5}.Debug|x86.Build.0 = Debug|Any CPU
2021-11-01 11:05:41 +02:00
{DF9EC444-791A-415A-A3EB-C4B008E5FCB5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DF9EC444-791A-415A-A3EB-C4B008E5FCB5}.Release|Any CPU.Build.0 = Release|Any CPU
v10 (#2471) * Chip and ChipList components added Code improved demos improved Update Chip styles Exctract mixins for button, badge and chip styles Update Chip demos Update Chip styles in themes Fix chip styles in dropdowns Fix icon position in different chip sizes Fix chip border-radius Optimize styles Update Chip icon Update premium themes Chip/ChipList keyboard navigation fixed Invalid code fixed Update Chip focus styles * Gantt added code improved demo update with more data more demo improvements more improvements rendering updated Gantt Splitter ChangeStateOnResize set to false Gantt connecting lines added Tooltips added FIltering demo added Gantt editing demos added demo updated scrollbar improved Gantt ExpandRows() added thead height made equal material fixed filtering improved Subtitle2 removed Gantt drag & resize added Critical Path, Dependency Types and Baselines added Today Line, Non-Working Days, TaskRender Callback, Vertical Date Markers and Custom Task Bar Template added Zoom to fit and multiline headers added Rendering optimized Grouped header should be static Invalidate row count on expand/collapse and filter progress, critical path, red vertical line and baseline styling improved frozen columns in demos should have Width set alignment improved Auto scroll to events when switching between views Dependency Data added * Move scheduler month view "more" button to slot header The "+X more" button was absolutely positioned inside the events area, occupying space that could hold an additional appointment. Move it inline into the slot title header next to the day number so it no longer consumes an event slot. - Fix operator precedence bug in MaxAppointmentsInSlot auto-calculation - Style the button end-aligned in the header using flex + margin-inline-start: auto - Add demo appointments to trigger the "more" button in the default demo * Use ResizeObserver to measure month view content height Replace the hardcoded (Height - 60) / 6 calculation with actual measurements from a ResizeObserver on the view content element. This fixes appointment overflow at non-default scheduler heights (e.g. 500px) where the 60px header estimate was inaccurate (~91px actual). The MonthView now uses the existing createResizable JS pattern to observe its own content area and dynamically computes the correct MaxAppointmentsInSlot from the measured height and actual week count. * Replace createScheduler with createResizable for ResizeObserver support The scheduler-specific JS functions only used window resize events. Switch to the shared createResizable/destroyResizable pattern which uses ResizeObserver with a window resize fallback, consistent with charts and gauges. * Replace DocFX with Blazor class library for API reference generation Add Radzen.Blazor.Api and Radzen.Blazor.Api.Generator projects that generate .razor pages from Radzen.Blazor assembly metadata at build time. Pages are generated conditionally (Release builds or -p:GenerateApiPages=true). The API assembly is lazy-loaded to avoid initial payload penalty. Old .html URLs are preserved via 301 redirects in CanonicalRedirectMiddleware. * Improve API reference navigation and member anchors - Add anchor links to member headings via RadzenText Anchor parameter - Fix inherited member links to navigate to the specific member, not just the declaring type - Add nav panel that expands/selects the current type on navigation - Fix RadzenBody to scroll to fragment target instead of resetting to top * Stop RadzenToc from updating URL hash on scroll and fix scroll container - Remove navigateTo call from scroll handler so URL hash is not overwritten - Set TOC Selector to .rz-body so it monitors the correct scrollable container * Align API layout header with MainLayout * Refactor RadzenToc scroll listener disposal and item link updates. Return a disposable JS listener handle instead of storing expando handlers on elements, and move TOC item href refresh to NavigationManager location-change handling so links stay in sync with path/query changes. * Add v10 RadzenToc changelog notes. Document the RadzenToc breaking changes around link rendering, aria-selected semantics, and address bar behavior during scrolling, plus the high-level scroll tracking update. * Fix RadzenToc NullReferenceException during concurrent disposal and API reference redirect loop. Capture scrollListenerRef in a local variable before disposing to prevent a race condition when multiple RadzenTocItem components dispose concurrently. Skip scroll listener re-registration when the parent RadzenToc is already disposed. Remove UseDefaultFiles middleware and fix API Reference link to prevent redirect loops. * Fix RadzenToc scrollspy to match Bootstrap ScrollSpy behavior. Remove fallback that always highlighted the first item on load. Require actual scroll (scrollY > 0) before activating the at-bottom branch so short pages don't highlight the last item. Add click handler to RadzenTocItem so clicking an item activates it immediately (matching the DocFX affix click behavior). * Fix misaligned code examples in generated API documentation XML doc comment code blocks retained source-level indentation after parsing, causing excessive leading whitespace in rendered examples. Replace simple .Trim() with indentation normalization that strips the common leading whitespace prefix from all lines. * Update ApiLayout and MainTopNav * Fixed .Server project Cannot provide a value for property 'AssemblyLoader' on type 'RadzenBlazorDemos.Routes'. * Scatter and Bubble series added to Chart * LinearGauge added * Popup cut off on rightmost columns and flickers Fix #2414, #2181 * CheckBoxList filter options update without clicking Apply Fix #2155 * tests updated * DataGrid Reload() lags one render behind Fix #2214 * Gaps in Data for Charts Fix #765 * DataGrid Fixed Column resizing will show visual white space between fixed columns Fix #2228 * Setting Parameter on RadzenDataGridColumn<T> does not always trigger render of content Fix #2215 * DataGrid column resizing does not work on mobile and tablet devices Fix #2168 * RadzenAccordion invalid ARIA aatributes Fix #1931 * DropDownDataGrid search text clear button added Fix #1555 * Caruosel AnimationDuration added Fix #2438 * Tooltip ARIA attributes improved Fix #2314 * Long tooltip does not wrap Fix #2320 * Clicking into Padding of PanelMenuItem does navigate but not expand Item Fix #2244 * RadzenDatePicker FocusedDate synced with current date Fix #1991 * Dialog OnSideClose gets called when opening and closing Fix #1976 * RadzenNumeric RemoveNonNumericCharacters improved Fix #1937 * Optimize CSS rules and SCSS mixins * Fix percentage values in SCSS * Update premium themes * Line Chart markers cannot be dynamically turned off using @if Fix #1229 * DropDownDataGrid exception when changing data object Fix #1941 * RadzenChat new messages button added Fix #2375 * RadzenHtmlEditor Immediate property added Fix #2279 * Radzen Popup shows wrongly in a RTL Fix #2271 * RadzenListBox/RadzenPickList EmptyTemplate and EmptyText added Fix #2018 * DataGrid footer and header is being incorrectly rendered for frozen columns Fix #1402 * PropertyAccess.GetValue() fixed to work with sub interfaces Fix #1249 * RadzenPickList AllowVirtualization added Fix #2456 * DataGrid add new row issue with LoadData method Fix #365 * Various components keyboard navigation not working as described in the demos Fix #2446 * RadzenDataGrid Keyboard Selection jumps when AllowVirtualization is enabled Fix #2439 * RadzenPanelMenu MenuItemDisplayStyle.IconAndTextStacked added Fix #2368 * RadzenPickList SelectedSourceChanged/SelectedTargetChanged added Fix #2324 * RadzenTabs AllowReorder property added Fix #2318 * RadzenAccordion ExpandAll()/CollapseAll() added Fix #2206 * RadzenDropZoneContainer Start/End Drag events added Fix #2158 * RadzenDataGrid doesn't appear to do colspan/rowspan properly Fix #1064 * Update Gantt styles * Update Gantt styles and premium themes * Update Gantt styles * Update Gantt demos * Update Linear Gauge demos * Update component icons * tests fixed --------- Co-authored-by: Atanas Korchev <akorchev@gmail.com> Co-authored-by: yordanov <vasil@yordanov.info>
2026-03-11 16:13:33 +02:00
{DF9EC444-791A-415A-A3EB-C4B008E5FCB5}.Release|x64.ActiveCfg = Release|Any CPU
{DF9EC444-791A-415A-A3EB-C4B008E5FCB5}.Release|x64.Build.0 = Release|Any CPU
{DF9EC444-791A-415A-A3EB-C4B008E5FCB5}.Release|x86.ActiveCfg = Release|Any CPU
{DF9EC444-791A-415A-A3EB-C4B008E5FCB5}.Release|x86.Build.0 = Release|Any CPU
2021-11-01 11:05:41 +02:00
{BC20637F-A979-425A-9C3F-D72633FE555C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BC20637F-A979-425A-9C3F-D72633FE555C}.Debug|Any CPU.Build.0 = Debug|Any CPU
v10 (#2471) * Chip and ChipList components added Code improved demos improved Update Chip styles Exctract mixins for button, badge and chip styles Update Chip demos Update Chip styles in themes Fix chip styles in dropdowns Fix icon position in different chip sizes Fix chip border-radius Optimize styles Update Chip icon Update premium themes Chip/ChipList keyboard navigation fixed Invalid code fixed Update Chip focus styles * Gantt added code improved demo update with more data more demo improvements more improvements rendering updated Gantt Splitter ChangeStateOnResize set to false Gantt connecting lines added Tooltips added FIltering demo added Gantt editing demos added demo updated scrollbar improved Gantt ExpandRows() added thead height made equal material fixed filtering improved Subtitle2 removed Gantt drag & resize added Critical Path, Dependency Types and Baselines added Today Line, Non-Working Days, TaskRender Callback, Vertical Date Markers and Custom Task Bar Template added Zoom to fit and multiline headers added Rendering optimized Grouped header should be static Invalidate row count on expand/collapse and filter progress, critical path, red vertical line and baseline styling improved frozen columns in demos should have Width set alignment improved Auto scroll to events when switching between views Dependency Data added * Move scheduler month view "more" button to slot header The "+X more" button was absolutely positioned inside the events area, occupying space that could hold an additional appointment. Move it inline into the slot title header next to the day number so it no longer consumes an event slot. - Fix operator precedence bug in MaxAppointmentsInSlot auto-calculation - Style the button end-aligned in the header using flex + margin-inline-start: auto - Add demo appointments to trigger the "more" button in the default demo * Use ResizeObserver to measure month view content height Replace the hardcoded (Height - 60) / 6 calculation with actual measurements from a ResizeObserver on the view content element. This fixes appointment overflow at non-default scheduler heights (e.g. 500px) where the 60px header estimate was inaccurate (~91px actual). The MonthView now uses the existing createResizable JS pattern to observe its own content area and dynamically computes the correct MaxAppointmentsInSlot from the measured height and actual week count. * Replace createScheduler with createResizable for ResizeObserver support The scheduler-specific JS functions only used window resize events. Switch to the shared createResizable/destroyResizable pattern which uses ResizeObserver with a window resize fallback, consistent with charts and gauges. * Replace DocFX with Blazor class library for API reference generation Add Radzen.Blazor.Api and Radzen.Blazor.Api.Generator projects that generate .razor pages from Radzen.Blazor assembly metadata at build time. Pages are generated conditionally (Release builds or -p:GenerateApiPages=true). The API assembly is lazy-loaded to avoid initial payload penalty. Old .html URLs are preserved via 301 redirects in CanonicalRedirectMiddleware. * Improve API reference navigation and member anchors - Add anchor links to member headings via RadzenText Anchor parameter - Fix inherited member links to navigate to the specific member, not just the declaring type - Add nav panel that expands/selects the current type on navigation - Fix RadzenBody to scroll to fragment target instead of resetting to top * Stop RadzenToc from updating URL hash on scroll and fix scroll container - Remove navigateTo call from scroll handler so URL hash is not overwritten - Set TOC Selector to .rz-body so it monitors the correct scrollable container * Align API layout header with MainLayout * Refactor RadzenToc scroll listener disposal and item link updates. Return a disposable JS listener handle instead of storing expando handlers on elements, and move TOC item href refresh to NavigationManager location-change handling so links stay in sync with path/query changes. * Add v10 RadzenToc changelog notes. Document the RadzenToc breaking changes around link rendering, aria-selected semantics, and address bar behavior during scrolling, plus the high-level scroll tracking update. * Fix RadzenToc NullReferenceException during concurrent disposal and API reference redirect loop. Capture scrollListenerRef in a local variable before disposing to prevent a race condition when multiple RadzenTocItem components dispose concurrently. Skip scroll listener re-registration when the parent RadzenToc is already disposed. Remove UseDefaultFiles middleware and fix API Reference link to prevent redirect loops. * Fix RadzenToc scrollspy to match Bootstrap ScrollSpy behavior. Remove fallback that always highlighted the first item on load. Require actual scroll (scrollY > 0) before activating the at-bottom branch so short pages don't highlight the last item. Add click handler to RadzenTocItem so clicking an item activates it immediately (matching the DocFX affix click behavior). * Fix misaligned code examples in generated API documentation XML doc comment code blocks retained source-level indentation after parsing, causing excessive leading whitespace in rendered examples. Replace simple .Trim() with indentation normalization that strips the common leading whitespace prefix from all lines. * Update ApiLayout and MainTopNav * Fixed .Server project Cannot provide a value for property 'AssemblyLoader' on type 'RadzenBlazorDemos.Routes'. * Scatter and Bubble series added to Chart * LinearGauge added * Popup cut off on rightmost columns and flickers Fix #2414, #2181 * CheckBoxList filter options update without clicking Apply Fix #2155 * tests updated * DataGrid Reload() lags one render behind Fix #2214 * Gaps in Data for Charts Fix #765 * DataGrid Fixed Column resizing will show visual white space between fixed columns Fix #2228 * Setting Parameter on RadzenDataGridColumn<T> does not always trigger render of content Fix #2215 * DataGrid column resizing does not work on mobile and tablet devices Fix #2168 * RadzenAccordion invalid ARIA aatributes Fix #1931 * DropDownDataGrid search text clear button added Fix #1555 * Caruosel AnimationDuration added Fix #2438 * Tooltip ARIA attributes improved Fix #2314 * Long tooltip does not wrap Fix #2320 * Clicking into Padding of PanelMenuItem does navigate but not expand Item Fix #2244 * RadzenDatePicker FocusedDate synced with current date Fix #1991 * Dialog OnSideClose gets called when opening and closing Fix #1976 * RadzenNumeric RemoveNonNumericCharacters improved Fix #1937 * Optimize CSS rules and SCSS mixins * Fix percentage values in SCSS * Update premium themes * Line Chart markers cannot be dynamically turned off using @if Fix #1229 * DropDownDataGrid exception when changing data object Fix #1941 * RadzenChat new messages button added Fix #2375 * RadzenHtmlEditor Immediate property added Fix #2279 * Radzen Popup shows wrongly in a RTL Fix #2271 * RadzenListBox/RadzenPickList EmptyTemplate and EmptyText added Fix #2018 * DataGrid footer and header is being incorrectly rendered for frozen columns Fix #1402 * PropertyAccess.GetValue() fixed to work with sub interfaces Fix #1249 * RadzenPickList AllowVirtualization added Fix #2456 * DataGrid add new row issue with LoadData method Fix #365 * Various components keyboard navigation not working as described in the demos Fix #2446 * RadzenDataGrid Keyboard Selection jumps when AllowVirtualization is enabled Fix #2439 * RadzenPanelMenu MenuItemDisplayStyle.IconAndTextStacked added Fix #2368 * RadzenPickList SelectedSourceChanged/SelectedTargetChanged added Fix #2324 * RadzenTabs AllowReorder property added Fix #2318 * RadzenAccordion ExpandAll()/CollapseAll() added Fix #2206 * RadzenDropZoneContainer Start/End Drag events added Fix #2158 * RadzenDataGrid doesn't appear to do colspan/rowspan properly Fix #1064 * Update Gantt styles * Update Gantt styles and premium themes * Update Gantt styles * Update Gantt demos * Update Linear Gauge demos * Update component icons * tests fixed --------- Co-authored-by: Atanas Korchev <akorchev@gmail.com> Co-authored-by: yordanov <vasil@yordanov.info>
2026-03-11 16:13:33 +02:00
{BC20637F-A979-425A-9C3F-D72633FE555C}.Debug|x64.ActiveCfg = Debug|Any CPU
{BC20637F-A979-425A-9C3F-D72633FE555C}.Debug|x64.Build.0 = Debug|Any CPU
{BC20637F-A979-425A-9C3F-D72633FE555C}.Debug|x86.ActiveCfg = Debug|Any CPU
{BC20637F-A979-425A-9C3F-D72633FE555C}.Debug|x86.Build.0 = Debug|Any CPU
2021-11-01 11:05:41 +02:00
{BC20637F-A979-425A-9C3F-D72633FE555C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BC20637F-A979-425A-9C3F-D72633FE555C}.Release|Any CPU.Build.0 = Release|Any CPU
v10 (#2471) * Chip and ChipList components added Code improved demos improved Update Chip styles Exctract mixins for button, badge and chip styles Update Chip demos Update Chip styles in themes Fix chip styles in dropdowns Fix icon position in different chip sizes Fix chip border-radius Optimize styles Update Chip icon Update premium themes Chip/ChipList keyboard navigation fixed Invalid code fixed Update Chip focus styles * Gantt added code improved demo update with more data more demo improvements more improvements rendering updated Gantt Splitter ChangeStateOnResize set to false Gantt connecting lines added Tooltips added FIltering demo added Gantt editing demos added demo updated scrollbar improved Gantt ExpandRows() added thead height made equal material fixed filtering improved Subtitle2 removed Gantt drag & resize added Critical Path, Dependency Types and Baselines added Today Line, Non-Working Days, TaskRender Callback, Vertical Date Markers and Custom Task Bar Template added Zoom to fit and multiline headers added Rendering optimized Grouped header should be static Invalidate row count on expand/collapse and filter progress, critical path, red vertical line and baseline styling improved frozen columns in demos should have Width set alignment improved Auto scroll to events when switching between views Dependency Data added * Move scheduler month view "more" button to slot header The "+X more" button was absolutely positioned inside the events area, occupying space that could hold an additional appointment. Move it inline into the slot title header next to the day number so it no longer consumes an event slot. - Fix operator precedence bug in MaxAppointmentsInSlot auto-calculation - Style the button end-aligned in the header using flex + margin-inline-start: auto - Add demo appointments to trigger the "more" button in the default demo * Use ResizeObserver to measure month view content height Replace the hardcoded (Height - 60) / 6 calculation with actual measurements from a ResizeObserver on the view content element. This fixes appointment overflow at non-default scheduler heights (e.g. 500px) where the 60px header estimate was inaccurate (~91px actual). The MonthView now uses the existing createResizable JS pattern to observe its own content area and dynamically computes the correct MaxAppointmentsInSlot from the measured height and actual week count. * Replace createScheduler with createResizable for ResizeObserver support The scheduler-specific JS functions only used window resize events. Switch to the shared createResizable/destroyResizable pattern which uses ResizeObserver with a window resize fallback, consistent with charts and gauges. * Replace DocFX with Blazor class library for API reference generation Add Radzen.Blazor.Api and Radzen.Blazor.Api.Generator projects that generate .razor pages from Radzen.Blazor assembly metadata at build time. Pages are generated conditionally (Release builds or -p:GenerateApiPages=true). The API assembly is lazy-loaded to avoid initial payload penalty. Old .html URLs are preserved via 301 redirects in CanonicalRedirectMiddleware. * Improve API reference navigation and member anchors - Add anchor links to member headings via RadzenText Anchor parameter - Fix inherited member links to navigate to the specific member, not just the declaring type - Add nav panel that expands/selects the current type on navigation - Fix RadzenBody to scroll to fragment target instead of resetting to top * Stop RadzenToc from updating URL hash on scroll and fix scroll container - Remove navigateTo call from scroll handler so URL hash is not overwritten - Set TOC Selector to .rz-body so it monitors the correct scrollable container * Align API layout header with MainLayout * Refactor RadzenToc scroll listener disposal and item link updates. Return a disposable JS listener handle instead of storing expando handlers on elements, and move TOC item href refresh to NavigationManager location-change handling so links stay in sync with path/query changes. * Add v10 RadzenToc changelog notes. Document the RadzenToc breaking changes around link rendering, aria-selected semantics, and address bar behavior during scrolling, plus the high-level scroll tracking update. * Fix RadzenToc NullReferenceException during concurrent disposal and API reference redirect loop. Capture scrollListenerRef in a local variable before disposing to prevent a race condition when multiple RadzenTocItem components dispose concurrently. Skip scroll listener re-registration when the parent RadzenToc is already disposed. Remove UseDefaultFiles middleware and fix API Reference link to prevent redirect loops. * Fix RadzenToc scrollspy to match Bootstrap ScrollSpy behavior. Remove fallback that always highlighted the first item on load. Require actual scroll (scrollY > 0) before activating the at-bottom branch so short pages don't highlight the last item. Add click handler to RadzenTocItem so clicking an item activates it immediately (matching the DocFX affix click behavior). * Fix misaligned code examples in generated API documentation XML doc comment code blocks retained source-level indentation after parsing, causing excessive leading whitespace in rendered examples. Replace simple .Trim() with indentation normalization that strips the common leading whitespace prefix from all lines. * Update ApiLayout and MainTopNav * Fixed .Server project Cannot provide a value for property 'AssemblyLoader' on type 'RadzenBlazorDemos.Routes'. * Scatter and Bubble series added to Chart * LinearGauge added * Popup cut off on rightmost columns and flickers Fix #2414, #2181 * CheckBoxList filter options update without clicking Apply Fix #2155 * tests updated * DataGrid Reload() lags one render behind Fix #2214 * Gaps in Data for Charts Fix #765 * DataGrid Fixed Column resizing will show visual white space between fixed columns Fix #2228 * Setting Parameter on RadzenDataGridColumn<T> does not always trigger render of content Fix #2215 * DataGrid column resizing does not work on mobile and tablet devices Fix #2168 * RadzenAccordion invalid ARIA aatributes Fix #1931 * DropDownDataGrid search text clear button added Fix #1555 * Caruosel AnimationDuration added Fix #2438 * Tooltip ARIA attributes improved Fix #2314 * Long tooltip does not wrap Fix #2320 * Clicking into Padding of PanelMenuItem does navigate but not expand Item Fix #2244 * RadzenDatePicker FocusedDate synced with current date Fix #1991 * Dialog OnSideClose gets called when opening and closing Fix #1976 * RadzenNumeric RemoveNonNumericCharacters improved Fix #1937 * Optimize CSS rules and SCSS mixins * Fix percentage values in SCSS * Update premium themes * Line Chart markers cannot be dynamically turned off using @if Fix #1229 * DropDownDataGrid exception when changing data object Fix #1941 * RadzenChat new messages button added Fix #2375 * RadzenHtmlEditor Immediate property added Fix #2279 * Radzen Popup shows wrongly in a RTL Fix #2271 * RadzenListBox/RadzenPickList EmptyTemplate and EmptyText added Fix #2018 * DataGrid footer and header is being incorrectly rendered for frozen columns Fix #1402 * PropertyAccess.GetValue() fixed to work with sub interfaces Fix #1249 * RadzenPickList AllowVirtualization added Fix #2456 * DataGrid add new row issue with LoadData method Fix #365 * Various components keyboard navigation not working as described in the demos Fix #2446 * RadzenDataGrid Keyboard Selection jumps when AllowVirtualization is enabled Fix #2439 * RadzenPanelMenu MenuItemDisplayStyle.IconAndTextStacked added Fix #2368 * RadzenPickList SelectedSourceChanged/SelectedTargetChanged added Fix #2324 * RadzenTabs AllowReorder property added Fix #2318 * RadzenAccordion ExpandAll()/CollapseAll() added Fix #2206 * RadzenDropZoneContainer Start/End Drag events added Fix #2158 * RadzenDataGrid doesn't appear to do colspan/rowspan properly Fix #1064 * Update Gantt styles * Update Gantt styles and premium themes * Update Gantt styles * Update Gantt demos * Update Linear Gauge demos * Update component icons * tests fixed --------- Co-authored-by: Atanas Korchev <akorchev@gmail.com> Co-authored-by: yordanov <vasil@yordanov.info>
2026-03-11 16:13:33 +02:00
{BC20637F-A979-425A-9C3F-D72633FE555C}.Release|x64.ActiveCfg = Release|Any CPU
{BC20637F-A979-425A-9C3F-D72633FE555C}.Release|x64.Build.0 = Release|Any CPU
{BC20637F-A979-425A-9C3F-D72633FE555C}.Release|x86.ActiveCfg = Release|Any CPU
{BC20637F-A979-425A-9C3F-D72633FE555C}.Release|x86.Build.0 = Release|Any CPU
WebAssembly version of demos added (#704) * Demos as WASM * Copy the default wasm loading CSS. * InMemory database instead SQLite * DbContext filled with data * Host project added * Server renamed to Host * Remove location.reload. * Remove startup. * Stop github caching to file. Use larger page size to improve load time. * Display enum values. * DbContext with static data * Host DbContex added * Examples and Sitemap added * docker updated * Theme changing. * Update Dockerfile * Set WORKDIR. * Do not throw errors for duplicate assets. * Do not inherit Index from DbContextPage * Documentation works again. * Sqlite removed from host * DataGrid Save/Load settings fixed * Demo source fixed * Add loading. * Add loading image * Hide the loading with JS interop. * Add the loading globally. * Add server demos. * Delete data files. * Remove the db copy code from Dockerfile. * DbContext seed fixed * missing await added * Separate solutions for all project, Blazor server and Blazor WebAssembly added * tree demos data access fixed * Avoid using Last() and First() * Orders and OrderDetails data made smaller * Update loading animation * Move the loading to MainLayout. * Update loading animation speed * Seed() improved * Revert "Move the loading to MainLayout." This reverts commit f43ce050396b9483e8809af35493eb35531f254c. * Fix homepage bg color with dark theme * Revert "Revert "Move the loading to MainLayout."" This reverts commit faee40d4ad92f474577434c61f31d847e6777a53. Co-authored-by: Atanas Korchev <akorchev@gmail.com> Co-authored-by: yordanov <vasil@yordanov.info>
2022-11-14 13:14:47 +02:00
{18702B3F-791E-45F3-BCFD-1792A1300AAB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{18702B3F-791E-45F3-BCFD-1792A1300AAB}.Debug|Any CPU.Build.0 = Debug|Any CPU
v10 (#2471) * Chip and ChipList components added Code improved demos improved Update Chip styles Exctract mixins for button, badge and chip styles Update Chip demos Update Chip styles in themes Fix chip styles in dropdowns Fix icon position in different chip sizes Fix chip border-radius Optimize styles Update Chip icon Update premium themes Chip/ChipList keyboard navigation fixed Invalid code fixed Update Chip focus styles * Gantt added code improved demo update with more data more demo improvements more improvements rendering updated Gantt Splitter ChangeStateOnResize set to false Gantt connecting lines added Tooltips added FIltering demo added Gantt editing demos added demo updated scrollbar improved Gantt ExpandRows() added thead height made equal material fixed filtering improved Subtitle2 removed Gantt drag & resize added Critical Path, Dependency Types and Baselines added Today Line, Non-Working Days, TaskRender Callback, Vertical Date Markers and Custom Task Bar Template added Zoom to fit and multiline headers added Rendering optimized Grouped header should be static Invalidate row count on expand/collapse and filter progress, critical path, red vertical line and baseline styling improved frozen columns in demos should have Width set alignment improved Auto scroll to events when switching between views Dependency Data added * Move scheduler month view "more" button to slot header The "+X more" button was absolutely positioned inside the events area, occupying space that could hold an additional appointment. Move it inline into the slot title header next to the day number so it no longer consumes an event slot. - Fix operator precedence bug in MaxAppointmentsInSlot auto-calculation - Style the button end-aligned in the header using flex + margin-inline-start: auto - Add demo appointments to trigger the "more" button in the default demo * Use ResizeObserver to measure month view content height Replace the hardcoded (Height - 60) / 6 calculation with actual measurements from a ResizeObserver on the view content element. This fixes appointment overflow at non-default scheduler heights (e.g. 500px) where the 60px header estimate was inaccurate (~91px actual). The MonthView now uses the existing createResizable JS pattern to observe its own content area and dynamically computes the correct MaxAppointmentsInSlot from the measured height and actual week count. * Replace createScheduler with createResizable for ResizeObserver support The scheduler-specific JS functions only used window resize events. Switch to the shared createResizable/destroyResizable pattern which uses ResizeObserver with a window resize fallback, consistent with charts and gauges. * Replace DocFX with Blazor class library for API reference generation Add Radzen.Blazor.Api and Radzen.Blazor.Api.Generator projects that generate .razor pages from Radzen.Blazor assembly metadata at build time. Pages are generated conditionally (Release builds or -p:GenerateApiPages=true). The API assembly is lazy-loaded to avoid initial payload penalty. Old .html URLs are preserved via 301 redirects in CanonicalRedirectMiddleware. * Improve API reference navigation and member anchors - Add anchor links to member headings via RadzenText Anchor parameter - Fix inherited member links to navigate to the specific member, not just the declaring type - Add nav panel that expands/selects the current type on navigation - Fix RadzenBody to scroll to fragment target instead of resetting to top * Stop RadzenToc from updating URL hash on scroll and fix scroll container - Remove navigateTo call from scroll handler so URL hash is not overwritten - Set TOC Selector to .rz-body so it monitors the correct scrollable container * Align API layout header with MainLayout * Refactor RadzenToc scroll listener disposal and item link updates. Return a disposable JS listener handle instead of storing expando handlers on elements, and move TOC item href refresh to NavigationManager location-change handling so links stay in sync with path/query changes. * Add v10 RadzenToc changelog notes. Document the RadzenToc breaking changes around link rendering, aria-selected semantics, and address bar behavior during scrolling, plus the high-level scroll tracking update. * Fix RadzenToc NullReferenceException during concurrent disposal and API reference redirect loop. Capture scrollListenerRef in a local variable before disposing to prevent a race condition when multiple RadzenTocItem components dispose concurrently. Skip scroll listener re-registration when the parent RadzenToc is already disposed. Remove UseDefaultFiles middleware and fix API Reference link to prevent redirect loops. * Fix RadzenToc scrollspy to match Bootstrap ScrollSpy behavior. Remove fallback that always highlighted the first item on load. Require actual scroll (scrollY > 0) before activating the at-bottom branch so short pages don't highlight the last item. Add click handler to RadzenTocItem so clicking an item activates it immediately (matching the DocFX affix click behavior). * Fix misaligned code examples in generated API documentation XML doc comment code blocks retained source-level indentation after parsing, causing excessive leading whitespace in rendered examples. Replace simple .Trim() with indentation normalization that strips the common leading whitespace prefix from all lines. * Update ApiLayout and MainTopNav * Fixed .Server project Cannot provide a value for property 'AssemblyLoader' on type 'RadzenBlazorDemos.Routes'. * Scatter and Bubble series added to Chart * LinearGauge added * Popup cut off on rightmost columns and flickers Fix #2414, #2181 * CheckBoxList filter options update without clicking Apply Fix #2155 * tests updated * DataGrid Reload() lags one render behind Fix #2214 * Gaps in Data for Charts Fix #765 * DataGrid Fixed Column resizing will show visual white space between fixed columns Fix #2228 * Setting Parameter on RadzenDataGridColumn<T> does not always trigger render of content Fix #2215 * DataGrid column resizing does not work on mobile and tablet devices Fix #2168 * RadzenAccordion invalid ARIA aatributes Fix #1931 * DropDownDataGrid search text clear button added Fix #1555 * Caruosel AnimationDuration added Fix #2438 * Tooltip ARIA attributes improved Fix #2314 * Long tooltip does not wrap Fix #2320 * Clicking into Padding of PanelMenuItem does navigate but not expand Item Fix #2244 * RadzenDatePicker FocusedDate synced with current date Fix #1991 * Dialog OnSideClose gets called when opening and closing Fix #1976 * RadzenNumeric RemoveNonNumericCharacters improved Fix #1937 * Optimize CSS rules and SCSS mixins * Fix percentage values in SCSS * Update premium themes * Line Chart markers cannot be dynamically turned off using @if Fix #1229 * DropDownDataGrid exception when changing data object Fix #1941 * RadzenChat new messages button added Fix #2375 * RadzenHtmlEditor Immediate property added Fix #2279 * Radzen Popup shows wrongly in a RTL Fix #2271 * RadzenListBox/RadzenPickList EmptyTemplate and EmptyText added Fix #2018 * DataGrid footer and header is being incorrectly rendered for frozen columns Fix #1402 * PropertyAccess.GetValue() fixed to work with sub interfaces Fix #1249 * RadzenPickList AllowVirtualization added Fix #2456 * DataGrid add new row issue with LoadData method Fix #365 * Various components keyboard navigation not working as described in the demos Fix #2446 * RadzenDataGrid Keyboard Selection jumps when AllowVirtualization is enabled Fix #2439 * RadzenPanelMenu MenuItemDisplayStyle.IconAndTextStacked added Fix #2368 * RadzenPickList SelectedSourceChanged/SelectedTargetChanged added Fix #2324 * RadzenTabs AllowReorder property added Fix #2318 * RadzenAccordion ExpandAll()/CollapseAll() added Fix #2206 * RadzenDropZoneContainer Start/End Drag events added Fix #2158 * RadzenDataGrid doesn't appear to do colspan/rowspan properly Fix #1064 * Update Gantt styles * Update Gantt styles and premium themes * Update Gantt styles * Update Gantt demos * Update Linear Gauge demos * Update component icons * tests fixed --------- Co-authored-by: Atanas Korchev <akorchev@gmail.com> Co-authored-by: yordanov <vasil@yordanov.info>
2026-03-11 16:13:33 +02:00
{18702B3F-791E-45F3-BCFD-1792A1300AAB}.Debug|x64.ActiveCfg = Debug|Any CPU
{18702B3F-791E-45F3-BCFD-1792A1300AAB}.Debug|x64.Build.0 = Debug|Any CPU
{18702B3F-791E-45F3-BCFD-1792A1300AAB}.Debug|x86.ActiveCfg = Debug|Any CPU
{18702B3F-791E-45F3-BCFD-1792A1300AAB}.Debug|x86.Build.0 = Debug|Any CPU
WebAssembly version of demos added (#704) * Demos as WASM * Copy the default wasm loading CSS. * InMemory database instead SQLite * DbContext filled with data * Host project added * Server renamed to Host * Remove location.reload. * Remove startup. * Stop github caching to file. Use larger page size to improve load time. * Display enum values. * DbContext with static data * Host DbContex added * Examples and Sitemap added * docker updated * Theme changing. * Update Dockerfile * Set WORKDIR. * Do not throw errors for duplicate assets. * Do not inherit Index from DbContextPage * Documentation works again. * Sqlite removed from host * DataGrid Save/Load settings fixed * Demo source fixed * Add loading. * Add loading image * Hide the loading with JS interop. * Add the loading globally. * Add server demos. * Delete data files. * Remove the db copy code from Dockerfile. * DbContext seed fixed * missing await added * Separate solutions for all project, Blazor server and Blazor WebAssembly added * tree demos data access fixed * Avoid using Last() and First() * Orders and OrderDetails data made smaller * Update loading animation * Move the loading to MainLayout. * Update loading animation speed * Seed() improved * Revert "Move the loading to MainLayout." This reverts commit f43ce050396b9483e8809af35493eb35531f254c. * Fix homepage bg color with dark theme * Revert "Revert "Move the loading to MainLayout."" This reverts commit faee40d4ad92f474577434c61f31d847e6777a53. Co-authored-by: Atanas Korchev <akorchev@gmail.com> Co-authored-by: yordanov <vasil@yordanov.info>
2022-11-14 13:14:47 +02:00
{18702B3F-791E-45F3-BCFD-1792A1300AAB}.Release|Any CPU.ActiveCfg = Release|Any CPU
{18702B3F-791E-45F3-BCFD-1792A1300AAB}.Release|Any CPU.Build.0 = Release|Any CPU
v10 (#2471) * Chip and ChipList components added Code improved demos improved Update Chip styles Exctract mixins for button, badge and chip styles Update Chip demos Update Chip styles in themes Fix chip styles in dropdowns Fix icon position in different chip sizes Fix chip border-radius Optimize styles Update Chip icon Update premium themes Chip/ChipList keyboard navigation fixed Invalid code fixed Update Chip focus styles * Gantt added code improved demo update with more data more demo improvements more improvements rendering updated Gantt Splitter ChangeStateOnResize set to false Gantt connecting lines added Tooltips added FIltering demo added Gantt editing demos added demo updated scrollbar improved Gantt ExpandRows() added thead height made equal material fixed filtering improved Subtitle2 removed Gantt drag & resize added Critical Path, Dependency Types and Baselines added Today Line, Non-Working Days, TaskRender Callback, Vertical Date Markers and Custom Task Bar Template added Zoom to fit and multiline headers added Rendering optimized Grouped header should be static Invalidate row count on expand/collapse and filter progress, critical path, red vertical line and baseline styling improved frozen columns in demos should have Width set alignment improved Auto scroll to events when switching between views Dependency Data added * Move scheduler month view "more" button to slot header The "+X more" button was absolutely positioned inside the events area, occupying space that could hold an additional appointment. Move it inline into the slot title header next to the day number so it no longer consumes an event slot. - Fix operator precedence bug in MaxAppointmentsInSlot auto-calculation - Style the button end-aligned in the header using flex + margin-inline-start: auto - Add demo appointments to trigger the "more" button in the default demo * Use ResizeObserver to measure month view content height Replace the hardcoded (Height - 60) / 6 calculation with actual measurements from a ResizeObserver on the view content element. This fixes appointment overflow at non-default scheduler heights (e.g. 500px) where the 60px header estimate was inaccurate (~91px actual). The MonthView now uses the existing createResizable JS pattern to observe its own content area and dynamically computes the correct MaxAppointmentsInSlot from the measured height and actual week count. * Replace createScheduler with createResizable for ResizeObserver support The scheduler-specific JS functions only used window resize events. Switch to the shared createResizable/destroyResizable pattern which uses ResizeObserver with a window resize fallback, consistent with charts and gauges. * Replace DocFX with Blazor class library for API reference generation Add Radzen.Blazor.Api and Radzen.Blazor.Api.Generator projects that generate .razor pages from Radzen.Blazor assembly metadata at build time. Pages are generated conditionally (Release builds or -p:GenerateApiPages=true). The API assembly is lazy-loaded to avoid initial payload penalty. Old .html URLs are preserved via 301 redirects in CanonicalRedirectMiddleware. * Improve API reference navigation and member anchors - Add anchor links to member headings via RadzenText Anchor parameter - Fix inherited member links to navigate to the specific member, not just the declaring type - Add nav panel that expands/selects the current type on navigation - Fix RadzenBody to scroll to fragment target instead of resetting to top * Stop RadzenToc from updating URL hash on scroll and fix scroll container - Remove navigateTo call from scroll handler so URL hash is not overwritten - Set TOC Selector to .rz-body so it monitors the correct scrollable container * Align API layout header with MainLayout * Refactor RadzenToc scroll listener disposal and item link updates. Return a disposable JS listener handle instead of storing expando handlers on elements, and move TOC item href refresh to NavigationManager location-change handling so links stay in sync with path/query changes. * Add v10 RadzenToc changelog notes. Document the RadzenToc breaking changes around link rendering, aria-selected semantics, and address bar behavior during scrolling, plus the high-level scroll tracking update. * Fix RadzenToc NullReferenceException during concurrent disposal and API reference redirect loop. Capture scrollListenerRef in a local variable before disposing to prevent a race condition when multiple RadzenTocItem components dispose concurrently. Skip scroll listener re-registration when the parent RadzenToc is already disposed. Remove UseDefaultFiles middleware and fix API Reference link to prevent redirect loops. * Fix RadzenToc scrollspy to match Bootstrap ScrollSpy behavior. Remove fallback that always highlighted the first item on load. Require actual scroll (scrollY > 0) before activating the at-bottom branch so short pages don't highlight the last item. Add click handler to RadzenTocItem so clicking an item activates it immediately (matching the DocFX affix click behavior). * Fix misaligned code examples in generated API documentation XML doc comment code blocks retained source-level indentation after parsing, causing excessive leading whitespace in rendered examples. Replace simple .Trim() with indentation normalization that strips the common leading whitespace prefix from all lines. * Update ApiLayout and MainTopNav * Fixed .Server project Cannot provide a value for property 'AssemblyLoader' on type 'RadzenBlazorDemos.Routes'. * Scatter and Bubble series added to Chart * LinearGauge added * Popup cut off on rightmost columns and flickers Fix #2414, #2181 * CheckBoxList filter options update without clicking Apply Fix #2155 * tests updated * DataGrid Reload() lags one render behind Fix #2214 * Gaps in Data for Charts Fix #765 * DataGrid Fixed Column resizing will show visual white space between fixed columns Fix #2228 * Setting Parameter on RadzenDataGridColumn<T> does not always trigger render of content Fix #2215 * DataGrid column resizing does not work on mobile and tablet devices Fix #2168 * RadzenAccordion invalid ARIA aatributes Fix #1931 * DropDownDataGrid search text clear button added Fix #1555 * Caruosel AnimationDuration added Fix #2438 * Tooltip ARIA attributes improved Fix #2314 * Long tooltip does not wrap Fix #2320 * Clicking into Padding of PanelMenuItem does navigate but not expand Item Fix #2244 * RadzenDatePicker FocusedDate synced with current date Fix #1991 * Dialog OnSideClose gets called when opening and closing Fix #1976 * RadzenNumeric RemoveNonNumericCharacters improved Fix #1937 * Optimize CSS rules and SCSS mixins * Fix percentage values in SCSS * Update premium themes * Line Chart markers cannot be dynamically turned off using @if Fix #1229 * DropDownDataGrid exception when changing data object Fix #1941 * RadzenChat new messages button added Fix #2375 * RadzenHtmlEditor Immediate property added Fix #2279 * Radzen Popup shows wrongly in a RTL Fix #2271 * RadzenListBox/RadzenPickList EmptyTemplate and EmptyText added Fix #2018 * DataGrid footer and header is being incorrectly rendered for frozen columns Fix #1402 * PropertyAccess.GetValue() fixed to work with sub interfaces Fix #1249 * RadzenPickList AllowVirtualization added Fix #2456 * DataGrid add new row issue with LoadData method Fix #365 * Various components keyboard navigation not working as described in the demos Fix #2446 * RadzenDataGrid Keyboard Selection jumps when AllowVirtualization is enabled Fix #2439 * RadzenPanelMenu MenuItemDisplayStyle.IconAndTextStacked added Fix #2368 * RadzenPickList SelectedSourceChanged/SelectedTargetChanged added Fix #2324 * RadzenTabs AllowReorder property added Fix #2318 * RadzenAccordion ExpandAll()/CollapseAll() added Fix #2206 * RadzenDropZoneContainer Start/End Drag events added Fix #2158 * RadzenDataGrid doesn't appear to do colspan/rowspan properly Fix #1064 * Update Gantt styles * Update Gantt styles and premium themes * Update Gantt styles * Update Gantt demos * Update Linear Gauge demos * Update component icons * tests fixed --------- Co-authored-by: Atanas Korchev <akorchev@gmail.com> Co-authored-by: yordanov <vasil@yordanov.info>
2026-03-11 16:13:33 +02:00
{18702B3F-791E-45F3-BCFD-1792A1300AAB}.Release|x64.ActiveCfg = Release|Any CPU
{18702B3F-791E-45F3-BCFD-1792A1300AAB}.Release|x64.Build.0 = Release|Any CPU
{18702B3F-791E-45F3-BCFD-1792A1300AAB}.Release|x86.ActiveCfg = Release|Any CPU
{18702B3F-791E-45F3-BCFD-1792A1300AAB}.Release|x86.Build.0 = Release|Any CPU
WebAssembly version of demos added (#704) * Demos as WASM * Copy the default wasm loading CSS. * InMemory database instead SQLite * DbContext filled with data * Host project added * Server renamed to Host * Remove location.reload. * Remove startup. * Stop github caching to file. Use larger page size to improve load time. * Display enum values. * DbContext with static data * Host DbContex added * Examples and Sitemap added * docker updated * Theme changing. * Update Dockerfile * Set WORKDIR. * Do not throw errors for duplicate assets. * Do not inherit Index from DbContextPage * Documentation works again. * Sqlite removed from host * DataGrid Save/Load settings fixed * Demo source fixed * Add loading. * Add loading image * Hide the loading with JS interop. * Add the loading globally. * Add server demos. * Delete data files. * Remove the db copy code from Dockerfile. * DbContext seed fixed * missing await added * Separate solutions for all project, Blazor server and Blazor WebAssembly added * tree demos data access fixed * Avoid using Last() and First() * Orders and OrderDetails data made smaller * Update loading animation * Move the loading to MainLayout. * Update loading animation speed * Seed() improved * Revert "Move the loading to MainLayout." This reverts commit f43ce050396b9483e8809af35493eb35531f254c. * Fix homepage bg color with dark theme * Revert "Revert "Move the loading to MainLayout."" This reverts commit faee40d4ad92f474577434c61f31d847e6777a53. Co-authored-by: Atanas Korchev <akorchev@gmail.com> Co-authored-by: yordanov <vasil@yordanov.info>
2022-11-14 13:14:47 +02:00
{EC869401-304A-45BC-93CA-C1CDFAAA7F7B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{EC869401-304A-45BC-93CA-C1CDFAAA7F7B}.Debug|Any CPU.Build.0 = Debug|Any CPU
v10 (#2471) * Chip and ChipList components added Code improved demos improved Update Chip styles Exctract mixins for button, badge and chip styles Update Chip demos Update Chip styles in themes Fix chip styles in dropdowns Fix icon position in different chip sizes Fix chip border-radius Optimize styles Update Chip icon Update premium themes Chip/ChipList keyboard navigation fixed Invalid code fixed Update Chip focus styles * Gantt added code improved demo update with more data more demo improvements more improvements rendering updated Gantt Splitter ChangeStateOnResize set to false Gantt connecting lines added Tooltips added FIltering demo added Gantt editing demos added demo updated scrollbar improved Gantt ExpandRows() added thead height made equal material fixed filtering improved Subtitle2 removed Gantt drag & resize added Critical Path, Dependency Types and Baselines added Today Line, Non-Working Days, TaskRender Callback, Vertical Date Markers and Custom Task Bar Template added Zoom to fit and multiline headers added Rendering optimized Grouped header should be static Invalidate row count on expand/collapse and filter progress, critical path, red vertical line and baseline styling improved frozen columns in demos should have Width set alignment improved Auto scroll to events when switching between views Dependency Data added * Move scheduler month view "more" button to slot header The "+X more" button was absolutely positioned inside the events area, occupying space that could hold an additional appointment. Move it inline into the slot title header next to the day number so it no longer consumes an event slot. - Fix operator precedence bug in MaxAppointmentsInSlot auto-calculation - Style the button end-aligned in the header using flex + margin-inline-start: auto - Add demo appointments to trigger the "more" button in the default demo * Use ResizeObserver to measure month view content height Replace the hardcoded (Height - 60) / 6 calculation with actual measurements from a ResizeObserver on the view content element. This fixes appointment overflow at non-default scheduler heights (e.g. 500px) where the 60px header estimate was inaccurate (~91px actual). The MonthView now uses the existing createResizable JS pattern to observe its own content area and dynamically computes the correct MaxAppointmentsInSlot from the measured height and actual week count. * Replace createScheduler with createResizable for ResizeObserver support The scheduler-specific JS functions only used window resize events. Switch to the shared createResizable/destroyResizable pattern which uses ResizeObserver with a window resize fallback, consistent with charts and gauges. * Replace DocFX with Blazor class library for API reference generation Add Radzen.Blazor.Api and Radzen.Blazor.Api.Generator projects that generate .razor pages from Radzen.Blazor assembly metadata at build time. Pages are generated conditionally (Release builds or -p:GenerateApiPages=true). The API assembly is lazy-loaded to avoid initial payload penalty. Old .html URLs are preserved via 301 redirects in CanonicalRedirectMiddleware. * Improve API reference navigation and member anchors - Add anchor links to member headings via RadzenText Anchor parameter - Fix inherited member links to navigate to the specific member, not just the declaring type - Add nav panel that expands/selects the current type on navigation - Fix RadzenBody to scroll to fragment target instead of resetting to top * Stop RadzenToc from updating URL hash on scroll and fix scroll container - Remove navigateTo call from scroll handler so URL hash is not overwritten - Set TOC Selector to .rz-body so it monitors the correct scrollable container * Align API layout header with MainLayout * Refactor RadzenToc scroll listener disposal and item link updates. Return a disposable JS listener handle instead of storing expando handlers on elements, and move TOC item href refresh to NavigationManager location-change handling so links stay in sync with path/query changes. * Add v10 RadzenToc changelog notes. Document the RadzenToc breaking changes around link rendering, aria-selected semantics, and address bar behavior during scrolling, plus the high-level scroll tracking update. * Fix RadzenToc NullReferenceException during concurrent disposal and API reference redirect loop. Capture scrollListenerRef in a local variable before disposing to prevent a race condition when multiple RadzenTocItem components dispose concurrently. Skip scroll listener re-registration when the parent RadzenToc is already disposed. Remove UseDefaultFiles middleware and fix API Reference link to prevent redirect loops. * Fix RadzenToc scrollspy to match Bootstrap ScrollSpy behavior. Remove fallback that always highlighted the first item on load. Require actual scroll (scrollY > 0) before activating the at-bottom branch so short pages don't highlight the last item. Add click handler to RadzenTocItem so clicking an item activates it immediately (matching the DocFX affix click behavior). * Fix misaligned code examples in generated API documentation XML doc comment code blocks retained source-level indentation after parsing, causing excessive leading whitespace in rendered examples. Replace simple .Trim() with indentation normalization that strips the common leading whitespace prefix from all lines. * Update ApiLayout and MainTopNav * Fixed .Server project Cannot provide a value for property 'AssemblyLoader' on type 'RadzenBlazorDemos.Routes'. * Scatter and Bubble series added to Chart * LinearGauge added * Popup cut off on rightmost columns and flickers Fix #2414, #2181 * CheckBoxList filter options update without clicking Apply Fix #2155 * tests updated * DataGrid Reload() lags one render behind Fix #2214 * Gaps in Data for Charts Fix #765 * DataGrid Fixed Column resizing will show visual white space between fixed columns Fix #2228 * Setting Parameter on RadzenDataGridColumn<T> does not always trigger render of content Fix #2215 * DataGrid column resizing does not work on mobile and tablet devices Fix #2168 * RadzenAccordion invalid ARIA aatributes Fix #1931 * DropDownDataGrid search text clear button added Fix #1555 * Caruosel AnimationDuration added Fix #2438 * Tooltip ARIA attributes improved Fix #2314 * Long tooltip does not wrap Fix #2320 * Clicking into Padding of PanelMenuItem does navigate but not expand Item Fix #2244 * RadzenDatePicker FocusedDate synced with current date Fix #1991 * Dialog OnSideClose gets called when opening and closing Fix #1976 * RadzenNumeric RemoveNonNumericCharacters improved Fix #1937 * Optimize CSS rules and SCSS mixins * Fix percentage values in SCSS * Update premium themes * Line Chart markers cannot be dynamically turned off using @if Fix #1229 * DropDownDataGrid exception when changing data object Fix #1941 * RadzenChat new messages button added Fix #2375 * RadzenHtmlEditor Immediate property added Fix #2279 * Radzen Popup shows wrongly in a RTL Fix #2271 * RadzenListBox/RadzenPickList EmptyTemplate and EmptyText added Fix #2018 * DataGrid footer and header is being incorrectly rendered for frozen columns Fix #1402 * PropertyAccess.GetValue() fixed to work with sub interfaces Fix #1249 * RadzenPickList AllowVirtualization added Fix #2456 * DataGrid add new row issue with LoadData method Fix #365 * Various components keyboard navigation not working as described in the demos Fix #2446 * RadzenDataGrid Keyboard Selection jumps when AllowVirtualization is enabled Fix #2439 * RadzenPanelMenu MenuItemDisplayStyle.IconAndTextStacked added Fix #2368 * RadzenPickList SelectedSourceChanged/SelectedTargetChanged added Fix #2324 * RadzenTabs AllowReorder property added Fix #2318 * RadzenAccordion ExpandAll()/CollapseAll() added Fix #2206 * RadzenDropZoneContainer Start/End Drag events added Fix #2158 * RadzenDataGrid doesn't appear to do colspan/rowspan properly Fix #1064 * Update Gantt styles * Update Gantt styles and premium themes * Update Gantt styles * Update Gantt demos * Update Linear Gauge demos * Update component icons * tests fixed --------- Co-authored-by: Atanas Korchev <akorchev@gmail.com> Co-authored-by: yordanov <vasil@yordanov.info>
2026-03-11 16:13:33 +02:00
{EC869401-304A-45BC-93CA-C1CDFAAA7F7B}.Debug|x64.ActiveCfg = Debug|Any CPU
{EC869401-304A-45BC-93CA-C1CDFAAA7F7B}.Debug|x64.Build.0 = Debug|Any CPU
{EC869401-304A-45BC-93CA-C1CDFAAA7F7B}.Debug|x86.ActiveCfg = Debug|Any CPU
{EC869401-304A-45BC-93CA-C1CDFAAA7F7B}.Debug|x86.Build.0 = Debug|Any CPU
WebAssembly version of demos added (#704) * Demos as WASM * Copy the default wasm loading CSS. * InMemory database instead SQLite * DbContext filled with data * Host project added * Server renamed to Host * Remove location.reload. * Remove startup. * Stop github caching to file. Use larger page size to improve load time. * Display enum values. * DbContext with static data * Host DbContex added * Examples and Sitemap added * docker updated * Theme changing. * Update Dockerfile * Set WORKDIR. * Do not throw errors for duplicate assets. * Do not inherit Index from DbContextPage * Documentation works again. * Sqlite removed from host * DataGrid Save/Load settings fixed * Demo source fixed * Add loading. * Add loading image * Hide the loading with JS interop. * Add the loading globally. * Add server demos. * Delete data files. * Remove the db copy code from Dockerfile. * DbContext seed fixed * missing await added * Separate solutions for all project, Blazor server and Blazor WebAssembly added * tree demos data access fixed * Avoid using Last() and First() * Orders and OrderDetails data made smaller * Update loading animation * Move the loading to MainLayout. * Update loading animation speed * Seed() improved * Revert "Move the loading to MainLayout." This reverts commit f43ce050396b9483e8809af35493eb35531f254c. * Fix homepage bg color with dark theme * Revert "Revert "Move the loading to MainLayout."" This reverts commit faee40d4ad92f474577434c61f31d847e6777a53. Co-authored-by: Atanas Korchev <akorchev@gmail.com> Co-authored-by: yordanov <vasil@yordanov.info>
2022-11-14 13:14:47 +02:00
{EC869401-304A-45BC-93CA-C1CDFAAA7F7B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{EC869401-304A-45BC-93CA-C1CDFAAA7F7B}.Release|Any CPU.Build.0 = Release|Any CPU
v10 (#2471) * Chip and ChipList components added Code improved demos improved Update Chip styles Exctract mixins for button, badge and chip styles Update Chip demos Update Chip styles in themes Fix chip styles in dropdowns Fix icon position in different chip sizes Fix chip border-radius Optimize styles Update Chip icon Update premium themes Chip/ChipList keyboard navigation fixed Invalid code fixed Update Chip focus styles * Gantt added code improved demo update with more data more demo improvements more improvements rendering updated Gantt Splitter ChangeStateOnResize set to false Gantt connecting lines added Tooltips added FIltering demo added Gantt editing demos added demo updated scrollbar improved Gantt ExpandRows() added thead height made equal material fixed filtering improved Subtitle2 removed Gantt drag & resize added Critical Path, Dependency Types and Baselines added Today Line, Non-Working Days, TaskRender Callback, Vertical Date Markers and Custom Task Bar Template added Zoom to fit and multiline headers added Rendering optimized Grouped header should be static Invalidate row count on expand/collapse and filter progress, critical path, red vertical line and baseline styling improved frozen columns in demos should have Width set alignment improved Auto scroll to events when switching between views Dependency Data added * Move scheduler month view "more" button to slot header The "+X more" button was absolutely positioned inside the events area, occupying space that could hold an additional appointment. Move it inline into the slot title header next to the day number so it no longer consumes an event slot. - Fix operator precedence bug in MaxAppointmentsInSlot auto-calculation - Style the button end-aligned in the header using flex + margin-inline-start: auto - Add demo appointments to trigger the "more" button in the default demo * Use ResizeObserver to measure month view content height Replace the hardcoded (Height - 60) / 6 calculation with actual measurements from a ResizeObserver on the view content element. This fixes appointment overflow at non-default scheduler heights (e.g. 500px) where the 60px header estimate was inaccurate (~91px actual). The MonthView now uses the existing createResizable JS pattern to observe its own content area and dynamically computes the correct MaxAppointmentsInSlot from the measured height and actual week count. * Replace createScheduler with createResizable for ResizeObserver support The scheduler-specific JS functions only used window resize events. Switch to the shared createResizable/destroyResizable pattern which uses ResizeObserver with a window resize fallback, consistent with charts and gauges. * Replace DocFX with Blazor class library for API reference generation Add Radzen.Blazor.Api and Radzen.Blazor.Api.Generator projects that generate .razor pages from Radzen.Blazor assembly metadata at build time. Pages are generated conditionally (Release builds or -p:GenerateApiPages=true). The API assembly is lazy-loaded to avoid initial payload penalty. Old .html URLs are preserved via 301 redirects in CanonicalRedirectMiddleware. * Improve API reference navigation and member anchors - Add anchor links to member headings via RadzenText Anchor parameter - Fix inherited member links to navigate to the specific member, not just the declaring type - Add nav panel that expands/selects the current type on navigation - Fix RadzenBody to scroll to fragment target instead of resetting to top * Stop RadzenToc from updating URL hash on scroll and fix scroll container - Remove navigateTo call from scroll handler so URL hash is not overwritten - Set TOC Selector to .rz-body so it monitors the correct scrollable container * Align API layout header with MainLayout * Refactor RadzenToc scroll listener disposal and item link updates. Return a disposable JS listener handle instead of storing expando handlers on elements, and move TOC item href refresh to NavigationManager location-change handling so links stay in sync with path/query changes. * Add v10 RadzenToc changelog notes. Document the RadzenToc breaking changes around link rendering, aria-selected semantics, and address bar behavior during scrolling, plus the high-level scroll tracking update. * Fix RadzenToc NullReferenceException during concurrent disposal and API reference redirect loop. Capture scrollListenerRef in a local variable before disposing to prevent a race condition when multiple RadzenTocItem components dispose concurrently. Skip scroll listener re-registration when the parent RadzenToc is already disposed. Remove UseDefaultFiles middleware and fix API Reference link to prevent redirect loops. * Fix RadzenToc scrollspy to match Bootstrap ScrollSpy behavior. Remove fallback that always highlighted the first item on load. Require actual scroll (scrollY > 0) before activating the at-bottom branch so short pages don't highlight the last item. Add click handler to RadzenTocItem so clicking an item activates it immediately (matching the DocFX affix click behavior). * Fix misaligned code examples in generated API documentation XML doc comment code blocks retained source-level indentation after parsing, causing excessive leading whitespace in rendered examples. Replace simple .Trim() with indentation normalization that strips the common leading whitespace prefix from all lines. * Update ApiLayout and MainTopNav * Fixed .Server project Cannot provide a value for property 'AssemblyLoader' on type 'RadzenBlazorDemos.Routes'. * Scatter and Bubble series added to Chart * LinearGauge added * Popup cut off on rightmost columns and flickers Fix #2414, #2181 * CheckBoxList filter options update without clicking Apply Fix #2155 * tests updated * DataGrid Reload() lags one render behind Fix #2214 * Gaps in Data for Charts Fix #765 * DataGrid Fixed Column resizing will show visual white space between fixed columns Fix #2228 * Setting Parameter on RadzenDataGridColumn<T> does not always trigger render of content Fix #2215 * DataGrid column resizing does not work on mobile and tablet devices Fix #2168 * RadzenAccordion invalid ARIA aatributes Fix #1931 * DropDownDataGrid search text clear button added Fix #1555 * Caruosel AnimationDuration added Fix #2438 * Tooltip ARIA attributes improved Fix #2314 * Long tooltip does not wrap Fix #2320 * Clicking into Padding of PanelMenuItem does navigate but not expand Item Fix #2244 * RadzenDatePicker FocusedDate synced with current date Fix #1991 * Dialog OnSideClose gets called when opening and closing Fix #1976 * RadzenNumeric RemoveNonNumericCharacters improved Fix #1937 * Optimize CSS rules and SCSS mixins * Fix percentage values in SCSS * Update premium themes * Line Chart markers cannot be dynamically turned off using @if Fix #1229 * DropDownDataGrid exception when changing data object Fix #1941 * RadzenChat new messages button added Fix #2375 * RadzenHtmlEditor Immediate property added Fix #2279 * Radzen Popup shows wrongly in a RTL Fix #2271 * RadzenListBox/RadzenPickList EmptyTemplate and EmptyText added Fix #2018 * DataGrid footer and header is being incorrectly rendered for frozen columns Fix #1402 * PropertyAccess.GetValue() fixed to work with sub interfaces Fix #1249 * RadzenPickList AllowVirtualization added Fix #2456 * DataGrid add new row issue with LoadData method Fix #365 * Various components keyboard navigation not working as described in the demos Fix #2446 * RadzenDataGrid Keyboard Selection jumps when AllowVirtualization is enabled Fix #2439 * RadzenPanelMenu MenuItemDisplayStyle.IconAndTextStacked added Fix #2368 * RadzenPickList SelectedSourceChanged/SelectedTargetChanged added Fix #2324 * RadzenTabs AllowReorder property added Fix #2318 * RadzenAccordion ExpandAll()/CollapseAll() added Fix #2206 * RadzenDropZoneContainer Start/End Drag events added Fix #2158 * RadzenDataGrid doesn't appear to do colspan/rowspan properly Fix #1064 * Update Gantt styles * Update Gantt styles and premium themes * Update Gantt styles * Update Gantt demos * Update Linear Gauge demos * Update component icons * tests fixed --------- Co-authored-by: Atanas Korchev <akorchev@gmail.com> Co-authored-by: yordanov <vasil@yordanov.info>
2026-03-11 16:13:33 +02:00
{EC869401-304A-45BC-93CA-C1CDFAAA7F7B}.Release|x64.ActiveCfg = Release|Any CPU
{EC869401-304A-45BC-93CA-C1CDFAAA7F7B}.Release|x64.Build.0 = Release|Any CPU
{EC869401-304A-45BC-93CA-C1CDFAAA7F7B}.Release|x86.ActiveCfg = Release|Any CPU
{EC869401-304A-45BC-93CA-C1CDFAAA7F7B}.Release|x86.Build.0 = Release|Any CPU
{8726EFA9-554D-41D4-8B99-27744DCC7017}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8726EFA9-554D-41D4-8B99-27744DCC7017}.Debug|Any CPU.Build.0 = Debug|Any CPU
v10 (#2471) * Chip and ChipList components added Code improved demos improved Update Chip styles Exctract mixins for button, badge and chip styles Update Chip demos Update Chip styles in themes Fix chip styles in dropdowns Fix icon position in different chip sizes Fix chip border-radius Optimize styles Update Chip icon Update premium themes Chip/ChipList keyboard navigation fixed Invalid code fixed Update Chip focus styles * Gantt added code improved demo update with more data more demo improvements more improvements rendering updated Gantt Splitter ChangeStateOnResize set to false Gantt connecting lines added Tooltips added FIltering demo added Gantt editing demos added demo updated scrollbar improved Gantt ExpandRows() added thead height made equal material fixed filtering improved Subtitle2 removed Gantt drag & resize added Critical Path, Dependency Types and Baselines added Today Line, Non-Working Days, TaskRender Callback, Vertical Date Markers and Custom Task Bar Template added Zoom to fit and multiline headers added Rendering optimized Grouped header should be static Invalidate row count on expand/collapse and filter progress, critical path, red vertical line and baseline styling improved frozen columns in demos should have Width set alignment improved Auto scroll to events when switching between views Dependency Data added * Move scheduler month view "more" button to slot header The "+X more" button was absolutely positioned inside the events area, occupying space that could hold an additional appointment. Move it inline into the slot title header next to the day number so it no longer consumes an event slot. - Fix operator precedence bug in MaxAppointmentsInSlot auto-calculation - Style the button end-aligned in the header using flex + margin-inline-start: auto - Add demo appointments to trigger the "more" button in the default demo * Use ResizeObserver to measure month view content height Replace the hardcoded (Height - 60) / 6 calculation with actual measurements from a ResizeObserver on the view content element. This fixes appointment overflow at non-default scheduler heights (e.g. 500px) where the 60px header estimate was inaccurate (~91px actual). The MonthView now uses the existing createResizable JS pattern to observe its own content area and dynamically computes the correct MaxAppointmentsInSlot from the measured height and actual week count. * Replace createScheduler with createResizable for ResizeObserver support The scheduler-specific JS functions only used window resize events. Switch to the shared createResizable/destroyResizable pattern which uses ResizeObserver with a window resize fallback, consistent with charts and gauges. * Replace DocFX with Blazor class library for API reference generation Add Radzen.Blazor.Api and Radzen.Blazor.Api.Generator projects that generate .razor pages from Radzen.Blazor assembly metadata at build time. Pages are generated conditionally (Release builds or -p:GenerateApiPages=true). The API assembly is lazy-loaded to avoid initial payload penalty. Old .html URLs are preserved via 301 redirects in CanonicalRedirectMiddleware. * Improve API reference navigation and member anchors - Add anchor links to member headings via RadzenText Anchor parameter - Fix inherited member links to navigate to the specific member, not just the declaring type - Add nav panel that expands/selects the current type on navigation - Fix RadzenBody to scroll to fragment target instead of resetting to top * Stop RadzenToc from updating URL hash on scroll and fix scroll container - Remove navigateTo call from scroll handler so URL hash is not overwritten - Set TOC Selector to .rz-body so it monitors the correct scrollable container * Align API layout header with MainLayout * Refactor RadzenToc scroll listener disposal and item link updates. Return a disposable JS listener handle instead of storing expando handlers on elements, and move TOC item href refresh to NavigationManager location-change handling so links stay in sync with path/query changes. * Add v10 RadzenToc changelog notes. Document the RadzenToc breaking changes around link rendering, aria-selected semantics, and address bar behavior during scrolling, plus the high-level scroll tracking update. * Fix RadzenToc NullReferenceException during concurrent disposal and API reference redirect loop. Capture scrollListenerRef in a local variable before disposing to prevent a race condition when multiple RadzenTocItem components dispose concurrently. Skip scroll listener re-registration when the parent RadzenToc is already disposed. Remove UseDefaultFiles middleware and fix API Reference link to prevent redirect loops. * Fix RadzenToc scrollspy to match Bootstrap ScrollSpy behavior. Remove fallback that always highlighted the first item on load. Require actual scroll (scrollY > 0) before activating the at-bottom branch so short pages don't highlight the last item. Add click handler to RadzenTocItem so clicking an item activates it immediately (matching the DocFX affix click behavior). * Fix misaligned code examples in generated API documentation XML doc comment code blocks retained source-level indentation after parsing, causing excessive leading whitespace in rendered examples. Replace simple .Trim() with indentation normalization that strips the common leading whitespace prefix from all lines. * Update ApiLayout and MainTopNav * Fixed .Server project Cannot provide a value for property 'AssemblyLoader' on type 'RadzenBlazorDemos.Routes'. * Scatter and Bubble series added to Chart * LinearGauge added * Popup cut off on rightmost columns and flickers Fix #2414, #2181 * CheckBoxList filter options update without clicking Apply Fix #2155 * tests updated * DataGrid Reload() lags one render behind Fix #2214 * Gaps in Data for Charts Fix #765 * DataGrid Fixed Column resizing will show visual white space between fixed columns Fix #2228 * Setting Parameter on RadzenDataGridColumn<T> does not always trigger render of content Fix #2215 * DataGrid column resizing does not work on mobile and tablet devices Fix #2168 * RadzenAccordion invalid ARIA aatributes Fix #1931 * DropDownDataGrid search text clear button added Fix #1555 * Caruosel AnimationDuration added Fix #2438 * Tooltip ARIA attributes improved Fix #2314 * Long tooltip does not wrap Fix #2320 * Clicking into Padding of PanelMenuItem does navigate but not expand Item Fix #2244 * RadzenDatePicker FocusedDate synced with current date Fix #1991 * Dialog OnSideClose gets called when opening and closing Fix #1976 * RadzenNumeric RemoveNonNumericCharacters improved Fix #1937 * Optimize CSS rules and SCSS mixins * Fix percentage values in SCSS * Update premium themes * Line Chart markers cannot be dynamically turned off using @if Fix #1229 * DropDownDataGrid exception when changing data object Fix #1941 * RadzenChat new messages button added Fix #2375 * RadzenHtmlEditor Immediate property added Fix #2279 * Radzen Popup shows wrongly in a RTL Fix #2271 * RadzenListBox/RadzenPickList EmptyTemplate and EmptyText added Fix #2018 * DataGrid footer and header is being incorrectly rendered for frozen columns Fix #1402 * PropertyAccess.GetValue() fixed to work with sub interfaces Fix #1249 * RadzenPickList AllowVirtualization added Fix #2456 * DataGrid add new row issue with LoadData method Fix #365 * Various components keyboard navigation not working as described in the demos Fix #2446 * RadzenDataGrid Keyboard Selection jumps when AllowVirtualization is enabled Fix #2439 * RadzenPanelMenu MenuItemDisplayStyle.IconAndTextStacked added Fix #2368 * RadzenPickList SelectedSourceChanged/SelectedTargetChanged added Fix #2324 * RadzenTabs AllowReorder property added Fix #2318 * RadzenAccordion ExpandAll()/CollapseAll() added Fix #2206 * RadzenDropZoneContainer Start/End Drag events added Fix #2158 * RadzenDataGrid doesn't appear to do colspan/rowspan properly Fix #1064 * Update Gantt styles * Update Gantt styles and premium themes * Update Gantt styles * Update Gantt demos * Update Linear Gauge demos * Update component icons * tests fixed --------- Co-authored-by: Atanas Korchev <akorchev@gmail.com> Co-authored-by: yordanov <vasil@yordanov.info>
2026-03-11 16:13:33 +02:00
{8726EFA9-554D-41D4-8B99-27744DCC7017}.Debug|x64.ActiveCfg = Debug|Any CPU
{8726EFA9-554D-41D4-8B99-27744DCC7017}.Debug|x64.Build.0 = Debug|Any CPU
{8726EFA9-554D-41D4-8B99-27744DCC7017}.Debug|x86.ActiveCfg = Debug|Any CPU
{8726EFA9-554D-41D4-8B99-27744DCC7017}.Debug|x86.Build.0 = Debug|Any CPU
{8726EFA9-554D-41D4-8B99-27744DCC7017}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8726EFA9-554D-41D4-8B99-27744DCC7017}.Release|Any CPU.Build.0 = Release|Any CPU
v10 (#2471) * Chip and ChipList components added Code improved demos improved Update Chip styles Exctract mixins for button, badge and chip styles Update Chip demos Update Chip styles in themes Fix chip styles in dropdowns Fix icon position in different chip sizes Fix chip border-radius Optimize styles Update Chip icon Update premium themes Chip/ChipList keyboard navigation fixed Invalid code fixed Update Chip focus styles * Gantt added code improved demo update with more data more demo improvements more improvements rendering updated Gantt Splitter ChangeStateOnResize set to false Gantt connecting lines added Tooltips added FIltering demo added Gantt editing demos added demo updated scrollbar improved Gantt ExpandRows() added thead height made equal material fixed filtering improved Subtitle2 removed Gantt drag & resize added Critical Path, Dependency Types and Baselines added Today Line, Non-Working Days, TaskRender Callback, Vertical Date Markers and Custom Task Bar Template added Zoom to fit and multiline headers added Rendering optimized Grouped header should be static Invalidate row count on expand/collapse and filter progress, critical path, red vertical line and baseline styling improved frozen columns in demos should have Width set alignment improved Auto scroll to events when switching between views Dependency Data added * Move scheduler month view "more" button to slot header The "+X more" button was absolutely positioned inside the events area, occupying space that could hold an additional appointment. Move it inline into the slot title header next to the day number so it no longer consumes an event slot. - Fix operator precedence bug in MaxAppointmentsInSlot auto-calculation - Style the button end-aligned in the header using flex + margin-inline-start: auto - Add demo appointments to trigger the "more" button in the default demo * Use ResizeObserver to measure month view content height Replace the hardcoded (Height - 60) / 6 calculation with actual measurements from a ResizeObserver on the view content element. This fixes appointment overflow at non-default scheduler heights (e.g. 500px) where the 60px header estimate was inaccurate (~91px actual). The MonthView now uses the existing createResizable JS pattern to observe its own content area and dynamically computes the correct MaxAppointmentsInSlot from the measured height and actual week count. * Replace createScheduler with createResizable for ResizeObserver support The scheduler-specific JS functions only used window resize events. Switch to the shared createResizable/destroyResizable pattern which uses ResizeObserver with a window resize fallback, consistent with charts and gauges. * Replace DocFX with Blazor class library for API reference generation Add Radzen.Blazor.Api and Radzen.Blazor.Api.Generator projects that generate .razor pages from Radzen.Blazor assembly metadata at build time. Pages are generated conditionally (Release builds or -p:GenerateApiPages=true). The API assembly is lazy-loaded to avoid initial payload penalty. Old .html URLs are preserved via 301 redirects in CanonicalRedirectMiddleware. * Improve API reference navigation and member anchors - Add anchor links to member headings via RadzenText Anchor parameter - Fix inherited member links to navigate to the specific member, not just the declaring type - Add nav panel that expands/selects the current type on navigation - Fix RadzenBody to scroll to fragment target instead of resetting to top * Stop RadzenToc from updating URL hash on scroll and fix scroll container - Remove navigateTo call from scroll handler so URL hash is not overwritten - Set TOC Selector to .rz-body so it monitors the correct scrollable container * Align API layout header with MainLayout * Refactor RadzenToc scroll listener disposal and item link updates. Return a disposable JS listener handle instead of storing expando handlers on elements, and move TOC item href refresh to NavigationManager location-change handling so links stay in sync with path/query changes. * Add v10 RadzenToc changelog notes. Document the RadzenToc breaking changes around link rendering, aria-selected semantics, and address bar behavior during scrolling, plus the high-level scroll tracking update. * Fix RadzenToc NullReferenceException during concurrent disposal and API reference redirect loop. Capture scrollListenerRef in a local variable before disposing to prevent a race condition when multiple RadzenTocItem components dispose concurrently. Skip scroll listener re-registration when the parent RadzenToc is already disposed. Remove UseDefaultFiles middleware and fix API Reference link to prevent redirect loops. * Fix RadzenToc scrollspy to match Bootstrap ScrollSpy behavior. Remove fallback that always highlighted the first item on load. Require actual scroll (scrollY > 0) before activating the at-bottom branch so short pages don't highlight the last item. Add click handler to RadzenTocItem so clicking an item activates it immediately (matching the DocFX affix click behavior). * Fix misaligned code examples in generated API documentation XML doc comment code blocks retained source-level indentation after parsing, causing excessive leading whitespace in rendered examples. Replace simple .Trim() with indentation normalization that strips the common leading whitespace prefix from all lines. * Update ApiLayout and MainTopNav * Fixed .Server project Cannot provide a value for property 'AssemblyLoader' on type 'RadzenBlazorDemos.Routes'. * Scatter and Bubble series added to Chart * LinearGauge added * Popup cut off on rightmost columns and flickers Fix #2414, #2181 * CheckBoxList filter options update without clicking Apply Fix #2155 * tests updated * DataGrid Reload() lags one render behind Fix #2214 * Gaps in Data for Charts Fix #765 * DataGrid Fixed Column resizing will show visual white space between fixed columns Fix #2228 * Setting Parameter on RadzenDataGridColumn<T> does not always trigger render of content Fix #2215 * DataGrid column resizing does not work on mobile and tablet devices Fix #2168 * RadzenAccordion invalid ARIA aatributes Fix #1931 * DropDownDataGrid search text clear button added Fix #1555 * Caruosel AnimationDuration added Fix #2438 * Tooltip ARIA attributes improved Fix #2314 * Long tooltip does not wrap Fix #2320 * Clicking into Padding of PanelMenuItem does navigate but not expand Item Fix #2244 * RadzenDatePicker FocusedDate synced with current date Fix #1991 * Dialog OnSideClose gets called when opening and closing Fix #1976 * RadzenNumeric RemoveNonNumericCharacters improved Fix #1937 * Optimize CSS rules and SCSS mixins * Fix percentage values in SCSS * Update premium themes * Line Chart markers cannot be dynamically turned off using @if Fix #1229 * DropDownDataGrid exception when changing data object Fix #1941 * RadzenChat new messages button added Fix #2375 * RadzenHtmlEditor Immediate property added Fix #2279 * Radzen Popup shows wrongly in a RTL Fix #2271 * RadzenListBox/RadzenPickList EmptyTemplate and EmptyText added Fix #2018 * DataGrid footer and header is being incorrectly rendered for frozen columns Fix #1402 * PropertyAccess.GetValue() fixed to work with sub interfaces Fix #1249 * RadzenPickList AllowVirtualization added Fix #2456 * DataGrid add new row issue with LoadData method Fix #365 * Various components keyboard navigation not working as described in the demos Fix #2446 * RadzenDataGrid Keyboard Selection jumps when AllowVirtualization is enabled Fix #2439 * RadzenPanelMenu MenuItemDisplayStyle.IconAndTextStacked added Fix #2368 * RadzenPickList SelectedSourceChanged/SelectedTargetChanged added Fix #2324 * RadzenTabs AllowReorder property added Fix #2318 * RadzenAccordion ExpandAll()/CollapseAll() added Fix #2206 * RadzenDropZoneContainer Start/End Drag events added Fix #2158 * RadzenDataGrid doesn't appear to do colspan/rowspan properly Fix #1064 * Update Gantt styles * Update Gantt styles and premium themes * Update Gantt styles * Update Gantt demos * Update Linear Gauge demos * Update component icons * tests fixed --------- Co-authored-by: Atanas Korchev <akorchev@gmail.com> Co-authored-by: yordanov <vasil@yordanov.info>
2026-03-11 16:13:33 +02:00
{8726EFA9-554D-41D4-8B99-27744DCC7017}.Release|x64.ActiveCfg = Release|Any CPU
{8726EFA9-554D-41D4-8B99-27744DCC7017}.Release|x64.Build.0 = Release|Any CPU
{8726EFA9-554D-41D4-8B99-27744DCC7017}.Release|x86.ActiveCfg = Release|Any CPU
{8726EFA9-554D-41D4-8B99-27744DCC7017}.Release|x86.Build.0 = Release|Any CPU
{B190D50E-6239-46BF-B49A-F37EDC358DC3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B190D50E-6239-46BF-B49A-F37EDC358DC3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B190D50E-6239-46BF-B49A-F37EDC358DC3}.Debug|x64.ActiveCfg = Debug|Any CPU
{B190D50E-6239-46BF-B49A-F37EDC358DC3}.Debug|x64.Build.0 = Debug|Any CPU
{B190D50E-6239-46BF-B49A-F37EDC358DC3}.Debug|x86.ActiveCfg = Debug|Any CPU
{B190D50E-6239-46BF-B49A-F37EDC358DC3}.Debug|x86.Build.0 = Debug|Any CPU
{B190D50E-6239-46BF-B49A-F37EDC358DC3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B190D50E-6239-46BF-B49A-F37EDC358DC3}.Release|Any CPU.Build.0 = Release|Any CPU
{B190D50E-6239-46BF-B49A-F37EDC358DC3}.Release|x64.ActiveCfg = Release|Any CPU
{B190D50E-6239-46BF-B49A-F37EDC358DC3}.Release|x64.Build.0 = Release|Any CPU
{B190D50E-6239-46BF-B49A-F37EDC358DC3}.Release|x86.ActiveCfg = Release|Any CPU
{B190D50E-6239-46BF-B49A-F37EDC358DC3}.Release|x86.Build.0 = Release|Any CPU
{0CE710A6-8514-4358-ABFF-12943ACD4D72}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0CE710A6-8514-4358-ABFF-12943ACD4D72}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0CE710A6-8514-4358-ABFF-12943ACD4D72}.Debug|x64.ActiveCfg = Debug|Any CPU
{0CE710A6-8514-4358-ABFF-12943ACD4D72}.Debug|x64.Build.0 = Debug|Any CPU
{0CE710A6-8514-4358-ABFF-12943ACD4D72}.Debug|x86.ActiveCfg = Debug|Any CPU
{0CE710A6-8514-4358-ABFF-12943ACD4D72}.Debug|x86.Build.0 = Debug|Any CPU
{0CE710A6-8514-4358-ABFF-12943ACD4D72}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0CE710A6-8514-4358-ABFF-12943ACD4D72}.Release|Any CPU.Build.0 = Release|Any CPU
{0CE710A6-8514-4358-ABFF-12943ACD4D72}.Release|x64.ActiveCfg = Release|Any CPU
{0CE710A6-8514-4358-ABFF-12943ACD4D72}.Release|x64.Build.0 = Release|Any CPU
{0CE710A6-8514-4358-ABFF-12943ACD4D72}.Release|x86.ActiveCfg = Release|Any CPU
{0CE710A6-8514-4358-ABFF-12943ACD4D72}.Release|x86.Build.0 = Release|Any CPU
2021-11-01 11:05:41 +02:00
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {BD0EF65D-06F5-4DBD-BF9F-82CA04E26D8C}
EndGlobalSection
EndGlobal