![]() |
Sergey Kornilov admin 3/25/2010 |
If your question is 'how to link to local or network file' check this article: http://www.htmlcodetutorial.com/help/sutra41677.html |
M
|
meirco author 3/25/2010 |
If your question is 'how to link to local or network file' check this article: http://www.htmlcodetutorial.com/help/sutra41677.html
|
B
|
bobdansei 3/26/2010 |
here is what I have sql query SELECT BMBMNO, concat('file:///r:/', mid(BMBMNO, 1, 3), '/', mid(BMBMNO, 5, 4), '/', mid(DOC_PATH, 13), '/', DOCU_NAME) AS doc_link FROM docsys this produces the doc_link field (file:///r:/207/0358/LEGAL/073003TS.DEM AZ.wpd) as an example in the editor I changed the field view property to view as Hyperlink display URL after build when I click the link nothing happens. if I copy the link location of the doc_link field and paste it in the URL it works the way I want. {BEGIN doc_link_fieldcolumn}<TD class=borderbody vAlign=middle align=middle {$doc_link_style}> {$doc_link_value}</TD>{END doc_link_fieldcolumn}
|
M
|
meirco author 3/27/2010 |
i had the same problem.. well i souve it with this custom code.. $value = "<a href='".$value."".$data["SubjectField"]."'>Audio</a>"; this is working perfect in IE8 but i dont know why dont work in firefox or Googlecrome.. <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=48841&image=1&table=forumreplies' class='bbc_emoticon' alt=':P' />
|