Yii Framework 34k+
  • News
  • Guide
  • API
  • Wiki
  • Forum
  • Community
    • Places
    • Members
    • Hall of Fame
    • Badges
  • More
    • Learn
    • Books
    • Resources
    • Develop
    • Download Yii
    • Extensions
    • Report an Issue
    • Report a Security Issue
    • Contribute to Yii
    • Donate
    • About
    • Release Cycle
    • License
    • Team
    • Official Logos and Design
Login

Yii DataView 1.3

Sep 15, 2026

Yii DataView version 1.3.0 was released. In this version:

  • Add GridView::keepColumnAttributesInEmptyCell() to keep column body cell attributes on empty cells
  • Add GridView::filterRowAttributes(), and filterAttributes and filterClass parameters to DataColumn to set HTML attributes and a CSS class for filter cells
  • Add GridView methods sortableHeaderClass(), sortableHeaderAscClass(), sortableHeaderDescClass(), sortableLinkAscClass() and sortableLinkDescClass() to configure CSS classes for sortable column headers and links
  • Add GridView::captionAttributes() method and $attributes parameter to GridView::caption() to set HTML attributes for the caption tag

Read more

Yii Bulma 1.1

Jul 18, 2026

Yii Bulma version 1.1.0 was released. In this version:

  • Bump yiisoft/html version to ^4.2.0
  • Adapt configuration to changes in yiisoft/form
  • Change PHP constraint in composer.json to 8.1 - 8.5
  • Adopt last change yiisoft/widget

Read more

Yii DataView 1.0

Dec 14, 2025

The first stable release of a powerful set of data displaying widgets is now available.

Yii DataView provides three flexible widgets for presenting data in web applications:

  • ListView — display data as a customizable list.

Read more

Yii Form 1.5

Nov 5, 2025

Yii Form version 1.5.0 was released. In this version:

  • Add Color field
  • Improve Fieldset field HTML markup
  • Fix newline removal issues in input values

Bootstrap5 1.0.0

Apr 13, 2025

First stable release of yiisoft/bootstrap5 package was tagged. The package presents Bootstrap 5 UI framework in terms of Yii widgets allowing easy usage in PHP templates, theming and more.

<?php
use Yiisoft\Bootstrap5\Carousel;
use Yiisoft\Bootstrap5\CarouselItem;
use Yiisoft\Html\Tag\Div;
use Yiisoft\Html\Tag\H2;
use Yiisoft\Html\Tag\P;
?>

<?= Carousel::widget()
    ->id('carouselExampleOnlyText')
    ->items(
        CarouselItem::to(
            Div::tag()
                ->addClass('bg-primary text-white p-5 text-center')
                ->addContent(
                    H2::tag()->content('Title 1'),
                    P::tag()->content('This is the first slide with text.'),
                ),
        ),
        CarouselItem::to(
            Div::tag()
                ->addClass('bg-success text-white p-5 text-center')
                ->addContent(
                    H2::tag()->content('Title 2'),
                    P::tag()->content('This is the second slide with text.'),
                ),
        ),
        CarouselItem::to(
            Div::tag()
                ->addClass('bg-danger text-white p-5 text-center')
                ->addContent(
                    H2::tag()->content('Title 3'),
                    P::tag()->content('This is the third slide with text.'),
                ),
        ),
    );

Check more examples in the package user guide.

Yii Form 1.4

Mar 27, 2025

Version 1.4 of Yii Form package is released.

  • Change PHP constraint in composer.json to 8.1 - 8.4.
  • Improve "Bootstrap 5 Horizontal" theme for checkbox.
  • In PartsFeild class change $beforeInput and $afterInput properties' scope to protected.
  • Suppress all extra HTML for "Hidden" field.

Yii Form 1.3

Oct 30, 2024

Version 1.3 of Yii Form package is released.

  • Added CheckboxList methods:
    • checkboxWrapTag(),
    • checkboxWrapAttributes(),
    • checkboxWrapClass(),

Read more

Yii Widgets 2.1

Feb 19, 2023

Minor version of Yii Widgets package is released.

In this version updated dependencies:

  • yiisoft/cache to ^2.0|^3.0;
  • yiisoft/aliases to ^3.0;
  • yiisoft/view to ^8.0.

Yii Widget 2.0.0

Jan 22, 2023

Major version of Yii Widget package is released. In this version Widget::widget() method was changed to ability use only constructor argument or whole array definition. Also there are breaking changes: beforeRun(), afterRun() and run() methods was removed from Widget class. Only render() method now can be used. See instruction for how to upgrade from 1.x version.

Get notified of news as soon as they are available using our RSS Feed.

Years

  • 2026 (48)
  • 2025 (92)
  • 2024 (80)
  • 2023 (90)
  • 2022 (82)
  • 2021 (101)
  • 2020 (64)
  • 2019 (75)
  • 2018 (32)
  • 2017 (35)
  • 2016 (30)
  • 2015 (9)
  • 2014 (6)
  • 2013 (11)
  • 2012 (14)
  • 2011 (10)
  • 2010 (10)
  • 2009 (23)
  • 2008 (5)

Popular Tags

  • yii3 387
  • extensions 233
  • release 109
  • yii2 74
  • debug 30
  • view 28
  • html 25
  • auth client 23
  • bootstrap 21
  • redis 20
  • Yii 1.1
  • Guide
  • API
  • Wiki
  • Yii 2
  • Guide
  • API
  • Wiki
  • Yii3
  • Guide
  • API
  • Cookbook
  • Terms of service
  • License
  • Contact Us
  • Supported by
  • Your donations
  • JetBrains logo
  • © 2008 - 2026 Yii (Website Source Code)