J
|
Jane 5/8/2008 |
Hi, {if $show_FieldName!=""} <TR><TD class=editshade_b style="PADDING-LEFT: 15px" width=150>FieldName</TD> <TD class=editshade_lb style="PADDING-LEFT: 10px" width=250>{$show_FieldName} </TD></TR> {/if} |
G
|
guroos author 5/11/2008 |
many thanks, works a treat! |
C
|
Codea 5/27/2008 |
Hi, edit your view page on the Visual Editor tab in the HTML mode for this purpose. Here is a sample:
|
J
|
Jane 5/27/2008 |
Tony, |
C
|
Codea 5/27/2008 |
Tony, tro hide all empty fiels add this changes to the source files (C:/Program Files/ASPRunnerPro5.2/templates/layouts/<your layout>/view.htm). Please note these changes will be applied to all tables in this case.
|
J
|
Jane 5/28/2008 |
Tony, |
C
|
Codea 5/30/2008 |
Thanks Jane. It would be great if we could suppress empty fields in the Visual Editor in normal mode by going to the fieldname's properties and selecting a check box. I don't know how helpful it may be for others but maybe you can add it as an Enhancement Request. I'm not much of a HTML person and in my case I have to modify over 20 fields which increases the possibilty of stuffing the HTML code and having to reset the page. Losing all the other changes you have made on the page. |
J
|
Jane 5/30/2008 |
Tony, |
C
|
Codea 6/5/2008 |
Hi Jane, |
J
|
Jane 6/5/2008 |
Tony, if not isnull(rs("JMT___SETTLEMENT_Amount_value")) then strValue = "text" end of |
C
|
Codea 6/5/2008 |
Hi Jane, |
C
|
Codea 6/18/2008 |
Hi Jane, |
J
|
Jane 6/18/2008 |
Tony, if rs("Field_Name")="No" then strValue = "" end if |
C
|
Codea 6/18/2008 |
It Worked! Thanks again Jane. |
G
|
guroos author 3/5/2009 |
Hi, edit your view page on the Visual Editor tab in the HTML mode for this purpose. Here is a sample:
|
J
|
Jane 3/5/2009 |
Hi, if values("FieldName")="" then xt.assign "FieldName_fieldblock",false end if |
G
|
guroos author 3/5/2009 |
Hi, use View page: Before display event on the Events tab for this purpose. Here is a sample:
|
J
|
Jane 3/6/2009 |
It's difficult to tell you what's happening without seeing actual files. |
G
|
guroos author 3/6/2009 |
It's difficult to tell you what's happening without seeing actual files. Please publish your project on Demo Account and open a ticket at http://support.xlinesoft.com sending a URL to your pages along with instructions on reproducing this error.
|
J
|
Jane 3/6/2009 |
Hi, if values("Map")="" or isnull(values("Map")) then xt.assign "Map_fieldblock",false end if |
G
|
guroos author 3/6/2009 |
Hi, try to use this one:
|
S
|
sergioi 6/24/2009 |
{if $show_FieldName!=""} <TR><TD class=editshade_b style="PADDING-LEFT: 15px" width=150>FieldName</TD> <TD class=editshade_lb style="PADDING-LEFT: 10px" width=250>{$show_FieldName} </TD></TR> {/if}
|
J
|
Jane 6/25/2009 |
Sergio, |
F
|
fbrashich 7/14/2009 |
Hi, edit your view page on the Visual Editor tab in the HTML mode for this purpose. Here is a sample:
|
J
|
Jane 7/15/2009 |
Hi, if rs("show_status")=1 then record("edit_link") = true else record("edit_link") = false end if |
F
|
fbrashich 7/15/2009 |
Hi, I recommend you to use List page: After record processed event for this purpose. Hee is a sample:
|
F
|
fbrashich 7/15/2009 |
this is for ASP, right? what is the right code for PHP Runner 5.0 b 766? Thanks!!!
|
J
|
Jane 7/16/2009 |
Hi, |