Wiki articles tagged with "AJAX"

Showing 1-20 of 55 items.

Background task with Ajax

Created 9 years ago by Alexandre Rodichevski Alexandre Rodichevski, updated 9 years ago by Alexandre Rodichevski Alexandre Rodichevski.

This article discusses how one can run a long task in background in yiiframework 1.1 using Ajax technique.

0 0
1 follower
Viewed: 28 725 times
Version: 1.1
Category: Tutorials

CGridView: Adding behaviors from configuration, and template items from behaviors to CGridView

Created 12 years ago by le_top le_top, updated 12 years ago by le_top le_top.

Changing the way a CGridView is rendered from the configuration file, or through behaviors specified at the moment it is used, is handy to extend a CGridView without creating tons of different classes for it. I am surprised that this is not in the default implementation, so I made my default CGridView implementation.

3 0
3 followers
Viewed: 16 636 times
Version: 1.1
Category: Tips

Insert a model record using CGridview

Created 11 years ago by Kostas Apazidis (KonApaz) Kostas Apazidis (KonApaz), updated 11 years ago by Kostas Apazidis (KonApaz) Kostas Apazidis (KonApaz).

CGridview displays existent rows of the table (using DataProvider)

2 0
1 follower
Viewed: 19 500 times
Version: 1.1
Category: How-tos

Make an ajax request to another server using JSONP

Created 11 years ago by Kostas Apazidis (KonApaz) Kostas Apazidis (KonApaz), updated 11 years ago by Kostas Apazidis (KonApaz) Kostas Apazidis (KonApaz).

There are cases that you want to make an ajax request to another server and get the results.

1 0
2 followers
Viewed: 15 079 times
Version: 1.1
Category: Tips

How to display images in CJuiAutoComplete without extenstions

Created 11 years ago by Asmaa Asmaa, updated 6 years ago by samdark samdark.

I wanted to customize the CJuiAutoComplete, so that it displays a thumb image before the label like the one shown in the following image:

0 0
2 followers
Viewed: 15 017 times
Version: 1.1
Category: Tutorials

How to show Image view after upload and delete view image using eajaxupload extension

Created 11 years ago by Ankit Modi Ankit Modi, updated 6 years ago by samdark samdark.

Hi Friends, In this tutorial you can use the eajaxupload-extension ,

0 1
3 followers
Viewed: 62 916 times
Version: 1.1
Category: How-tos

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

Created 7 years ago by toaster toaster, updated 7 years ago by toaster 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: 38 066 times
Version: 2.0
Category: Tutorials

How to render a view in Fancybox using ajax

Created 13 years ago by rix.rix. rix.rix., updated 13 years ago by 张 迪 张 迪.

Sometimes you want to render a view in Fancybox.

4 0
14 followers
Viewed: 33 184 times
Version: 1.1
Category: How-tos

Open Dialog from ajax content

Created 12 years ago by Touzas Touzas, updated 12 years ago by Touzas Touzas.

This is the code in the View.

<?php echo CHtml::link('MyDialog', Yii::app()->createUrl('site/page'), array('class' => 'openDlg divDialog')); ?>
<?php
$this->beginWidget('zii.widgets.jui.CJuiDialog', array('id'=>'divDialog',
	'options'=>array( 'title'=>Yii::t('Dialog Title', 'autoOpen'=>false, 'modal'=>true, 'width'=>600)));
?>
	<div class="divForForm"></div>
<?php
$this->endWidget(...
3 1
5 followers
Viewed: 25 613 times
Version: 1.1
Category: How-tos

How to Display tooltp(qtip) on CGridview dynamic

Created 12 years ago by Ankit Modi Ankit Modi, updated 12 years ago by softark softark.

Hi Friends,

0 0
4 followers
Viewed: 18 365 times
Version: Unknown (update)
Category: Tips

Simple Ajax popup

Created 12 years ago by Rajith R Rajith R, updated 11 years ago by Rajith R Rajith R.

Simple Ajax popup view with Ajax link

5 0
9 followers
Viewed: 53 414 times
Version: 1.1
Category: Tutorials

How to create CJui Tabs : Render partial, Ajax tabs, color tabs

Created 12 years ago by Interboy Interboy, updated 11 years ago by xJose xJose.

Hey guys, today we will show you how to make a Yii CJuitabs as example. Some feature cases such as Static tabs, render partial tabs, Ajax tabs, color tabs... You can see our code, there are simple 3 steps to make it work.

3 0
7 followers
Viewed: 38 031 times
Version: 1.1
Category: How-tos

How to apply a layout to an AJAX update

Created 11 years ago by trond trond, updated 11 years ago by CeBe CeBe.
  1. The Main template holds the header, main navigation and footer
  2. One or more layout files holds the column setup, sub navigation etc.
  3. The view files hold the actual page content.
1 0
4 followers
Viewed: 18 942 times
Version: 1.1
Category: How-tos
Tags: AJAX, views

Upload image and content using AJAX and Store it in different table

Created 11 years ago by Selvakumar Kaliyappan Selvakumar Kaliyappan, updated 11 years ago by CeBe CeBe.

var formData = new FormData($("#post-form")[0]);
$.ajax({
    url: '<?php echo Yii::app()->createUrl("forumPost/uploadPost"); ?>',
    type: 'POST',
    data: formData,
    datatype:'json',
    // as...
1 0
5 followers
Viewed: 75 592 times
Version: 1.1
Category: How-tos

Open bootstrap modal and load content via Ajax

Created 11 years ago by JbalTero JbalTero, updated 11 years ago by JbalTero JbalTero.

My goal here is to Open bootstrap modal and load ANY content using ajax response.

1 0
2 followers
Viewed: 64 553 times
Version: 1.1
Category: How-tos

A Single Page with a List and a Detail

Created 9 years ago by softark softark, updated 9 years ago by Patrick Jones Patrick Jones.

The CRUD generator of Gii has done a wonderful job for you, and you already have a list of items in the "index" page and a detailed view of a specified item in the "view" page.

3 0
5 followers
Viewed: 60 705 times
Version: 2.0
Category: How-tos

Ajax update

Created 15 years ago by zaccaria zaccaria, updated 15 years ago by zaccaria zaccaria.

Often happens to have the need of change a part of the page with ajax.

16 2
14 followers
Viewed: 61 784 times
Version: 1.1
Category: Tips
Tags: AJAX

CGridView and AjaxForm Connect

Created 14 years ago by PinkBrainPlan PinkBrainPlan, updated 14 years ago by PinkBrainPlan PinkBrainPlan.

<?php $this->widget('zii.widgets.grid.CGridView', array(

'dataProvider' => $dataprovider,
'id'=>'recipient_table',
    'selectionChanged'=>'updateEditForm',
'columns' => array(
	'rec_id',
            'org.nachname',
            'org.vorname',
            'org_id',
            array(
                'class'=>'CButtonColumn',
                'template'=>'{...
1 0
10 followers
Viewed: 29 484 times
Version: 1.1
Category: How-tos

Avoiding duplicate script download when using CActiveForm on Ajax calls

Created 14 years ago by Antonio Ramirez Antonio Ramirez, updated 14 years ago by Maurizio Domba Cerin Maurizio Domba Cerin.

The only thing required is simple, we just need to create a view that will be partially rendered by a call to a controller (using renderPartial) and make sure that we process output -setting to true the parameter on the function. Everything will work as expected but...

11 1
9 followers
Viewed: 28 728 times
Version: 1.1
Category: Tutorials

How to display page on fancybox...using CHtml::ajaxlink with yii validation

Created 12 years ago by Ankit Modi Ankit Modi, updated 11 years ago by Rohit Suthar Rohit Suthar.

1) include the fancybox extesion otherwise fancybox js

0 0
4 followers
Viewed: 21 527 times
Version: 1.1
Category: Tutorials