or
Hi,
We have 2 problem in RadScheduler after upgrade Telerik.Web.Ui.Dll from Q1 2008 to Q3 2008.
One of Appointment template:
Using class='appointmentType<%# Eval ("App") %>' for change background-color with css, Q1 2008 change all appointment background but Q3 2008 using skin appointment style and change only upper row background color.
May be this is a bug.
Other is about styling:
How can i change "All Day" and HoursPanels text-align (to center or right) and font properties. (I don't want bold fonts at app.)
Thanks for your help,
Volkan
[artibir]

| <telerik:GridDropDownColumn DataField="bitPRI" HeaderText="bitPRI" SortExpression="bitPRI" |
| UniqueName="bitPRI" DropDownControlType="DropDownList" ForceExtractValue="Always"> |
| <ItemStyle HorizontalAlign="Center" VerticalAlign="Middle" /> |
| </telerik:GridDropDownColumn> |
| protected void RadGrid1_ItemDataBound(object sender, GridItemEventArgs e) |
| { |
| if (e.Item is GridEditableItem && e.Item.IsInEditMode) |
| { |
| GridEditableItem eeditedItem = e.Item as GridEditableItem; |
| GridEditManager editMan = editedItem.EditManager; |
| GridDropDownListColumnEditor editor_bitPRI = (GridDropDownListColumnEditor)(editMan.GetColumnEditor("bitPRI")); |
| GridDropDownColumnEditor editor_bitPRI_TEST = (GridDropDownColumnEditor)(editMan.GetColumnEditor("bitPRI")); |
| System.Diagnostics.Debug.WriteLine(editor_bitPRI_TEST.SelectedValue); |
| System.Diagnostics.Debug.WriteLine(editedItem["bitPRI"].Text); |
| DropDownList editor_bitPRIeditor_bitPRIComboBoxControl = editor_bitPRI.DropDownListControl; |
| System.Diagnostics.Debug.WriteLine(editor_bitPRI.DropDownListControl.SelectedValue); |


