This topic is locked
[SOLVED]

 curom checkboxes on list and view

6/13/2014 6:42:00 AM
PHPRunner General questions
C
cristi author

I am using THIS to customize the checkboxes in an application.

On the add and edit page everything is O.K. but on list and view the checkboxes resets to default view or in the case of list page the style is applied to the "select all" checkbox and the control checkboxes...
I use this on the add and edit and it is working O.k.:

jQuery(document).ready(function($){

$("input:checkbox").uniform();



});


I know that I must find the correct name for the checkbox field class in list and view pages but I can't find them with google developer tools or I don't know how.
Could please someone point me in the correct direction in order to find this?

Sergey Kornilov admin 6/13/2014

Just to make sure we are on the same page:

http://xlinesoft.com/livedemo/phprunner/livedemo1/products_list.php
Check boxes you see on the left side of the grid are real check boxes and can be customized this way.

Check boxes that you see in the last column (Discountinued) are images and cannot be changed this way.

C
cristi author 6/13/2014

Yes about something like discontinued I was talking about...

So, I cannot use javascript like this.

I will try with custom css.

Sergey Kornilov admin 6/13/2014

Custom CSS will not work either, they are images. Replace files like images/check_yes.gif and images/check_no.gif with your own images and this is it.

C
cristi author 6/13/2014

Yes, as always you are right - they are simple images.
Thank you.