Skip to content
View alfonsodguez's full-sized avatar
🌱
Developing
🌱
Developing

Block or report alfonsodguez

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. blazor-web-clothestore blazor-web-clothestore Public archive

    Ejemplo de aplicación web para comercio de ropa online usando la tecnología SPA de .NET Blazor WebAssembly

    HTML 3

  2. JavaScript treeview JavaScript treeview
    1
    const treeview = $('#treeviewCategories')
    2
    const categories = JSON.parse(serializeCategories.replace(/"/g, `"`))
    3
    const separatorCategory  = "-"
    4
    const urlProducts = "http://localhost:3000/Shop/Products/"
    5
    const initTag  = '<ul class="nested">'
  3. Blazor treeview Blazor treeview
    1
    @inject NavigationManager _navigated
    2
    
                  
    3
    @foreach (var category in categories.Where(subcatg => subcatg.CategoryParentId == ParentId))
    4
    {
    5
        bool isCollapse     = true;