[jQuery] Duplicate GridViews in jQuery tabs

2008-06-26 Thread vladv
Hi, I work with asp.net and jquery. I would like to have the same GridView displayed in many tabs, and only changing ObjectDataSource parameters so the data which is displayed will change. How can I do it without duplicating the GridView? Thanks for any help

[jQuery] Re: ASP.NET UserControl and jQuery

2008-06-09 Thread vladv
Thanks, In the second link there was never a good answer... I don't need error messages, I want to know in code if I should or shouldn't load jQuery. The reason I want to add the reference to jQuery and checking is that other people are going to use the control in their project, so on one hand I

[jQuery] ASP.NET UserControl and jQuery

2008-06-08 Thread vladv
Hi, I have a UserControl to which I would like to add some jQuery functionality. There are 2 issues with this: 1. Where should I include the jQuery library reference and where to call the functions? 2. How can I check if the jQuery lib is already loaded by the main page (the page to which the User

[jQuery] ASP.NET UpdatePanel vs. jQuery - Tutorials

2008-05-30 Thread vladv
Hi all, I'm looking for some kind of tutorial for the topic in the title... Thank you

[jQuery] .length doesn't work in Firefox

2008-05-28 Thread vladv
Hello, Have some strange behavior with Firefox, can someone please help me with this? This is the code (without irrelevant info): var content = $('#TextField'); //this is ASP.NET TextField var len = content.html().length; //same result with text() if(len == 0) { return false; } else { ret

[jQuery] Re: jQuery tooltip doesn't work after UpdatePanel update?

2008-05-22 Thread vladv
freshed. > > > Does your asp.net component support attaching custom javascript on > > content refresh? > > > If it doesn't support that (not very extensible), you may override the > > default behaviour by "monkey patching" the javascript function being > &g

[jQuery] Re: jQuery tooltip doesn't work after UpdatePanel update?

2008-05-21 Thread vladv
hing custom javascript on > > content refresh? > > > If it doesn't support that (not very extensible), you may override the > > default behaviour by "monkey patching" the javascript function being > > call when update pannel is trigged. > > > On May 2

[jQuery] jQuery tooltip doesn't work after UpdatePanel update?

2008-05-20 Thread vladv
Does jQuery supposed to work with asp.net ajax update panel? I used jQuery tooltip : http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/ but after the update panel update every tooltip is reset to default tooltip. how can this be fixed? Thank you

[jQuery] Re: find by partial id

2008-05-13 Thread vladv
rote: > Hi > > I think you are using aps.net so you could try the asp.net call to get a > cleintid > > <%=lblName.ClientID %> > > On 5/11/08, steve_f <[EMAIL PROTECTED]> wrote: > > > > > > > you can use the following > > $("[EMAIL

[jQuery] find by partial id

2008-05-11 Thread vladv
hello please help me with a simple question i have a control which is rendered couple of times (gridview) and gets some id which i know only part of, for example if i named my label lblName then on each row I will have gvMyGrid$ctr32$lblName or something like this.. how can I find all the label

[jQuery] Re: Question: Selecting all the links in div

2008-04-25 Thread vladv
Thanks. I'll try it, but I'm not sure how does that make any difference... What if I want to have two panels with the same css class and work with them both? I think I should be able to do that with jQuery. That is all the point, doesn't it? Thanks again. Vlad On Apr 24, 4:45 pm, ripple <[EMAIL

[jQuery] Re: Question: Selecting all the links in div

2008-04-24 Thread vladv
t; > On Apr 24, 3:14 am, ripple <[EMAIL PROTECTED]> wrote: > > > Why not loop through it? This is usually how I would do it. > > > > $(document).ready(function(){ > > > > $('#UserSubPanel a').each(function(i) { > > > >

[jQuery] Re: Question: Selecting all the links in div

2008-04-23 Thread vladv
ECTED]> wrote: > $(document).ready(function(){ > >$('#UserSubPanel a').addClass('sideLink'); > }); > > 2008/4/23 vladv <[EMAIL PROTECTED]>: > > > > > Selecting all the links in div.. > > I know it should be really simple,

[jQuery] Question: Selecting all the links in div

2008-04-23 Thread vladv
Selecting all the links in div.. I know it should be really simple, but for some reason I can't make it work.. I work with asp.net and try to run something like this: $(document).ready(function(){ $('#UserSubPanel > a').addClass('sideLink'); }); but it doesn't work. The links