开发者

Full Calendar Customized Fields

开发者 https://www.devze.com 2023-04-02 11:23 出处:网络
Hi i need to addthe customized field other than id, title,start,end,allday. I have the field for Start Time and End Time in separate text box to select . Am saving the Time as String to DB, now i n

Hi i need to add the customized field other than id, title,start,end,allday.

I have the field for Start Time and End Time in separate text box to select . Am saving the Time as String to DB, now i need to to fetch the starting Time and Endin开发者_StackOverflowg Time

'

id= e.ID,
title = e.Title,
description = e.Notes,
start = ConvertToUnixTimestamp(e.StartDate),
end = ConvertToUnixTimestamp(e.EndDate),'

**StartTime and EndTime** I need to fetch this two values from DB and Shows in Popup form . I checked event Render, but its showing already available value. Can anyone help me.


Found the answer for the Issue. I just added the two values Start-time ,End-Time next to the end Time. and called the same field in calendar.It works nice.

id = e.ID,
title = e.Title,
description = e.Notes,
start = ConvertToUnixTimestamp(e.StartDate),
end = ConvertToUnixTimestamp(e.EndDate),
allDay = true,
Locurl = e.Url,

startingTime = e.StartTime,
endingTime = e.EndTime

This is the which i used.

0

精彩评论

暂无评论...
验证码 换一张
取 消