jquery-ui

ASP.NET with jQueryUI: server side event not firing

I have an ASP.NET page where the page is making use of jQuery UI dialog. When a user is clicking a button (btnGo) in a page, I will check if the user is logged in or not. If not logged in, I would show the jQuery UI dialog to login. I used this code: <body> <form id="form1" runat="server"> <div> <br /> <asp:TextBox ID="txtModel...

How to resize width of a Jquery dialog after initialization

Hi, I'm trying to change the width of a JQuery dialog after it has been initialized. Here is my initialization: $(function() { $("#dialogContainer").dialog({ title: 'Some title', resizable: false, bgiframe: true, overlay: { opacity: 0.3, background: "white" }, position: [200, 200], autoOpen: false, height: 150, width: 'auto' modal: tru...

Has the community for the jQuery HighlightFade plugin died?

I'm currently using the jQuery HighlightFade plugin and can't seem to find if anyone is working on the next version (beyond 0.7 that is). I only went out looking for a new version because after I updated my jQuery.UI from 1.5.x to 1.7.x - the plugin doesn't work for IE 6/7/8 anymore (not sure if this plugin depends on jQuery UI, but I w...

Show/Hide an accordion panel in Jquery when clicking edit in a gridview?

I have a Jquery Accordion and I have a asp.net GridView below that. When I click on the edit button in a gridview row, it goes and grabs some data. Depending on which row is clicked, I want to show/hide an accordion panel. Can I accomplish this in the GridView_RowEditing event, if so, how? ...

How do I initialize a jQuery UI datepicker to a date from the querystring?

Given this markup: // Calendar.html?date=1/2/2003 <script> $(function() { $('.inlinedatepicker').datepicker(); }); </script> ... <div class="inlinedatepicker" id="calendar"/> This will display an inline datepicker with very little effort (awesome!). How do I preset the datepicker to the date passed in via the query string? ...

Any good lightweight date/time picker for web with good UI ?

Few wishes, If it is jQuery based, best. If it focus easy UI then eye candy, better. If it is date and time picker both, good. Edit: I should have mentioned , I already looked most options available that I can found using google. Problem is not a single date+time picker is part of official jquery-ui project so some are for old jquer...

capturing the style property top's value change using Jquery

Hi friends, In my we page i am dynamically changing the top value for a div's style ie. <div id="div1" style="top:89;">Test </div> What i need is to capture the event using Jquery while top value is changed to 88 or 90? ...

jQuery UI Tabs with $(document).ready equivalent

I'm trying to use jQuery UI tabs much like a Master Page in ASP.Net. I have specific javascript that needs to run once each tab is loaded. I've tried to have a $(document).ready function in each page, but I've read that's bad practice and only seems to work in IE. I know there's a load event, but I need to the event to be specific for...

How to implement "confirmation" dialog in Jquery UI dialog?

I am try to use JQuery UI Dialog to replace the ugly javascript:alert() box. In my scenario, I have a list of items, and next to each individual of them, I would have a "delete" button for each of them. the psuedo html setup will be something follows: <ul> <li>ITEM <a href="url/to/remove"> <span>$itemId</span> <li>ITEM ...

How to bind jQuery resizable with an image?

I would like to know how to make resizable image with jQuery on the fly. It's something like an image has resizable border and we can drag that border with mouse in order to become smaller or bigger of the image. When I use resizable, only background continent become bigger but image is still the same size. Thanks in advance for your pre...

How do I set the jQuery UI Slider value programatically and fire events?

I have a slider defined like so: $("#slider").slider({ orientation: "vertical", range: "min", min: 0, max: totalRows, value: totalRows, slide: function(e, ui) { scrollTheTable(ui.value, totalRows, visibleRows, $table); } }); When using the slider, the function ass...

Does the 'explode' effect has a maximum for the number of exploded blocks ?

$('#global').show("explode", { number: 50}, 2000); I tried this code but it doesn't seem to work properly. It looks like it's limited i never got more than 8/10 exploding blocks. Are there a maximum ? Any ideas ? the explode effect is a native effect from the jquery-ui ...

Remove close button on jQueryUI Dialog?

How do I remove the close button (the X in the top left corner) on a dialog box created by jQueryUI? ...

JQuery Slider Examples With Classic ASP?

I'm about to try and implement the JQuery slider into an old Classic ASP store, where the slider would control the price range. So have a price between say $40 and $80 and you could use the slider to go between $50 and $60... Anyone know of any examples of using the slider with ASP in this way? I'm guessing I store the values in hidd...

JQuery datepicker not displaying properly

I recently migrated from JQuery 1.2 to JQuery 1.3. However the DatePicker UI is giving me a problem. I have a text field withing a JQuery dialog. A datepicker is attached to this field. When I click on the field the datepicker pops up but behind the dialog box, which blocks out almost the entire DatePicker. Also the DatePicker does not d...

jQuery UI Dialog steals focus

Hi I have a jQuery UI dialog which hosts a number of buttons. I would like to have keyboard control (tab-navigation) on these buttons, so on the open event handler for the dialog, I set the first button to focused. I can visibly see this works, and also verify it using document.activeElement, but the focus is then stolen and something...

How to rotate image with jQuery like 'Free Transform' in Photoshop?

Hi all, I've searched everywhere but can't find how to rotate(degree) with image border or something like 'resizable' in jQuery. What I mean is something like 'Free Transform' border in Photoshop which has 4 place to rotate at each corner of image. Thanks all in advance. ...

Stuck reloading ajax content in a jQuery Tab programatically.

Hello, I'm very new to programming so please forgive me my noobness. I'm using the excellent jQuery tabs for my application, I load external content into the tabs via ajax, and in one of those tabs I need to programatically reload the content of that tab fter a result. I've followed the documentation* to no avail. I have initialized th...

Colums resize when using JQuery UI's toggle in IE

Example code: <html> <head> <script src="jquery-1.3.2.min.js" type="text/javascript"></script> <script src="jquery-ui-1.7.1.custom.min.js" type="text/javascript"></script> </head> <body> <table border="1" style="width:100%"> <tr> <th>1</th> <th>2</th> <th>3</th> ...

JQuery UI DatePicker - Can it handle multiple dates?

I need to display an inline calendar that allows one to click 1 or more dates for selection. Can the JQuery UI datepicker 1.7.1 do this? ...