<root>
....[removed to make this a bit shorter!]
<tools name="row2">
....
<tool name="MOSSInsertTableElement">
<tool name="InsertRowAbove" />
<tool name="InsertRowBelow" />
<tool name="InsertColumnLeft" />
<tool name="InsertColumnRight" />
<tool name="SplitCell" />
</tool>
...
</root>
function initDialog() {
var clientParameters = getRadWindow().ClientParameters;
var tabStrip = $find("<%= RadTabStrip1.ClientID %>");
var pageView = $find("<%= RadMultiPage1.ClientID %>");
at least the ClientParameters are ok. Can someone help?
Thanks.

Hi,
I am using the radgrid and have enabled the client side property EnableRowHoverStyle to true.
It works fine but the grid contains some columns where in i have set a background color to it .
On mouse over of the row the coloured columns get clipped at the bottom (IE7) and in mozilla it does not hover over these colors at all. Refer to screenshot 1,3.
Also i have OnItemDataBound of the grid set the
e.Item.CssClass =
"";
so that i get the view a compact one.
It works fine .
But when i go to the edit mode the edited row also get hovered.Before i could set the Row cssclass to empty it used to work fine.But now it hovers over the edited row too.
I do not want the edited row to be hovered.So i checked the cssClass of the previous implementation and found that rgEditForm was used i tried using this but on hover the input field accumilates space Refer to screenshot 2
How do i use my own cssClass where do i have to write the css class the control is in a ascx page.?
Thanks & Regards,
Francis P.

Is there any way to change the colour of 15 mintues slot's . I found the article in which it's showed how the change the colour for an hour slot. below is my code. please can help me how to change the colour of 15 minutes slots.
thanks
protected void RadScheduler1_TimeSlotCreated(object sender, Telerik.Web.UI.TimeSlotCreatedEventArgs e)
{
if (dsAppointments == null)
{
dsAppointments = GetAppointments(this.RadScheduler1.SelectedDate);
}
foreach (DataRow row in dsAppointments.Tables[0].Rows)
{
DateTime start = Convert.ToDateTime(row["start"]);
DateTime end = Convert.ToDateTime(row["end"]);
// if ((e.TimeSlot.Start.Date.ToShortDateString() == start.ToShortDateString()) && ((e.TimeSlot.Start.Hour >= start.Hour && e.TimeSlot.End.Hour <= end.Hour) && (e.TimeSlot.Start.Minute >= start.Minute && e.TimeSlot.End.Minute <= start.Minute)) && (e.TimeSlot.Resource.Text == Convert.ToString(row["StaffName"])))
if (e.TimeSlot.Resource.Text == Convert.ToString(row["StaffName"]))
{
if ((e.TimeSlot.Start.Date.ToShortDateString() == start.ToShortDateString()) && ((e.TimeSlot.Start.Hour >= start.Hour && e.TimeSlot.End.Hour <= end.Hour )))
{
e.TimeSlot.CssClass = "Disabled";
}
}
}

| <script> |
| function goLoadCountries(combo, eventArqs) |
| { |
| var item = eventArqs.get_item(); |
| var prompt; |
| combo.tempVal = item.get_value(); |
| for (i = 0; i < Telerik.Web.UI.RadComboBox.ComboBoxes.length; i++) { |
| prompt = Telerik.Web.UI.RadComboBox.ComboBoxes[i]; |
| if (prompt.get_attributes().getAttribute("parent") == combo.get_id()) { |
| prompt.set_text("Loading..."); |
| prompt.requestItems(item.get_value(), false); |
| } |
| } |
| } |
| function ItemsLoaded(combo, eventArgs) { |
| if (combo.get_items().get_count() > 0) |
| { |
| combo.get_inputDomElement().className = "rcbInput"; |
| var item = combo.get_items().getItem(0); |
| item.select(); |
| } |
| } |
| function buildForm(sender, eventArgs){ |
| var context = eventArgs.get_context(); |
| for (i=0; i<Telerik.Web.UI.RadComboBox.ComboBoxes.length; i++){ |
| context[Telerik.Web.UI.RadComboBox.ComboBoxes[i].get_id()] = Telerik.Web.UI.RadComboBox.ComboBoxes[i].tempVal; |
| } |
| } |
| </script> |
| <td>Location:</td> |
| <td><telerik:RadComboBox ID="cbLocation" runat="server" Skin="Black" SelectedValue='<%# DataBinder.Eval( Container, "DataItem.locationName") %>' |
| EmptyMessage=" Select Location" HighlightTemplatedItems="True" DataTextField="name" EnableLoadOnDemand="true" |
| DataValueField="locationId" EnableTextSelection="False" DataSourceID="SqlDataSource_Loc" |
| AppendDataBoundItems="True" OnClientSelectedIndexChanging="loadCombos" OnClientItemsRequesting="buildForm" |
| > |
| <Items> |
| <telerik:RadComboBoxItem Text="" Value="" Selected="True" /> |
| </Items> |
| </telerik:RadComboBox> |
| </td> |
| </tr> |
| <tr> |
| <td>Aircraft:</td> |
| <td> |
| <telerik:RadComboBox ID="cbAircraft" runat="server" Skin="Black" SelectedValue='<%# DataBinder.Eval( Container, "DataItem.Aircraft") %>' |
| EmptyMessage=" Select Aircraft" HighlightTemplatedItems="True" OnClientItemsRequested="ItemsLoaded" |
| OnItemsRequested="radAircraft_ItemsRequested" OnClientItemsRequesting="buildForm" EnableLoadOnDemand="false" |
| AppendDataBoundItems="true"> |
| <Items> |
| <telerik:RadComboBoxItem Text="" Value="" /> |
| </Items> |
| </telerik:RadComboBox> |