You need to sign in to do that
Don't have an account?
nallurisivashankar
displaying the data in vf page
Hi,
I have one requirement.
How display the data on visualforce page based on the dates between.i,e startdate and enddates are two custom fields.
depends on this values i need to display the remaining fields.
Thanks
siva
Hi Siva,
you can use conditions in VF, like
disabled="{!IF(myBoolean,True, False)}"
This might help you.
Br, Marco
--
THANKS®ARDS
Shiva Shankar Nalluri
More details would require more details on the problem, for the situation is a bit abstract. Can you give some more background and perhaps your existing code?
or
while displaying in vf page, use style="{!IF(Date>= obj.StartDate__c && Date <= obj.EndDate__c,'display:block;','display:none;')}"