Condition Hyperlink a Row Key Value

This public forum is for user-to-user discussions of PHPMaker. Note that this is not support forum.
Post Reply
shahparzsoft
User
Posts: 361

Condition Hyperlink a Row Key Value

Post by shahparzsoft »

I have some rows in my Dues Table.
Row ID Dr. Cr.
======= ======== =========
1 0 12000
2 110000 0
3 9000 0
4 3000 0

I want that if credit value > 0 then row_id should be hyperlinked with viewpage with current id.

Any suggestions ?


mobhar
User
Posts: 11711

Post by mobhar »

if ($this->credit->CurrentValue > 0) {
$this->row_id->ViewValue = "<your html tag goes here to link to view page based on row_id field>";
}


Post Reply