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
12
votes
1 answer

How to edit the header in a yiibooster gridview?

I started using yiibooster for in-place editing on a gridview simple add $columns[] = array( 'name' => $field->name, 'value' => array($this, 'cellValue'), 'class' => 'bootstrap.widgets.TbJEditableColumn', …
axon
  • 4,081
  • 1
  • 12
  • 14
4
votes
1 answer

How to put yiibooster's textField inside /view/layout/main.php in Yii

I'm using YiiBooster and trying to make a TextField within TbActiveForm inside the /views/layouts/main.php For the controller I've added:
JoenMarz
  • 143
  • 3
  • 13
3
votes
1 answer

Yii1 CGridView(Yii-Booster): How to change filter key(filterVal) in TbGridView(based on CGridView)?

I am using yii-booster(4.0.1) TbGridView(extends CGridView) and need to change the filter variable name in _REQUEST($_POST, $_GET) for filter function. In my grid, I have filter functionality and when I press enter after entering some words in the…
3
votes
1 answer

How to pass previous and back element's id in yii grideview?

I am trying to create a link in yii1.1's grideview with it's id and its previous and back elements id. array( 'class' => 'bootstrap.widgets.TbButtonColumn', 'template' => '{manage}', 'buttons' => array( 'manage' => array( …
Anil Chaudhari
  • 801
  • 14
  • 30
2
votes
0 answers

Yii's CCaptcha fails to validate

I am using Yii 1.1 with some bootstrap.widgets. I am trying to implement a CAPTCHA into my registration form using Yii's CCaptcha with CCaptchaAction. Currently I have a UserController which deals with the rendering of the CAPTCHA image and sets the…
juhojo
  • 43
  • 5
2
votes
2 answers

How to load jquery-1.11.2 with bootstrap and booster?

I am using yii framework with Boostrap and Booster. On my web page i need to use jQuery version 1.9.1. When i include it eg $cs->registerScriptFile($baseUrl . '/js/jquery-1.11.2.min.js') i start getting all kinds of Jquery errors eg…
Gunnit
  • 1,064
  • 5
  • 22
  • 45
2
votes
1 answer

Adding function call on ajaxsubmit YiiBooster

I am using YiiBooster extension in yii. I have created a form using 'booster.widgets.TbActiveForm', it works like a charm Now I just want to submit my form with ajax and update a grid let's consider that my form id = myform my grid id = mygrid I…
2
votes
2 answers

Yiibooster TbButton url link not work

i want the button link to another web page, i'm using following code in my view file: $this->widget('booster.widgets.TbButton',array( 'context'=>'primary', 'label'=>'button', 'url'=>'www.baidu.com' )); and the html it generated…
Charles Bao
  • 255
  • 1
  • 5
  • 16
2
votes
1 answer

Yii Booster Wizard Form Widget Content

I am trying to put in the content of a wizard form of yiibooster a widget, but i can't make it work. The idea is the customer to have a step by step form, selecting in each content some data. The widget is…
Sergio_HW
  • 155
  • 3
  • 18
2
votes
1 answer

How do you set the page size of TbExtendedGridView in YiiBooster module?

Is there an option in TbExtendedGridView widget where you can set the items to be shown in each page? I currently have this setting $this->widget('bootstrap.widgets.TbExtendedGridView',array( 'id' =>…
JohnnyQ
  • 4,839
  • 6
  • 47
  • 65
2
votes
3 answers

Yii Bootster - TbTabs Change Tab Event

How can I control a change of tab event when using TbTabs in Yii Bootter? Here is my code (but it didn't alert when I have changed tab): $this->widget('bootstrap.widgets.TbTabs', array( 'type' => 'tabs', 'tabs' => array( …
Tín Phạm
  • 642
  • 1
  • 6
  • 16
2
votes
2 answers

YiiBooster - htmlOptions for items does not work?

I'm using http://yii-booster.clevertech.biz/components.html#navbar and I want to generate navbar. I have a problem with that because I have to use pull-right css class on one of the items. Why does htmlOptions not work? How to use pull-right on item…
kabra
  • 1,306
  • 1
  • 17
  • 24
1
vote
1 answer

get Published assets url from out side the extension yii1

I am making a plugin File Manager for redactorJs to be used in Yii1 Framework and i have some custom view files and a controller that are used inside the plugin, inside those view files i have to reference some js and css files from that plugin…
Muhammad Omer Aslam
  • 22,976
  • 9
  • 42
  • 68
1
vote
1 answer

How do I set customized placeholder in 'booster.widgets.TbActiveForm'?

I use like this..
textFieldGroup( $User,'email_address', array( 'wrapperHtmlOptions' => array( 'class'=> 'col-sm-5', ), ) ); ?>
But…
Mohibul Hasan Rana
  • 237
  • 2
  • 3
  • 16
1
vote
0 answers

Update database using TbEditableColumn YiiBooster

I'm working with Yii and YiiBooster, I'm using TbEditableColumn to edit my GridView. Is it possible to change data in my table using this editable column? This is my code: $this->widget('booster.widgets.TbGridView', array( 'id' =>…
Cesario
  • 75
  • 1
  • 9
1
2 3 4 5 6 7