jquery-ui

DevExpress ASPxComboBox, ASPxTextBox and JQueryUI Tabs

Hi, If I place a DevExpress ASPxComboBox or ASPxTextBox within a JQueryUI tabs widget, any data that is within a DevExpress control that is not on the initally active tab does not get displayed, although the DevExpress controls themselves are (they are just blank). Removing the tabs functionality for testing (by not calling the JQuery,...

jQuery DatePicker - Does not disappear in IE7 after selection

Hi all, I am using the standard jQuery datepicker which works fine for me in all browsers except Internet Explorer 7 - the date can be selected, and the text field does populate, but the datepicker itself doesn't disappear. I didn't modify the script at all so I don't really have any unique code to post - I was really just wondering if ...

Dynamic button names on jQuery dialogs

I have a webpage that uses different languages stored in localStorage, and on the jQuery dialog I want the names of the buttons to be dynamically changed according to the language, for example : var btn_hello_text = getLanguageBtnHelloText(); $('#dialog').dialog({ autoOpen: false, buttons: { btn_hello_text: function() {...

Adding Mouseover / Mouse Active events to jquery content tab slider

Hi All: I'm using a feature content tab changer I found online. I've done a few changes to it, but I need to add the ability to store state of the active tab(), hover tab and switch to an image for each of those states. img1_off, img2_off, img3_off img1_active_ img2_active, img3_active img1_hover, img2_hover, img3_hover Example Tab 1...

error when using jquery dialog?

Dear all every time i try using jquery dialog i get error null when debugging using firebug, here is the code <script type="text/javascript" src="js/jquery-1.4.2.js"></script> <link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.1/themes/base/jquery-ui.css"&gt; <script type="text/java...

asp.net mvc and jquery datepicker ui data fetch on clicking on specific date

I'm using the jQuery UI datepicker to display the daily exchange rate. I have four textbox, the first for displaying today's date, and the others for displaying the dollar rate, buying rate and selling rate. The dollar rate is fixed and is set to 1. The buying rate and selling rate are updated daily and inserted into exchange rate table ...

jquery popup form and codeigniter framework

Hi Guys, I'm trying to develop a system using Codeigniter, i tell you what i want problem is i don't know how to achieve it, and tried to find tutorials it didn't worked out either! :( I'm displaying the data from a MySql table as a list in my user interface, there is a separate link for each list entry, when the user click on that li...

Jquery Drag n Drop Stage

Hi Experts, I am trying to create a stage. I have 5 items in a draggable div. There clones will be dragged to 20 droppable areas. I have created 20 boxes of divs with different ids. Means multiple drop able areas. The problem is that I don't have the idea that how can I get id the of the div where the item is dropped and how, I will s...

Hiding a jquery ui accordion panel

I have these several datalist of hyperlinks, which will append a querystring to the URL when cliked. These datalists are inside 7 panels of jquery ui accordion. Is it possible to hide a panel if I click any of the hyperlinks inside it? How do I do this? Let's say I clicked a hyperlink in datalist 1 which is in panel 1, when the page red...

JQuery Accordion Hide Div

I am using jquery accordion from this website Accordion Site it works very well with images but it does not work with contents. So I modified the javascript and it worked. The issue is now when I try to hide div it does not work but when I set css property display:none it works fine. Here is the code where I am stuck function closeMe...

JQuery UI progress bar not showing up until page loads fully

Hey guys, I'm loading a dynamic application (which takes 20-30 seconds), and I'm trying to create a dynamic progress bar that shows the user how much of the task has been completed dynamically as the page loads. I'm accomplishing this by setting buffer to false and having my script output a line of JavaScript as it progresses that call...

jQuery - CSS - Rotate Div by drag mouse event

Hi, I'm searching since a few day without real result, maybe someone can help me here. I've a div on my page (can containt an image, a text area, other), it's draggable and resizable (thanks to jQuery UI), and i want to make it "rotatable", with a handle in a corner to drag and rotate it using css transform (-wekbit-transform, moz-tran...

jquery-ui vertical navigation menu using with themeswitcher.

Hello, I would like to have a vertical navigation menu compatibbel with jQuery UI ThemeRoller. How can I define the styles for my menu? I just build menus dynamically and php code is following: $menu = '<ul>'; foreach ($items as $val) { if ( 'sep' == $val['link'] ) $menu.=$val['label'].'<br>'; else { // echo $_SER...

ZendX/Jquery ui - open dialog box on click

Hi, When a user clicks on the button delete, I want a dialog box to appear, to confirm the delete. I can get the dialog box to appear on page load, but am running into problems getting it to appear on a button click instead: <?php echo $this->dialogContainer( 'dialog', 'Are you sure you want to delete this postcode?', array( 'autoO...

JqueryUI theme with SASS

Hello, Anyone used JQueryUI theme in Sass. A search gave few projects at Github, but did anyone used them? Is it possible to change the colors easily if only the base theme is available (if them roller is not possible to use with). Or what do you suggest to theme the base theme. thanks. ...

jQuery UI Show Method fails in IE

I'm using jQuery 1.4.2 and jQuery UI 1.8.4, on the latest versions of IE and Firefox, under Windows XP. Firefox is fine with the following code: var $container = jQuery('<div></div>'); jQuery('body').append($container); $container.show('size', {to: {width: 640} }, 'slow'); $container.show('size', {to: {height: 500} }, 'slow', function()...

Using JQuery UI's sortable('serialize') after loading data in via .load();

I have a page (page1.php) where I am using a select box to load in another page (page2.php) into a DIV. Inside page2.php there is a UL that loads data from a database (via PHP) into LIs and the are sortable. My problem is, when I load page2.php by itself, it serializes fine. However, when page2.php is loaded via .load() into page1.php, ...

Is there a way for MVC Partial View retrieved using jQuery to keep UI CSS Styling?

Hi All, I have an MVC 2 project, consisting of a MasterPageView a child View called Index and a number of PartialViews. The PartialViews are loaded into the Index View using the jQuery Ajax method $.get(....). My problem is that I am styling the buttons using jQuery UI like: $('button').button(); but I find that I need to do this on...

IE8 - CSS overflow hidden, fix causes further problems with jquery

Problem part 1: Basically I have the age-old IE problem of overflow: hidden; not working in IE. The fix (which does work, admittedly) is to also add "position: relative;" to the element/parent; however this causes a problem for me. Firstly I want to know if there's another way without appending position relative. If this is the only ...

Passing a function name to a JqueryUI dialog box button

I have a page with a jqueryui dialog box that I want to pass a function name to be run when the dialog box button is clicked. I would like to pass in this function name as a parameter to the calling function. In the mydialog function example I am trying to use the parameter funcName as the function name in the confirm button So far, I...