- Beranda
- Website, Webmaster, Webdeveloper
Yii php framework video tutorial
...
TS
dmunkyfreak
Yii php framework video tutorial
Permisi Gan, iseng sharing aja video tutorial yang ane buat karena bosen g ada kerjaan di kantor. Disini ane mau share video tutorial tentang YII PHP FRAMEWORK yang katanya merupakan FRAMEWORK nomor 1 sekarang ini. (sumber)
Ok langsung aja simak video dari newbie ini
Terimakasih Telah berkunjung,
- Jika Agan tidak berkenan dengan thread ini, tolong jangan bata
saya.
- Jika Agan seneng atau berkenan silakan
atau share ke temen2 yang laen
- Jika Agan terlampau baik, saya terima
nya

Quote:
Quote:
Ok langsung aja simak video dari newbie ini

Spoiler for 1. YII FRAMEWORK installation on xampp OS windows ~ vlocorp:
Spoiler for 2. YII FRAMEWORK create database design ~ vlocorp:
Spoiler for 3. YII FRAMEWORK crudss with gii tools ~ vlocorp:
Spoiler for 4. YII FRAMEWORK controllers structure ~ vlocorp:
Spoiler for 5. YII FRAMEWORK passing data from controller to view ~ vlocorp:
Spoiler for 6. YII model structure ~ vlocorp:
Spoiler for 7. YII FRAMEWORK FORM static dropdown list using DropDownList ~ vlocorp:
Spoiler for 8. YII FRAMEWORK FORM dynamic dropdownList from database ~ vlocorp:
Terimakasih Telah berkunjung,
- Jika Agan tidak berkenan dengan thread ini, tolong jangan bata
saya.- Jika Agan seneng atau berkenan silakan
atau share ke temen2 yang laen
- Jika Agan terlampau baik, saya terima
nya

Diubah oleh dmunkyfreak 15-05-2013 14:26
0
11.6K
72
Komentar yang asik ya
Mari bergabung, dapatkan informasi dan teman baru!
Website, Webmaster, Webdeveloper
23.5KThread•5.6KAnggota
Tampilkan semua post
bdoel_PC
#20
Selamat pagi mas.. mau nanya donk, klo membuat checkbox agar bisa di checkall gmn y? codingan saya :
coding _form :
coding javascript y :
tolong bantuan y mas.. terima kasih
coding _form :
Code:
<div class="row">
<?php echo $form->labelEx($model,'Target Ragion'; ?>
<?php echo CHtml::checkBox('CheckAll';?>
<?php echo CHtml::checkBoxList('region_id[]',"string",
Chtml::listData(Region::model()->findAll(),'id_region','regions', array('style'=>'width:1px'
); ?>
</div>
coding javascript y :
Code:
[removed][removed]
[removed]
$( function() {
$( '.checkAll1' ).live( 'change', function() {
$( '.cb-element1' ).attr( 'checked', $( this ).is( ':checked' ) ? 'checked' : '' );
$( this ).next().text( $( this ).is( ':checked' ) ? 'Uncheck All' : 'Check All' );
});
$( '.checkAll2' ).live( 'change', function() {
$( '.cb-element2' ).attr( 'checked', $( this ).is( ':checked' ) ? 'checked' : '' );
$( this ).next().text( $( this ).is( ':checked' ) ? 'Uncheck All' : 'Check All' );
});
$( '.cb-element1' ).live( 'change', function() {
$( '.cb-element1' ).length == $( '.cb-element1:checked' ).length ? $( '.checkAll1' ).attr( 'checked', 'checked' ).next().text( 'Uncheck All' ) : $( '.checkAll1' ).attr( 'checked', '' ).next().text( 'Check All1' );
});
$( '.cb-element2' ).live( 'change', function() {
$( '.cb-element2' ).length == $( '.cb-element2:checked' ).length ? $( '.checkAll2' ).attr( 'checked', 'checked' ).next().text( 'Uncheck All' ) : $( '.checkAll2' ).attr( 'checked', '' ).next().text( 'Check All2' );
});
});
[removed]
tolong bantuan y mas.. terima kasih
0






; ?>