Wiki articles in category Tutorials

Showing 1-20 of 43 items.

Create Bootstrap5 based Image carousel with thumbnails

Created 3 months ago by pravi, updated 3 months ago by pravi.

Use the following css styles for carousel to work as expected.

0 0
1 follower
Viewed: 16 400 times
Version: 2.0
Category: Tutorials

JWT authentication tutorial

Created 2 years ago by Allan Jensen, updated 2 years ago by Allan Jensen.

JWT is short for JSON Web Token. It is used eg. instead of sessions to maintain a login in a browser that is talking to an API - since browser sessions are vulnerable to CSRF security issues. JWT is also less complicated than setting up an OAuth authentication mechanism.

13 0
8 followers
Viewed: 147 621 times
Version: 2.0
Category: Tutorials

Yii v2 snippet guide III

Created 3 years ago by rackycz, updated 8 months ago by rackycz.

Articles are separated into more files as there is the max lenght for each file on wiki.

8 0
4 followers
Viewed: 136 589 times
Version: 2.0
Category: Tutorials

Api of Multiple File Uploading in Yii2

Created 3 years ago by fezzymalek, updated a year ago by fezzymalek.

After getting lot's of error and don't know how to perform multiple images api in yii2 finally I get it today

5 0
4 followers
Viewed: 62 979 times
Version: 2.0
Category: Tutorials
4 0
3 followers
Viewed: 67 877 times
Version: 2.0
Category: Tutorials
7 0
4 followers
Viewed: 233 056 times
Version: 2.0
Category: Tutorials

Nested Set with Yii2

Created 5 years ago by sangprabo, updated 4 years ago by sangprabo.

The nested set behaviour is an approach to store hierarchical data in relational databases. For example, if we have many categories for our product or items. One category can be a "parent" for other categories, means that one category consists of more than one category. The model can be drawn using a "tree" model. There are other approaches available but what we will learn in this article is speci...

7 0
3 followers
Viewed: 49 429 times
Version: 2.0
Category: Tutorials

Batch Gridview data ajax send splitted in chunks displaying bootstrap Progress bar

Created 5 years ago by toaster, updated 5 years ago by toaster.

The scenario in which this wiki can be useful is when you have to send an (huge) array of model ids and perform a time consuming computation with it like linking every model to other models. The idea is to split the array into smaller arrays and perform sequential ajax requests, showing the calculation progress using a [Bootstrap Progress bar](https://www.yiiframework.com/extension/yiisoft/yii2-bo...

8 0
2 followers
Viewed: 32 958 times
Version: 2.0
Category: Tutorials

Yii2 RESTful API with OAuth 2.0

Created 6 years ago by sirin k, updated 5 years ago by sirin k.

https://cdn.pbrd.co/images/GMN5ROs.jpg

3 0
3 followers
Viewed: 67 506 times
Version: 2.0
Category: Tutorials

Working with relational removals by yii2

Created 7 years ago by AndroideLP, updated 6 years ago by Jairus Martin.

This tutorial shows you how to safely remove records between relationships.

0 0
2 followers
Viewed: 35 227 times
Version: 2.0
Category: Tutorials

Optimize Scenarios for yii2

Created 7 years ago by AndroideLP, updated 4 years ago by AndroideLP.

Working with scenarios, with models that can receive many modifications in their rules or structures as development evolves, can create disruptions in the rescue process.

4 0
2 followers
Viewed: 41 727 times
Version: 2.0
Category: Tutorials

Yii2 GridView Sorting and Searching with a Junction Table Column(Many to Many Relationship)

Created 7 years ago by Amjad Khan, updated 7 years ago by Amjad Khan.

Following is the table structure

tblgroups

CREATE TABLE IF NOT EXISTS `tblgroups` (
  `id` int(11) NOT NULL,
  `groupname` varchar(150) NOT NULL,
  `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1=Acitve,2=Inactive',
  `date` datetime NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

tblcontacts

4 1
7 followers
Viewed: 86 958 times
Version: 2.0
Category: Tutorials

How to make bootstrap tabs remain active/selected after navigating to different web pages.

Created 7 years ago by emrald, updated 7 years ago by emrald.

Bootstrap tabs gets unselected/inactive when user navigates to other page and comes back. How to make bootstrap tabs remain active/selected after navigating to different web pages.

1 0
3 followers
Viewed: 16 671 times
Version: 2.0
Category: Tutorials

Installation guide: Yii-2 advanced template with RBAC system

Created 7 years ago by Sherin Jose, updated 7 years ago by Sherin Jose.

Welcome, all of you !

9 1
19 followers
Viewed: 119 777 times
Version: 2.0
Category: Tutorials
Tags: install, rbac, yii2

How to create/update a model with its related items using Listbox or CheckboxList

Created 8 years ago by softark, updated 5 years ago by softark.

Assume we have many categories and many posts.

5 0
6 followers
Viewed: 86 541 times
Version: 2.0
Category: Tutorials

Language Selector

Created 8 years ago by Programmer Thailand, updated 8 years ago by Programmer Thailand.

common\components\LanguageSelector.php

<?php
namespace common\components;

2 0
6 followers
Viewed: 16 229 times
Version: 2.0
Category: Tutorials

Relational Query - Lazy Loading and Eager Loading in Yii 2.0

Created 8 years ago by softark, updated 4 years ago by samdark.

It's well known that there are Lazy Loading approach and Eager Loading approach in the relational query. But it's very important to know how the Eager Loading approach works in Yii 2. It has changed drastically from that of Yii 1.1, and there are common misunderstandings about it in the community.

10 0
6 followers
Viewed: 55 717 times
Version: 2.0
Category: Tutorials

A simple widget - jump2link

Created 8 years ago by Scott_Huang, updated 8 years ago by Scott_Huang.

namespace app\components;

0 0
1 follower
Viewed: 13 113 times
Version: 2.0
Category: Tutorials

Simple Jui Autocomplete in yii2

Created 8 years ago by ajith, updated 8 years ago by ajith.

To use jui auto complete widget first add

0 0
3 followers
Viewed: 50 531 times
Version: 2.0
Category: Tutorials

YII2: Create console commands inside a module or extension

Created 8 years ago by MetaCrawler, updated 5 years ago by Luis Armando.

Here is a small guide how to get console commands running inside modules & extensions. For this guide I used a fresh yii2 basic application template.

8 0
6 followers
Viewed: 63 679 times
Version: 2.0
Category: Tutorials