Re: [fw-general] Zend_Dom_Query and attributes with spaces

2009-10-05 Thread gerardroche
>Ah, you tried, well, this ($res = >$dom->query('input[type="text"][value="somevalue]');) is how it works with >jQuery selectors. > >Regards, >Saša Stamenković yep, it doesn't work, it looks like it should though. -- View this message in context: http://www.nabble.com/Zend_Dom_Query-and-attrib

Re: [fw-general] Zend_Dom_Query and attributes with spaces

2009-10-01 Thread Саша Стаменковић
Ah, you tried, well, this ($res = $dom->query('input[type="text"][value="somevalue]');) is how it works with jQuery selectors. Regards, Saša Stamenković On Fri, Oct 2, 2009 at 8:09 AM, Саша Стаменковић wrote: > Try: > $res = $dom->query('input[type="text"][value="somevalue]'); > > Regards, > S

Re: [fw-general] Zend_Dom_Query and attributes with spaces

2009-10-01 Thread Саша Стаменковић
Try: $res = $dom->query('input[type="text"][value="somevalue]'); Regards, Saša Stamenković On Thu, Oct 1, 2009 at 11:19 PM, gerardroche wrote: > > how would you query two attributes together? > > I've tried quite a fwe variations: > > > > $res = $dom->query('input[type="text" value="somevalue

Re: [fw-general] Zend_Dom_Query and attributes with spaces

2009-10-01 Thread gerardroche
how would you query two attributes together? I've tried quite a fwe variations: $res = $dom->query('input[type="text" value="somevalue]'); $res = $dom->query('input[type="text", value="somevalue]'); $res = $dom->query('input[type="text"+value="somevalue]'); $res = $dom->query('input[type="text

Re: [fw-general] Zend_Dom_Query and attributes with spaces

2008-10-15 Thread Mon Zafra
Thank you for the reply. However, using spaces with the word or substring selectors throws a fatal error. For now, I'm using the word selector with the substring of the attribute value. On Thu, Oct 16, 2008 at 4:27 AM, Matthew Weier O'Phinney <[EMAIL PROTECTED]>wrote: > -- Mon Zafra <[EMAIL PROTE

Re: [fw-general] Zend_Dom_Query and attributes with spaces

2008-10-15 Thread Matthew Weier O'Phinney
-- Mon Zafra <[EMAIL PROTECTED]> wrote (on Thursday, 16 October 2008, 03:50 AM +0800): > Hi all, > > How do I select a node with an attribute with spaces? This code: > > require_once 'Zend/Dom/Query.php'; > $val = 'foo bar'; > $html = ''; > > $dom = new Zend_Dom_Query($html); > $res = $dom->quer

[fw-general] Zend_Dom_Query and attributes with spaces

2008-10-15 Thread Mon Zafra
Hi all, How do I select a node with an attribute with spaces? This code: require_once 'Zend/Dom/Query.php'; $val = 'foo bar'; $html = ''; $dom = new Zend_Dom_Query($html); $res = $dom->query('input[value="' . $val . '"]'); echo(count($res)); returns 0. I need this to make my controller tests pa