Questions tagged [yii-booster]

YiiBooster is a collection of widgets that will ease the task of developing Yii applications, as well as, giving an application a little boost.

YiiBooster is a collection of widgets that will ease the task of developing Yii applications, as well as, giving an application a little boost. Basically, YiiBooster tackles the most common challenges that Yii developers face while trying to enhance their applications.

Information from: http://yiibooster.clevertech.biz/

92 questions
1
vote
1 answer

Yii Booster assets with symlink

Im using YiiBooster, but I don't like that is generates folder inside the assets dir and copying a bunch of files into it. I would like it to create symlinks instead, like Yii assetManager: $assetManager =…
RB_
  • 1,195
  • 15
  • 35
1
vote
1 answer

How bootstrap.widgets.TbGridView pagination can be changed as the image pasted below?

My widget is:- $this->widget('bootstrap.widgets.TbGridView',array( 'type'=>'striped bordered condensed', 'id'=>'accounts-grid', 'dataProvider'=>$model->search(), 'columns'=>array( array( …
1
vote
1 answer

yiibooster sortable table rows are not working

I have problem with a Yiibooster sortable table rows. It is not working because of two errors. The file "http://yii-cms.com/protected/extensions/bootstrap/assets/js/jquery.sortable.gridview.js" is not found by the system (404), although the rest…
1
vote
0 answers

Yiibooster donot run in php 5.3.1

i want to use Yiibooster ,but my php version is 5.3.1, some technology can not run in php version , are there any solution without upgrade php?
maryam
  • 584
  • 9
  • 26
1
vote
1 answer

YiiBooster $form->checkboxListGroup values preselect

Can someone help me in YiiBooster checkboxListGroup. I'm trying to preselect items in $form->checkboxListGroup( $modelPermissions, 'ID', array( 'widgetOptions' => array( 'data' => array( …
1
vote
1 answer

YiiBooster. TbEditableColumn. Property "attribute" should be defined

I have a problem with TbEditedableColumn in YiiBooster 4.0.1 View: $this->widget( 'application.extensions.booster.widgets.TbGridView', array( 'type' => 'striped bordered', 'dataProvider' => new CActiveDataProvider('Stats'), 'columns' =>…
Alex Pavlov
  • 571
  • 1
  • 7
  • 24
1
vote
2 answers

How to display pagination links below TbExtendedGridView in YiiBooster?

I've been searching all over but couldn't find a way to display the pagination links like this: on the grid view. I have this configuration for my grid: search(); $dataProvider->pagination = array('pageSize'=>1); //…
JohnnyQ
  • 4,839
  • 6
  • 47
  • 65
1
vote
0 answers

yiibooster show already added record in select2 widget

I have already added data using select2 yiibooster widget but how i can update data using select2 widget. how i show already added records in yiibooster select2 widget labelEx($model, 'measurement'); $this->widget( …
FahadAkram
  • 445
  • 1
  • 5
  • 25
1
vote
2 answers

How to format dates with DatePicker in Yii-Booster?

Background YiiBooster's Date Picker is a wrapper for a neat little widget (bootstrap-datepicker) which is based on Stefan Petre's bootstrap-datepicker. It is very similar to, but not the same as JQueryUI's DatePicker. Problem Date format! All of…
mae
  • 14,947
  • 8
  • 32
  • 47
1
vote
2 answers

sort column by date TbJSONGridView

I want to sort a column in TbJSONGridView by date , I have this code $this->widget( 'bootstrap.widgets.TbJsonGridView', array( 'dataProvider' => $model->searchPending(), 'type' => 'striped bordered condensed', 'summaryText'…
General Electric
  • 1,176
  • 3
  • 21
  • 44
1
vote
2 answers

Customizing bootstrap.widgets.TbMenu

I'm using Yii Booster and i'm trying to make my list look like this, with the same ID's and CLASS's
1
vote
1 answer

bootstrap.widgets.TbDetailView, Yii app

Model-- enter code here public function searchShop() { $criteria = new CDbCriteria(); $criteria->compare("name", $this->category, TRUE, "OR"); $criteria->compare("shopname", $this->category, TRUE, "OR"); …
FSShaikh
  • 125
  • 3
  • 18
1
vote
3 answers

YiiBooster Navbar target _blank

I am using the navbar of the extension Yiibooster, but I am having problems with a subitem of the menu, I need to go to a new tab, but I can't make it. widget( 'bootstrap.widgets.TbNavbar', array( 'brand' => '
Sergio_HW
  • 155
  • 3
  • 18
1
vote
0 answers

Change YiiBooster widget generated URL

I'm having this issue: when I render a widget using YiiBooster it works great, but the problem comes when that widget has for example an JsonGridCiew will generate a table with all my data and also the pagination menu. The pagination menu has a…
General Electric
  • 1,176
  • 3
  • 21
  • 44
1
vote
1 answer

Conditional Drop down list Text value in Yii

I have a drop down list but I the text value is dependent on another value from the same model. What I want to happen is if the row from a model has a client_type_id value of 1 then the drop down text should be company_name else it will be the…
JohnnyQ
  • 4,839
  • 6
  • 47
  • 65