function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
DivyaReddyDivyaReddy 

Help in Query string parameters...

hi

AM 08:00

 

i have to divide it as AM 08 00 and i have to save them in fields

Appt_am_pm__c = am

Appt_hour__c = 08

Appt_minute__c = 00.

 

After that i have to use query string parameters to pass it to other page

 

can any one help on this ...

bob_buzzardbob_buzzard

Where do you want to do this? Is is on the page or in the controller?

DivyaReddyDivyaReddy

in vf page

bob_buzzardbob_buzzard

How do you plan to save the updated field values back to the record?

DivyaReddyDivyaReddy

like that only

instead of slecting time values we can do it directly..

bob_buzzardbob_buzzard

You can use the MID formula function to pull characters out of a string,  e.g.

 

{!MID(My_Object__c.Time__c, 1, 2)}

 will give you the AM portion (this assumes the full time string is available in a field on a custom object).