[jQuery] Re: A different approach to parsing XML, and a little help on processing attributes more efficiently

2010-02-05 Thread augur
OK got non-standard attributes. It forces one rule, that all non-
standard attributes for an element must follow 'id' and 'label'. This
is standardized in setting var z=2, as it skips past the first
attributes and finds the remaining. Though this is a lot of code for
each level of elements;

var attribs = $parent[0].attributes
attrb=[];
for (var z = 2; z  attribs.length; z++) {
attrb.push(attribs[z].name +:+ attribs[z].value)
}
console.log(attrb)


[jQuery] popup form

2010-02-05 Thread Oguz Yarimtepe

At my web application i am using jquery for updating some div areas. I also 
need to update some tables which are produced after executing some queries at 
my db. So i am planning to open a popup form that will show the current values 
of the row that is shown at the table. Changing and submiting will effect the 
db also. 

May i do it with Jquery or do you suggest anyother library that is written over 
jquery? And how can i do it? Will be happy if you show the road. 

If it is possible to do it with jquery, i prefer to do it with it.

-- 
Oguz Yarimtepe oguzyarimt...@gmail.com


[jQuery] Find nodes

2010-02-05 Thread san82

Hi All,

I have the below HTML assigned to a variable in JS. 

HTML:
#ChevronSPAN4 lt;lt;  #ChevronSPAN4id= gt;gt; 

Please let me know using jQuery how can I search the variable for SPAN
elements with class=cheveron. 

Thanks,
Sandeep

-- 
View this message in context: 
http://old.nabble.com/Find-nodes-tp27468324s27240p27468324.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.



[jQuery] Vaga para Desenvolvedor Client-side no Rio Grande do Sul

2010-02-05 Thread Renatho
Em setembro de 2009 iniciou-se uma empresa - Grifo - com foco em
desenvolvimento Client-side com o objetivo ter um reconhecimento em
excelência de código.

Busca-se profissionais com bons conhecimentos em SEO, acessibilidade,
usabilidade e performance. Também consideramos profissionais com
bastante interesse em aprender.

Perfil de profissional:

- Pessoas dedicadas;
- Pessoas que se mantém atualizadas com novas tecnologias;
- Pessoas sempre em busca de conhecimento;
- Pessoas que querem o melhor para os projetos com os quais trabalham.


Enviar currículo para renatho.r...@grifotecnologia.com.br


Re: [jQuery] popup form

2010-02-05 Thread Nathan Klatt
On Fri, Feb 5, 2010 at 3:51 AM, Oguz Yarimtepe oguzyarimt...@gmail.com wrote:
 At my web application i am using jquery for updating some div areas. I also 
 need
 to update some tables which are produced after executing some queries at my
 db. So i am planning to open a popup form that will show the current values of
 the row that is shown at the table. Changing and submiting will effect the db 
 also.

We regularly use Flexigrid, jqModal, and the jQuery Form plugin for
this purpose.

http://www.flexigrid.info/
http://dev.iceburg.net/jquery/jqModal/
http://jquery.malsup.com/form/

The author of Flexigrid hangs out on
http://groups.google.com/group/flexigrid so that's a good resource for
questions.

Nathan


Re: [jQuery] Find nodes

2010-02-05 Thread Nathan Klatt
On Fri, Feb 5, 2010 at 8:14 AM, san82 sandee...@spanservices.com wrote:
 I have the below HTML assigned to a variable in JS.

 HTML:
 #ChevronSPAN4 lt;lt;  #ChevronSPAN4id= gt;gt;

 Please let me know using jQuery how can I search the variable for SPAN
 elements with class=cheveron.

I'm guessing your variable got munged, eh? Do you mean you have a
string of HTML? If so, you could DOMify it then search in that.

var tempDiv = document.createElement('div');
tempDiv.innerHTML = (your variable);
var cheverons = $(tempDiv).find(span.cheveron);

Nathan


Re: [jQuery] Find nodes

2010-02-05 Thread san82



Nathan Klatt-2 wrote:
 
 On Fri, Feb 5, 2010 at 8:14 AM, san82 sandee...@spanservices.com wrote:
 I have the below HTML assigned to a variable in JS.

 HTML:
 #ChevronSPAN4 lt;lt;  #ChevronSPAN4id= gt;gt;

 Please let me know using jQuery how can I search the variable for SPAN
 elements with class=cheveron.
 
 I'm guessing your variable got munged, eh? Do you mean you have a
 string of HTML? If so, you could DOMify it then search in that.
 
 var tempDiv = document.createElement('div');
 tempDiv.innerHTML = (your variable);
 var cheverons = $(tempDiv).find(span.cheveron);
 
 Nathan
 
 

Yes, this is what I needed...Thanks
-- 
View this message in context: 
http://old.nabble.com/Find-nodes-tp27468324s27240p27468911.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.



Re: [jQuery] [Maybe OT] Table width 100%

2010-02-05 Thread Steffan A. Cline
Yes, I have. Actually, that is what is there and I made a mistake when I set
this. I Googled some more this morning and found something that may work.
I'll need to try it later.

The description that someone else posted was that IE renders the table in
the dev before it renders the scroll bar and that's why.

Supposedly adding zoom:1 to the scroller and then to nest another div around
the inner table with a zoom:1 will fix it. I'll see I guess and report back.

Thanks for the reply!


-Steffan

---
T E L  6 0 2 . 7 9 3 . 0 0 1 4 | F A X  6 0 2 . 9 7 1 . 1 6 9 4
Steffan A. Cline  
stef...@execuchoice.net Phoenix, Az
http://www.ExecuChoice.net  USA
AIM : SteffanC  ICQ : 57234309
YAHOO : Steffan_Cline   MSN : stef...@hldns.com
GOOGLE: Steffan.Cline Lasso Partner Alliance Member
---



 From: Nathan Klatt n8kl...@gmail.com
 Reply-To: jquery-en@googlegroups.com
 Date: Fri, 5 Feb 2010 08:19:29 -0600
 To: jquery-en@googlegroups.com
 Subject: Re: [jQuery] [Maybe OT] Table width 100%
 
 On Fri, Feb 5, 2010 at 12:41 AM, Steffan A. Cline stef...@hldns.com wrote:
 I have a div set to 600px wide and 400px tall. Inside I load different
 height tables so I have overflow: scroll to make the div scrollable.
 
 Have you tried overflow:auto?
 
 Nathan




[jQuery] Rapid migration from ExtJS to jQuery

2010-02-05 Thread ReynierPM

Hi every:
I have a application developed in ExtJS but my boss need all this 
migrate ASAP to jQuery, anybody here knows how?

--
Cheers
ReynierPM


Re: [jQuery] Rapid migration from ExtJS to jQuery

2010-02-05 Thread Andreas Möller

I have a application developed in ExtJS but my boss need all this
migrate ASAP to jQuery, anybody here knows how?


Loads of coffee, cigarettes and code will help.


Best regards,

Andreas


Re: [jQuery] Vaga para Desenvolvedor Client-side no Rio Grande do Sul

2010-02-05 Thread Leo Balter
Ok Renatho, maybe you don't know yet but most people in this group don't
speak this language. Even I understand every word you saying, you should
post this in jquery-br google group to reach more potential readers.

Em 5 de fevereiro de 2010 12:20, Renatho rena...@gmail.com escreveu:

 Em setembro de 2009 iniciou-se uma empresa - Grifo - com foco em
 desenvolvimento Client-side com o objetivo ter um reconhecimento em
 excelência de código.

 Busca-se profissionais com bons conhecimentos em SEO, acessibilidade,
 usabilidade e performance. Também consideramos profissionais com
 bastante interesse em aprender.

 Perfil de profissional:

 - Pessoas dedicadas;
 - Pessoas que se mantém atualizadas com novas tecnologias;
 - Pessoas sempre em busca de conhecimento;
 - Pessoas que querem o melhor para os projetos com os quais trabalham.


 Enviar currículo para renatho.r...@grifotecnologia.com.br


-- 
At,
Leo Balter
http://blog.leobalter.net


[jQuery] Re: Vaga para Desenvolvedor Client-side no Rio Grande do Sul

2010-02-05 Thread Renatho
Thank you Leo, but I'm looking for a Brazilian, so the stakeholders
will understand what is written.

On 5 fev, 16:25, Leo Balter leonardo.bal...@gmail.com wrote:
 Ok Renatho, maybe you don't know yet but most people in this group don't
 speak this language. Even I understand every word you saying, you should
 post this in jquery-br google group to reach more potential readers.

 Em 5 de fevereiro de 2010 12:20, Renatho rena...@gmail.com escreveu:



  Em setembro de 2009 iniciou-se uma empresa - Grifo - com foco em
  desenvolvimento Client-side com o objetivo ter um reconhecimento em
  excelência de código.

  Busca-se profissionais com bons conhecimentos em SEO, acessibilidade,
  usabilidade e performance. Também consideramos profissionais com
  bastante interesse em aprender.

  Perfil de profissional:

  - Pessoas dedicadas;
  - Pessoas que se mantém atualizadas com novas tecnologias;
  - Pessoas sempre em busca de conhecimento;
  - Pessoas que querem o melhor para os projetos com os quais trabalham.

  Enviar currículo para renatho.r...@grifotecnologia.com.br

 --
 At,
 Leo Balterhttp://blog.leobalter.net


[jQuery] image slider effect using jquery

2010-02-05 Thread Sudhakar
i am creating an image gallery using jquery

there needs to be a row where there are
1. thumbnail images which would have
2. left and right arrow images so that the users can see multiple
images and when these images are clicked
3. a bigger image would appear above these thumbnails,
4. also when each of the thumbnails are clicked along with the bigger
images that appear i would also like to update a caption(few words of
text) which would describe each image.

i have used a combination of jcarousel and other plugins but could not
get all the 4 effects i wanted

is there a plugin which would have all the 4 effects i mentioned

please advice.

thanks


[jQuery] rate slider control (ie Kayak or Sidestep)

2010-02-05 Thread pho99
Hello.

Does anyone know where I can find the specs for the slider control on
Kayak or Sidestep?

Thanks.

LN


[jQuery] JQuery Context Menu Plugin

2010-02-05 Thread Asharudeen
Hi,

I am using JQuery Right Click Context Menu plugin from the following site,
http://www.trendskitchens.co.nz/jquery/contextmenu/

Seems it works on Firefox/IE/Chrome browsers. But it has not worked on Opera
browsers.

Does any one have any work around/way to make workable this plugin in Opera
browsers.

Thanks in Advance.


Re: [jQuery] JQuery Context Menu Plugin

2010-02-05 Thread stworthy

Here is another menu plugin http://jquery-easyui.wikidot.com/tutorial:menu


Asharudeen wrote:
 
 Hi,
 
 I am using JQuery Right Click Context Menu plugin from the following site,
 http://www.trendskitchens.co.nz/jquery/contextmenu/
 
 Seems it works on Firefox/IE/Chrome browsers. But it has not worked on
 Opera
 browsers.
 
 Does any one have any work around/way to make workable this plugin in
 Opera
 browsers.
 
 Thanks in Advance.
 
 

-- 
View this message in context: 
http://old.nabble.com/JQuery-Context-Menu-Plugin-tp27477394s27240p27477441.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.



Re: [jQuery] popup form

2010-02-05 Thread stworthy

Perhaps here has some plugins you need: datagrid,window,etc.
http://jquery-easyui.wikidot.com/



Oguz Yarimtepe wrote:
 
 
 At my web application i am using jquery for updating some div areas. I
 also need to update some tables which are produced after executing some
 queries at my db. So i am planning to open a popup form that will show the
 current values of the row that is shown at the table. Changing and
 submiting will effect the db also. 
 
 May i do it with Jquery or do you suggest anyother library that is written
 over jquery? And how can i do it? Will be happy if you show the road. 
 
 If it is possible to do it with jquery, i prefer to do it with it.
 
 -- 
 Oguz Yarimtepe oguzyarimt...@gmail.com
 
 

-- 
View this message in context: 
http://old.nabble.com/popup-form-tp27465612s27240p27477443.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.