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...
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...
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...
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?
...
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?
...
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...
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?
...
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...
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 ...
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...
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...
$('#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
...
How do I remove the close button (the X in the top left corner) on a dialog box created by jQueryUI?
...
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...
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...
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...
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.
...
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...
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>
...
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?
...