User Profile & Activity

Matt Member
Riendy,
I tried both sample examples. And with the asp:button I do not get the webdialog to show at all. With the webbutton the dialog shows but not the user control that has been added.
Thanks,
Matt
Posted: May 2, 2011 10:02 AM
Thank you that worked!
Matt
Posted: March 9, 2011 5:09 PM
I can get the Resource Name to show but the events to not appear. I just want to build the webscheduler by hand any help would be great. Thank you
Here is the code:
WebSchedulerResource res = WebScheduler1.Resources.CreateNewItem();

WebSchedulerEventBase ent = res.Events.CreateNewItem();


ent.Subject = dt.Rows[0][dt.Columns[2].ColumnName].ToString();
ent.Description = dt.Rows[0][dt.Columns[2].ColumnName].ToString();
ent.StartTime = Convert.ToDateTime(dt.Rows[0][dt.Columns[0].ColumnName].ToString());
ent.EndTime = Convert.ToDateTime(dt.Rows[0][dt.Columns[0].ColumnName].ToString());
ent.Name = dt.Rows[0][dt.Columns[2].ColumnName].ToString().ToString();

ent.CategoryID = "-1";

ent.AllDayEvent = true;

res.Name = ent.EndTime.ToString();
res.ResourceName = ent.EndTime.ToString();

WebScheduler1.Resources.Add(res);

Posted: March 9, 2011 5:08 PM
WebSchedulerResource res = WebScheduler1.Resources.CreateNewItem();WebSchedulerEventBase ent = res.Events.CreateNewItem();
ent.Subject = dt.Rows[0][dt.Columns[2].ColumnName].ToString();
ent.Description = dt.Rows[0][dt.Columns[2].ColumnName].ToString();
ent.StartTime = Convert.ToDateTime(dt.Rows[0][dt.Columns[0].ColumnName].ToString());
ent.EndTime = Convert.ToDateTime(dt.Rows[0][dt.Columns[0].ColumnName].ToString());
ent.Name = dt.Rows[0][dt.Columns[2].ColumnName].ToString().ToString();
ent.CategoryID = "-1";
ent.AllDayEvent = true;
res.Name = ent.EndTime.ToString();
res.ResourceName = ent.EndTime.ToString();
WebScheduler1.Resources.Add(res);


Posted: March 9, 2011 5:07 PM
I can get the ResourseName to be availabe but I can not get any of the events to appear on the Calandar? Any Ideas I just want to build the WebScheduler by hand.


Posted: March 8, 2011 9:43 PM
There must be away I have got the resource in and events by adding them by hand but they do not show in the calendar it self they show on the recourses.
Posted: March 1, 2011 9:19 AM
That is still not going to work. Yes it will keep the expanded state on a post back but. I am doing to redirect to a new page with the WebTreeview in the masterpage it will get rebound then loosing the expanded state.
Posted: February 28, 2011 4:45 PM
I have the Webtreeview on the master page and and using it for navigation for my site. I want to be able to preserve the expanded tree nodes when the user clicks a node to go to a new page. I also at bind I am removing some of the nodes depending on the user privileges.
Thank you for any help.
Matt
All times are GMT -5. The time now is 9:58 PM.
Previous Next