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

how to pass a php variabe to yiibooster modal window via link

I want to pass a php variable to modal window , what i am doing is opening a modal window using this link , but i want to pass a variable to this link and get same variable in modal window , i try to to do this to append a text in some div but it…
FahadAkram
  • 445
  • 1
  • 5
  • 25
0
votes
2 answers

Yii DropDownListRow - choose Controller Actions

Is it possible to create a DropDownListRow on a form that has no $model parameter? I want to have users select from a list of controller Actions using a DropDownListRow (the YiiBooster variant of DropDownList). I'm just working with a list of…
zDaniels
  • 600
  • 1
  • 10
  • 21
0
votes
1 answer

Yii relation between createURL and urlManager

I'm new to web development, and I've spent hours trying to understand Yii and how it handle's URLs. I've read scores of tutorials and still don't understand it. I'm trying to set the URL for a button widget, for a menu widget, for a Controller…
zDaniels
  • 600
  • 1
  • 10
  • 21
0
votes
2 answers

Yiibooster - TbExtendedGridView

I am using YiiBooster extensions --> TbExtendedGridView --> The Grid/Chart switcher in my application. Grid/Chart Switch So by default it displays the Grid view and we can select chart option too. Does anyone know how can I change it to chart as the…
neophyte
  • 1,726
  • 3
  • 15
  • 21
0
votes
1 answer

Yii booster TbImageColumn - setting Image attributes

Is there any way to add other attributes to the image tag generated by TbImageColoumn ? The documentation is not very clear on how to set image attributes like height, width etc. It only mentions on how to add image src using imagePathExpression…
Manquer
  • 7,390
  • 8
  • 42
  • 69
0
votes
1 answer

Yii update from modal window

I need to update a modal window and show it when I click in the edit button. CONTROLLER: public function actionUpdateAjax($id) { $contratos = ZfContratos::model()->findByPk($id); …
Sergio_HW
  • 155
  • 3
  • 18
0
votes
1 answer

how to use the “required” attribute in Yii booster radioButtonListRow

Does Anyone know how to use the "required" attribute in Yii booster radioButtonListRow for client side validation only? echo $form->radioButtonListRow($model, 'radioButtons', array( 'Option one', 'Option two', ));
user3322300
  • 113
  • 1
  • 1
  • 7
0
votes
1 answer

preselect option with radiobuttonlistrow

I want to know how to preselect an option using the radiobuttonlistrow in yiibooster, I have read the yii documentation and in the case of radiobuttonlist it doest have an option to preselect the value but with yiibooster I can't find anyway to do…
General Electric
  • 1,176
  • 3
  • 21
  • 44
0
votes
4 answers

Remove red * in required fields Yiibooster

I'm using yiibooster and it is really good extension for the frontend, my issues now is that I want to remove the red * that is rendered in the required fields but maintaining the required validator in the model, anyone knows how to do…
General Electric
  • 1,176
  • 3
  • 21
  • 44
0
votes
0 answers

YiiBooster :: bootbox \ bootbox.modal() does not generate .modal-dialog and .modal-content divs

I need this TbButton to open a modal with some HTML content (an iframe with a youtube video): widget( 'bootstrap.widgets.TbButton', array( 'label' => Yii::t('xxx', 'xxx'), 'type' => 'info', 'size' =>…
0
votes
1 answer

YiiBooster modal Dataprovider Undefined

I am trying to load the index view from another model view in a modal window using yiibooster but the dataprovider of this model looks like it is undefined: beginWidget( 'bootstrap.widgets.TbModal', array('id' =>…
Sergio_HW
  • 155
  • 3
  • 18
0
votes
1 answer

yiibooster wizard validation

I have done a yiibooster wizard form, everything works perfectly BUT i want to force the customer to click in a TbExtendedGridView before he can do the next step. In the form there are 2 TbExtendedGridView and 2 date fields. Here is some code of the…
Sergio_HW
  • 155
  • 3
  • 18
0
votes
2 answers

Is it possible custom classes to be added to the table element of bootstrap.widgets.TbGridView?

When I use 'htmlOptions'=>array('class'=>'table-bordered table-condensed'), the custom classes were added to the wrapper div and not to the table element
Displaying…
0
votes
2 answers

Yiibooster modal from navbar

I need to call my modal widget from a navbar using Yiibooster widget( 'bootstrap.widgets.TbNavbar', array( 'brand' => 'Inicio', 'fixed' => false, 'items' => array( array( …
Sergio_HW
  • 155
  • 3
  • 18
0
votes
1 answer

Prefilter bootstrap.widgets.TbGridView with URL parameters

Is it possible to predefine a filter in TbGridView trough URL parameters?