T
|
thesofa 10/19/2008 |
For example, In PHPRunner 4.2 I have Table_A and it has a Field_B , and sometimes there is a record when Field_B is "NULL" and it shows a blank space in Field_B how do I change what the displayed value of Field_B to something else like [.color="#2E8B57"][.b]"Available"[/.b][/.color] if the value is NULL? Table_A ____ ........... |Field_A ... | Field_B ..... | ........... |-------------|----------------| ........... | "Detroit" | "___ " | (not desired) ........... | "Detroit" | "" | (Desired) where would I do it and how? Visual Editor/Field_B/Properties/ View as/ Custom ? or in Events ?
If (is_null($values["Field_B"]))
If ($values["Field_B"]===NULL)
Where Field_B IS NULL
Where Field_B IS NULL
|