Questions tagged [cakephp-bootstrap-ui]

An API that transparently use Twitter Bootstrap 3 with CakePHP 3.

An API that transparently use Twitter Bootstrap 3 with CakePHP 3.

https://github.com/friendsofcake/bootstrap-ui

6 questions
2
votes
1 answer

Unable to display error message for cakephp3 bootstrap-ui

[x] bug BootstrapUI Version: v0.5.0 Bootstrap Framework Version: v3.3.6 jQuery: 3.0.0-rc1 Platform and Target: Google Chrome, Apache What you did App\View namespace App\View; use Cake\View\View; use BootstrapUI\View\UIViewTrait; class AppView…
1
vote
1 answer

How to use own element file for flash instead of Bootstrap-ui's default, CakePHP 3?

I am using bootstrap-ui plugin for Form but it automatically loads flash. I want to use my own element file for Success/Error/Warning etc but bootstrap-ui automatically uses its default.ctp element for rending flash message. So how can I use my own…
1
vote
1 answer

UI Bootstrap carousel not rendering images

ui-bootstrap seems not to render my images. -When using regular The images rendering just fine like they suppose to. - When using angular ui Carousel they seem not to render for me. I get nothing. I'm not sure what the issue is…
kkdeveloper7
  • 497
  • 2
  • 11
  • 25
1
vote
1 answer

cakephp 3 bootstrap-ui change prev/next text

I have FriendsofCake Bootstrap-ui plugin. I see in the source that it accepts text for the pagination prev and next labels. I am not sure how to exactly set the config option though. PaginatorHelper.php if (isset($options['next'])) { if…
Keith Power
  • 13,891
  • 22
  • 66
  • 135
0
votes
1 answer

firends of cake bootstrap-ui change color

I installed the https://github.com/FriendsOfCake/bootstrap-ui plugin with the install command. I'd like to change the primary color, where is the right place to do this?
eliane86
  • 13
  • 1
  • 6
0
votes
1 answer

while displaying it is ignoring first row of table

It is ignoring first row of table. What am I doing wrong? $sql = "SELECT * FROM combo1 group by id "; $result = mysqli_query($link, $sql); if ($result && mysqli_num_rows($result) > 0) { while($row = $result->fetch_assoc()) { echo…