96 questions
0
votes
1
answer
746
views
Understanding jQuery UI Button Widget
Im looking to recreate the following button after updating to the latest version (button widget was rewritten in 1.12 onwards, However im struggling to get the syntax/classes correct based of the api ...
0
votes
1
answer
248
views
Can not open jQuery UI dialog multiple times - test case included
I have prepared a simple test case demonstrating my problem -
I use a jQuery UI button to open a jQuery UI dialog:
However this works only once. On subsequent button clicks I get the error:
...
0
votes
1
answer
686
views
How do I discover all available properties when using a jQuery UI widget?
I have recently found that there are additional properties for some jQuery UI widgets that work, but are not documented. For example, when providing the buttons property on a jQuery UI 1.11.4 dialog ...
0
votes
1
answer
733
views
JQueryUI Radio Button Examples Not Working
I'm trying to replace some radio buttons with the nice-looking JQueryUI kind. However, when I copy the sample code at http://jqueryui.com/button/#radio (which works fine as seen on that page) directly ...
0
votes
3
answers
188
views
Get nth button in a jquery-ui buttonset
Is there some way to get the nth button in a jquery-ui buttonset?
$( "#radio" ).buttonset();
<link href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css" ...
0
votes
1
answer
83
views
Why have my jQuery UI buttons reverted to outsized and generic?
I've used the jQuery UI before to fancify buttons. But now with this code:
else if (ui.newTab.index() == 3) {
$('#MediaContent').load('Content/TwainMedia.html');
$('#MediaContent').css('...
0
votes
1
answer
244
views
Manipulation dom after using jsrender
Im my project I use jsrender.
Below my example of code.
<script id="usersTemplate" type="text/x-jsrender">
<button id="createUser">Create</button>
<table>
<tr>
<...
0
votes
3
answers
2k
views
jQuery UI: How to customize buttonset corners?
Like the image below, how can I customize the corner of the radio buttonset of jQuery UI? Instead of have a round corner at right side of a button, how can I customize it and make it has rounded-...
0
votes
1
answer
498
views
jQueryUI radio button visible
jQuery mobile leaves the radio button visible. Is this possible with jQueryUI without too much effort? Users understand the functionality of a radio button, so I'd prefer to keep that visual ...
0
votes
1
answer
3k
views
jQuery button. Remove when clicking icon
Im using jQuery ui button to create divs that look like buttons dynamically. Clicking on these divs should open a dialog and clicking its icon should remove the div(button). Ive tried several ...
1
vote
1
answer
146
views
jQuery divide a buttonset into a certain number of rows
I was looking for a jQuery plugin that let me create an array of buttons and I found jQuery UI buttonset
Now this widget is very close to what I need, since only one button can be checked at the time,...
0
votes
1
answer
50
views
jquery ui button creating trouble
<table class='dates'>
<form method='post' action='' name='admin' id='form_admin'>
<tr>
<td>Start Time Of Election</td>
<td>: <input type="text" id="...
2
votes
2
answers
74
views
Can I get the improved appearance of the jQueryUI button while limiting its size?
I like the general look of the jquery ui button, but it is oversized for my purposes. Is there a way to replace the blah look of the generic jQuery button with the pizzazz of the jQueryUI button while ...
4
votes
4
answers
13k
views
Remove jQuery UI Dialog Button border/outline
Which class do I need to modify/change to remove the outline of a JQuery UI Dialog Button. I can't seem to figure out which class is applying the border/outline around the 'X' button. The outline ...
0
votes
2
answers
231
views
How to make all buttons(even dynamically created) in an application follow jquery button widget without calling .button() multiple times
I am new to stack overflow and this is my first question. Pardon me for any mistakes.
This question is more generic but i tried to search for an answer but could not find it.
Say i have a page and i ...
1
vote
1
answer
1k
views
jQuery ui button image not displaying
I´ve tried to use a jQuery Ui button with an image. So i wrote the following code:
$("#analyse_button").button({ icons: { primary: "fb-icon" } });
.fb-icon {
background-image: url(./fb-icon.png);...
3
votes
1
answer
5k
views
jQueryUI Buttonset CSS issue
I have a set of Checkboxes that I am using with a Buttonset to make them look like buttons
<div id="ButtonList">
<input type="checkbox" id='Check0' value="true" /><label for="...
0
votes
1
answer
923
views
Jquery UI not styling button inside a class
I am writing a site in PHP and I have written an index page that swaps its content tag.
When I include the default.php inside of the The button is not being styled.
Jquery UI works properly ...
0
votes
1
answer
818
views
using jQuery UI buttonset in angularjs
Problem statement: show a JQ buttonset for each element in a controller scope array.
So something like this would be logical:
<div ng-repeat='a in algos' mybuttonset>
<input name='X' id='...
0
votes
1
answer
93
views
jQuery button refuses to style
I am trying to style my jQuery buttons according to the instructions on the website but it won't work. I followed the instructions here: http://jqueryui.com/button/#checkbox
What am I doing wrong? ...
2
votes
1
answer
3k
views
How can I disable one button of a jQuery-UI buttonset?
Example here:
http://jsfiddle.net/UVHtu/19/
I need to fill in the blank:
HTML:
<div id="options">
<input type="radio" id="op_a" name="op" value="a" />
<label for="op_a">...
0
votes
1
answer
197
views
How to make jquery-ui buttons have same size for different browser
I have jquery ui code for buttons as follows. I want these series of buttons to fit in same size (810px). They appear as same size for firefox and chrome but they look smaller in IE. I have try ...
0
votes
1
answer
414
views
Select jQuery UI Button by Label or $.Data
My buttons are input type=button, id field set, and no text in between the tags since it appears to the right of my buttons rather than inside. (sorry, won't let me publish the html for some reason).
...
0
votes
3
answers
399
views
Jquery UI button issue
Please take a look at this
http://jsfiddle.net/WAre9/4/
The problem is, after changing the text of link, .button() doesn't work properly.
Here is scrshot before:
And after mouse click:
As you see ...
0
votes
1
answer
1k
views
jQuery UI Radio Set - Hover and Checked states without Javascript
For some reason I cannot find a proper way to adjust the HOVER and SELECTED states of the jQuery UI Radiosets.
Not sure why I can't find it, perhaps someone could give me some direction?
What I want ...