Could you expand on this? How would a webservice fix the problem?
On Jul 31, 10:55 pm, waseem sabjee wrote:
> i had this some time ago.
> solution.
> use a XML webservice.
>
> you are probably calling a specific html element from a specific page and
> injecting it into your page.
>
> using a XML
If you can't or don't want to add a table footer, you can pass the
sorter a selector that excludes the last row. The last sorter I looked
at didn't allow you to pass the selector in so I had to modify the
source.
On Jul 31, 10:08 pm, aquaone wrote:
> http://www.w3schools.com/tags/tag_tfoot.asp
>
Please elaborate? need some more info
On Fri, Jul 31, 2009 at 9:38 PM, Ratheesh wrote:
>
> Hi,
> In my jquery validattion, the control which is invalid doesnt get
> focus..
> Do you guys know what the reason is..?
>
> Thanks in advance
> Ratheesh
>
Hi all,
How do you workaround the fact that, e.g., firefox doesn't invalidate
a cached resource representation in the browser upon POSTing to the
uri of the resource?
My scenario is this:
A Google Map GETs a resource (a list of geo. points) which is cached
for an hour on the client to avoid the
Anyone?
On Jul 28, 8:02 pm, Warren wrote:
> I have this website:
>
> http://www.vampsworld.com/freelance_projects/aawc/
>
> with this JQuery:
>
>
> $(document).ready(function() {
>
> $('#homemenuoption')
> .css( {backgroundPosition: "-20px 35px"} )
>
I tested this on Ie that pulling data from a web page itself used to take
quite a while and would end up being frustratingly slow.
as soon as i switched to a web service things were better.
my problem was on ie7 only.
On Sat, Aug 1, 2009 at 12:03 PM, Adrian Lynch wrote:
>
> Could you expand on
Hello,
I'm trying to execute simple scenario, from the server side (servlet)
I'm returning: out.print("[{\"type\":\"basic\"}]");
on the client side I have :
var dataURL = "<%=response.encodeURL(request.getContextPath())%>/
FetchData";
var items1;
$.getJSON(dataURL, function(json){
Hi all,
I am attempting to use two different Jquery scripts on my page and
they each have their own css declarations which I'm having a hard
time getting around. I tried using an iframe to contain the other
elements and while it worked, it was not an elegant approach for what
I ultimately needed
Amazingly, on the same day... I just hit this problem as well.
Superfish, in IE7 does not seem to like elements with
position:relative; behind it. And it seems embedded Google Maps
require their containers to include a "position:relative;"
@amuhiou: sorry, posting example code is not realistic i
Having the same problem.
>From what I can gather, Superfish in IE7 goes behind any element that
has "position:relative;" declared, and it just so happens that
embedded Google maps seem to require it's container to declare that
explictly.
I can't provide a demo right now (about jump on a plane) bu
Hello people, i'd like to know if it's possible change de message
while the page is block by "blockUI" jquery plugin. I've tried a lot
of things, but none was good. One thing i've tried was using CSS
selectors like:
$('blockUI blockMsg blockPage').innerHTML
but it hasn't worked.
Any idea?
Tha
Thanks for the responce.
On Sat, Aug 1, 2009 at 7:36 PM, Boris Anthony wrote:
>
> Having the same problem.
> From what I can gather, Superfish in IE7 goes behind any element that
> has "position:relative;" declared, and it just so happens that
> embedded Google maps seem to require it's container
I'm using a gallery scrollable component for thumbnails. When a user clicks
on the thumbnails it loads that larger version of the image into a div on
the same page. All the large images are already loaded into the div.
My problem is when a user goes to click on the larger version of the image I
Hello guys,
I'm trying to update a script I found out there in order to fit better
my needs.
The first step I want to update is the capability to bind a dynamic
number of anchors.
Right now with the HTML below
FIRST>
SECOND
THIRD
I have the script below:
$("#product_links .first a
Do you have any debugging tools such as Firebug? You don't have to spend
hours on a problem like this, when Firebug can show you the answer
instantly.
Simply put this line of code before your eval():
console.log( json );
Then look at the Firebug console. You will see that your 'json' variab
$("#product_links a ").bind("click", function() {
pupup_elemet( $(this).parent().attr("id") );
});
- Richard
On Sat, Aug 1, 2009 at 2:39 PM, macsig wrote:
>
> Hello guys,
> I'm trying to update a script I found out there in order to fit better
> my needs.
>
> The first step I want to update i
Thanks Richard for your reply.
I have tried your code but looks like something is wrong.
To be sure I catch the right id I tried something like
$("#product_links a").bind("click", function() { alert( $
(this).parent().attr("id") ); });
and I get an empty alert window.
Am I missing someth
Sig, the parent of your element is the , which has no id attribute.
It sounds like you want the class attribute, not the id, so you could
change:
.attr('id')
To:
.attr('className')
-Mike
> From: Macsig
>
> Thanks Richard for your reply.
>
> I have tried your code but looks like so
Happy to announce the final 3.5 release of jqGrid.
New wiki Documentation at http://www.trirand.com/jqgridwiki
The demo at http://www.trirand.com/jqgrid/jqgrid.html
and final the home : http://www.trirand.com/blog
Enjoy
Tony
Hello,
Sorry - the release is 3.5
Tony
On Aug 1, 10:23 pm, Tony wrote:
> Happy to announce the final 3.5 release of jqGrid.
> New wiki Documentation athttp://www.trirand.com/jqgridwiki
> The demo athttp://www.trirand.com/jqgrid/jqgrid.html
> and final the home :http://www.trirand.com/blog
>
> En
The function below formats a text field for autocompletion based on
the element id. The thing is, that when a user begins typing in the
field, another row with the same name will appear beneath it, so that
the input fields wind up looking like this:
Since each input field can only have one i
Hi,
I'm a jQuery beginner.
My browser is Firefox 3.5.1
I'm using Treeview 1.4
Revision Id: jquery.treeview.js
4684 2008-02-07 19:08:06Z
joern.zaefferer
I have two questions:
1.Whenever I click on either of my two Treeview control
labels "Collapse" or
I bind a custom event on page A,then ajax load page B。In page B,there
is a link which trigger the custom event.
Problem is :the trigger function work when i place the trigger
function in page A ,but not work in B by ajax load.
Help!
jQuery Core:v1.3.2
Hi!
I'm trying to show the selected menu with a different color background
when a user clicks on a particular main menu item. This works with a
ul that does not have child items on it. But ul's with child elements
the css does not seem to work and seemed overridden by javascript.
What i did was
Hi,
It wasn't clear to me if you were talking about the treeview.js plugin
or not. If not just ignore this reply. If so, see the following figure.
If this is the effect you want I'll send you the code. Notice that the
leaves have a blue background; the nodes have a transparent background.
E
Please see:
http://docs.jquery.com/UI/Tabs#...my_slider.2C_Google_Map.2C_sIFR_etc._not_work_when_placed_in_a_hidden_.28inactive.29_tab.3F
On 30 Jul., 20:01, vvaz wrote:
> Hello all.
>
> I have a problem with the jCarousel Plugin when i try to display a
> second carousel inside one tab.
>
> Ok,
I decided to put it an iframe.
utimass wrote:
>
> correction, I got the images showing now, but not the animation.
>
--
View this message in context:
http://www.nabble.com/page-sliding-jQuery-Javascript-code-not-playing-with-DHTML-page-tp24679601s27240p24774392.html
Sent from the jQuery Ge
I am attempting to use multiple carousels with a callback function on
one page, and for some reason when I click the next button of one
carousel, a previous on the same page increments as well as the
carousel that contains the next button. After doing some debugging I
realized that the both carou
you should change your html something like:
FIRST
SECOND
THIRD
then in order to get the id of your li you can use the following code
$('a', '#product_links').click(function() {
alert($(this).parent().attr('id'));
});
On Au
http://users.tpg.com.au/j_birch/plugins/superfish/#options
use pathClass for your "current" . Can assign any class name you want
then add it to options in constructor
As for sfHover class, it's reserved for script to manage CSS when sub
levels are open, sffHover will be added to li's. Wouldn
Amazing work! I've used the beta 3.5 . Themeroller integration is very
cool and the level of customization of jQgrid functionality is
outstanding
Tony wrote:
Happy to announce the final 3.5 release of jqGrid.
New wiki Documentation at http://www.trirand.com/jqgridwiki
The demo at http://w
31 matches
Mail list logo