tags

How to display tags product in view.phtml of Magento

Hi all, I created new theme and use them for creating product. In view page, I don't see product tags. I review view.pthml in default and know that the tags in "echo $this->getChildHtml('product_additional_data') ", my view.phtml has it too but why it don't display tags plz, any advice ...

Which Search / Tag system is better?

I am working on a website that has users and user-generated articles, galleries and video's. I am trying to make a tagging system and a search for them all. At first I was thinking in tbl_articles, tbl_galleries and tbl_videos I would have a title, description and a tags field. Then run a query like the following for each: select * fro...

Groovy Grails - how to read body contained within tag?

I'm considering reading the body of a tag to determine what variables the tag should send to the body. e.g, here's the GSP <g:get_domain_info id="${patientInstance?.id}" > <tr class="prop"> <td valign="top" class="name"> ${firstNameLabel}</td> <td valign="top" class="value"> ${firstNameValue}</td> </tr> </g:get_domain_info>...

Groovy/Grails - How to examine relations in Domain class?

Hi, I'm writing a tag that essentially needs to dump an arbitrary domain class for the fields requested via parameters to the tag. This works fine if the field is a normal attribute. But, if it's a "hasMany" relationship, what are my options? In other words, how do I check if a string passed as a parameter to the tag corresponds to a ...

Is there any Java web2.0 Tag opensource project?

i want to start a web project, i hope to find something helpful. ...

how to avoid a new line with p tag?

How can I stay on the same line while working with <p> tag ? Thank ...

send HTML Code in Textarea to PHP via Form

Hi, i want to have a textarea where I can edit html code directly. After submitting the form the content if the textarea (with html tags) should be saved to a MySQL database. I use PHP to receive the date and save it to the database. My problem is, that the HTML code is not properly sent to PHP. I do not receive the HTML code but just th...

What does <link> tag do besides including stylesheets?

I know that the HTML <link> tag is used for attatching stylesheets, but looking at the W3CSchools tag reference, it has many other values for the rel attribute. I've looked all over the place, but I can't for the life of me find a place that describes in detail what the other values do and how they work. Can anyone send me to the right p...

is it possible to clear struts2 file input tag??

I am using Struts2 for a web application development. i have this particular problem for which i couldnt find a solution even after i googled. I have 3 tags with a hyperlink or button against each, which has to be used to clear the filepath if anything was previously selected. The solution which was found online was to reset the form.....

HTML: Is it valid to set img src="about:blank"?

Background: I need to have an inline element to which I can apply width and height via CSS. AFAIK, img is the only way to have this behavior, currently. I would rather not have the image point to a transarent pixel GIF on the server. It may be cached, but browsers queue it nevertheless, slowing down overall page speed. Other clients mig...

How do I delete a wrongly tagged directory in SVN?

I have a project Foo which I errantly created the wrong tag for. It should've read 'rMMDDYYYY' but I tagged it 'YYYYMMDD' instead. I realized my mistake after having commited my change. I now want to remove the YYYYMMDD folder under the tags directory and leave the rMMDDYYYY folder instead. i.e. before: foo/ foo/trunk/ foo/branche...

How to search and replace a tag value in xml file using delphi?

How to search and replace a tag value in XML file using Delphi? I know what the XML tag is, but the value is random and simply needs to be reset to a default value, so in reality I cannot/should not search for the value but only the tag. I also know the location of the file/files. I'm new to Delphi, can someone provide me a simply exam...

how do i display all the tags related to all the feedbacks in one query

Hi, I am trying to write a sql query which fetches all the tags related to every topic being displayed on the page. like this TITLE: feedback1 POSTED BY: User1 CATEGORY: category1 TAGS: tag1, tag2, tag3 TITLE: feedback2 POSTED BY: User2 CATEGORY: category2 TAGS: tag2, tag5, tag7,tag8 TITLE: feedback3 POSTED BY: User3 CATEGORY: cate...

In Javascript or jQuery, how do I remove only the first and last tag?

given the following string: var htmlStr = '<p class="red_349dsa01">This is</p><p class="blue_saf9vsaz">a test</p>'; how can I remove the very first and last tag off this string? This would be the result: var htmlStr = 'This is</p><p class="blue_saf9vsaz">a test'; I know this will create invalid HTML, but I just want to know if thi...

In Javascript or jQuery, how do I detect if a specific tag exists or not?

Given the following strings: htmlStr1 = "<img>test1</img>"; htmlStr2 = "<div>test2</div>"; I'd like to know if there's a way to write a function just to detect for the "img" tag (for example). So if both of these strings are passed to it, and it should not do anything if the 2nd string is passed to it. so for example, you'd run a fu...

JQuery :: retrieve values from form elements

Hi, I've wrote a html page wich uses jquery, but javascript execution stops at the following point: alert($('[name=fAantalVakjes]').val()); This is the relevant html tag: <input type="hidden" value="1" id="fAantalVakjes" name="fAantalVakjes" /> Could someone help me please? Thanks in advance, Yvan Edit: full code: function Vali...

How to clip HTML fragments without breaking up tags?

Say I have a 200 character string that contains HTML markup. I want to show a preview of just the first 50 chars. without 'splitting up' the tags. In other words, the fragment should not contain a <b> without a </b>. Any server side processing should be in PHP. ...

in PHP, how to remove specific class from html tag?

given the following string in PHP: $html = "<div> <p><span class='test1 test2 test3'>text 1</span></p> <p><span class='test1 test2'>text 2</span></p> <p><span class='test1'>text 3</span></p> <p><span class='test1 test3 test2'>text 4</span></p> </div>"; I just want to either empty or remove any class that has "test2" in it, so the resu...

using groovyxmlslurper from EL in JSP

I've been tasked with creating a JSP tag that will allow developers to pass a URI to an xml document, and have an object returned that can be navigated using EL. I have been using groovy and grails quite a bit so I thought of trying something like rval = new XmlSlurper().parseText(myXml); and throwing that into the request so that b...

jquery - How do i call the same function with different element id tags?

I am a very new to jquery and am having trouble calling more than one instance of a function. i have a function $('#open_dialog').click(function(){ $("#dialog").dialog("open"); return false; }); To call this function i have an href link with an id tag name of open_dialog. Obviously this works great if it is the only...