Click here to Skip to main content
15,886,065 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hai
i am retrieving count of messages and events from database and displaying on calendar with different icons.
What i need to do is ?
On click of this message and event icon i need to display their description in popup.

but what i have done till now is
On click of this message and event icon in popup i am getting count and date, but i am not able to get their description PLEASE HELP !!


Thanks in advance
Posted
Updated 12-Mar-14 0:14am
v5
Comments
Aravindba 12-Mar-14 1:07am    
where u save description ? form database u retrieve count same as u retrieve description also,for that u need to save description in the databse,which message r u click ? u can click message ?

1 solution

Hsi

Try this links

http://forums.asp.net/t/1581880.aspx[^]

https://www.obout.com/calendar/tutorial_clientside.aspx[^]

http://forums.asp.net/t/1497909.aspx[^]

http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.calendar.selectionchanged(v=vs.110).aspx[^]
how to get date on select index change event in calendar asp.net c#[^]
http://www.java2s.com/Tutorial/ASP.NET/0060__ASP.net-Controls/CalendardayrenderereventC.htm[^]


Hi
if u click date form calendar it show popup ? if yes means then do like this,when u click message u need capture any unique id in hidden field ,and when u select date form calendar u need to pass that hidden field value and retrieve description based on id and show in same popup window.
 
Share this answer
 
v3
Comments
[no name] 12-Mar-14 1:23am    
Yes u r right, now popup is coming, but how shall i capture id in hidden field and pass that hidden field value and retrieve description based on id and show in same popup window :( i am not getting
Aravindba 12-Mar-14 1:26am    
did u use popup window for panel in same page or u try to load other page in popup window ?
Where u save description ? how u identify description is show for this date ?
[no name] 12-Mar-14 1:42am    
Popup is in same page
Aravindba 12-Mar-14 1:45am    
where u save description or in runtime show same message all time ?
[no name] 12-Mar-14 1:52am    
<form id="form1" runat="server">
<div id="divContent">
<div id="calendar">
</div>
</div>
<div id="descriptiondialog" style="font: 70% 'Trebuchet MS', sans-serif; margin: 50px;"
title="Description">
<table cellpadding="0" class="style1">
<tr>
<td class="alignRight">
Total Count:</td>
<td class="alignLeft">
<input id="eventName" type="text" /><br /></td>
</tr>
<tr>
<td class="alignRight">
Name:</td>
<td class="alignLeft">
<input id="eventDesc" type="text" /><br /></td>
</tr>
<tr>
<td class="alignRight">
Date:</td>
<td class="alignLeft">
<span id="eventStart"></span></td>
</tr>

</table>
</div>
</form>

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900