Questions tagged [jquery-uniform]

A jQuery plugin to style form controls.

jQuery Uniform is a jQuery plugin to style form controls.

Uniform masks your standard form controls with custom themed controls. It works in sync with your real form elements to ensure accessibility and compatibility.

14 questions
5
votes
3 answers

AngularJS UniformJS Select Control not updating

I'm building an application using AngularJS and UniformJS. I'd like to have a reset button on the view that would reset my select's to their default value. If I use uniform.js, it isn't working. You can examine it here:…
fbhdev
  • 526
  • 7
  • 17
4
votes
3 answers

How to remove uniform function on a specific select?

i am using uniform js for changing the background images of checkbox, radio buttons, select box. For this i include jquery file, uniform library js file and another thing is a function of uniform js for initializing the function as $(function(){ …
Hassaan
  • 328
  • 1
  • 2
  • 9
3
votes
1 answer

Stying form elements with Uniform JS within Knockout templates

I am trying to learn Knockout while building a fairly complex dynamic form which is styled using the jQuery plugin Uniform JS. Since Knockout is dynamically building parts of the form on the fly I need to make sure Uniform JS keeps up and styles the…
Tomas Eklund
  • 573
  • 1
  • 4
  • 16
2
votes
2 answers

I want some html element in my form that uniform.js has no effect

I am using uniform.js to beautify my html forms. But I want some of the HTML elements to not be modified by uniform.js.
princesust
  • 138
  • 2
  • 8
2
votes
0 answers

jquery-uniform radio button not working yajra-laravel-datatable package (laravel 5.6)

I use yajra-laravel-datatable (laravel 5.6). I have put jquery-uniform radio button in datatable but that is not working. I use $.uniform.update() but it is not working. $(".styled_color_checkbox").uniform({ radioClass: 'choice', …
Sohil Shingala
  • 194
  • 3
  • 13
1
vote
0 answers

Why Firebug is not showing updated checked value in input using Uniform jQuery

One thing I noticed while using Uniform jQuery (http://uniformjs.com/#example): Open your Firebug and change radio buttons; you can see that it is adding a class in the tag. But the bad thing is that the radio button…
1
vote
1 answer

Reapplying uniform js to cloned selects

I'm cloning rows that contain two text inputs and a single select option. I'm using the Uniform plugin to style the selects. However, after the row is cloned, uniform styling is applied but uniform/the select itself doesn't work. The focus remains…
Ryan Palmer
  • 405
  • 2
  • 9
  • 26
0
votes
1 answer

Using jquery Uniform plugin with AngularJS

I am using the following AngularJS directive to integrate Uniform jQuery plugin with angularjs myApp.directive('pluginUniform', function() { return { restrict: 'A', link: function(scope, element, attrs) { …
skip
  • 12,193
  • 32
  • 113
  • 153
0
votes
3 answers

Prevent clicking a checkbox in Uniform library

I want to /uncheck a checkbox by JS and prevent user to /uncheck it by click. in normal checkboxes I can use this code: $('#checkbox').on('click', function(event){ event.preventDefault(); }); but this code does'nt work for Uniform checkboxes
Ramin Firooz
  • 506
  • 8
  • 25
0
votes
1 answer

How to style browsers default checkbox with Unform jQuery plugin using custom directive in angularjs

I simply want to style an checkbox for which I am using http://uniformjs.com jquery plugin with the angularjs. Here is the checkbox input element I want to style with the plugin:
skip
  • 12,193
  • 32
  • 113
  • 153
0
votes
1 answer

JQuery set focus on uniform select

A simple enough problem, probably with a stupidly simple solution, but I've been unable to find it anywhere. How do you manually set focus on a select that has been processed by Uniform.js?