or
I'm using the Telerik RadCalendar control and when I try to navigate through a day (click in day in calendar) or to next or previos month in the calendar i can't in IE. In Chrome and Firefox works ok but not in IE.
In IE the URL changes and add a anchor (#) at the last of URL.
Any suggestions? Thank you.
<div style='float:left;width:100%;'> |
<telerik:RadGrid ID="RadGrid1" GridLines="None" AutoGenerateColumns="False" AllowPaging="True" PageSize="50" runat="server"> |
<PagerStyle Mode="NextPrevAndNumeric" /> |
<ClientSettings AllowColumnsReorder="false" Resizing-AllowColumnResize="false"/> |
<MasterTableView CommandItemDisplay='None' TableLayout="Fixed" DataKeyNames="SourceUserId" > |
<Columns> |
<telerik:GridBoundColumn DataField="SourceUserId" UniqueName="SourceUserId" DataType='System.Guid' Display="false" ReadOnly="true" HeaderStyle-Width='5px' /> |
<telerik:GridBoundColumn DataField="LastName" HeaderText="Name" UniqueName="LastName" ReadOnly="true" HeaderStyle-Width='80px'/> |
<telerik:GridBoundColumn DataField="SourceDomainName" HeaderText="Source Domain" UniqueName="SourceDomainName" ReadOnly="true" HeaderStyle-Width='200px'/> |
<telerik:GridDropDownColumn DataField="TargetDomainName" HeaderText="Target Domain" ListTextField="TargetDomainName" ListValueField="DestId" |
DropDownControlType="RadComboBox" UniqueName="TargetDomainName" EditFormColumnIndex='0' HeaderStyle-Width='200px' /> |
<telerik:GridEditCommandColumn UniqueName="EditCommandColumn" ButtonType="ImageButton" > |
<HeaderStyle Width="50px" /> |
</telerik:GridEditCommandColumn> |
</Columns> |
<EditFormSettings ColumnNumber='1'> |
<FormTableItemStyle Wrap="False" /> |
<FormMainTableStyle GridLines="None" CellSpacing="0" CellPadding="3" Width="100%" /> |
<FormTableStyle GridLines="Horizontal" CellSpacing="0" CellPadding="2" Height="110px" Width="100%" /> |
<FormTableAlternatingItemStyle Wrap="False" /> |
<FormStyle Width="100%" /> |
<EditColumn ButtonType="ImageButton" > |
</EditColumn> |
<FormTableButtonRowStyle HorizontalAlign="Left" /> |
</EditFormSettings> |
</MasterTableView> |
</telerik:RadGrid> |
</div> |
Sys.Application.add_init(function() { |
$create(Telerik.Web.UI.RadGrid, |
{ "ClientID": "WebHeaderButton_TPans_M_Migra_651_RadGrid1", |
"ClientSettings": { "AllowAutoScrollOnDragDrop": true, "ShouldCreateRows": true, "DataBinding": {}, "Selecting": {}, "Scrolling": {}, "Resizing": {}, "ClientMessages": {}, "KeyboardNavigationSettings": { "AllowActiveRowCycle": false, "EnableKeyboardShortcuts": true, "FocusKey": 89, "InitInsertKey": 73, "RebindKey": 82, "ExitEditInsertModeKey": 27, "UpdateInsertItemKey": 13, "DeleteActiveRow": 127} }, "Skin": "Web20", "UniqueID": "WebHeaderButton$TPans$M_Migra_651$RadGrid1", "_activeRowIndex": "", "_controlToFocus": "", "_currentPageIndex": 0, "_editIndexes": "[]", "_embeddedSkin": true, "_gridTableViewsData": "[{\"ClientID\":null,\"UniqueID\":null,\"PageSize\":50,\"PageCount\":1,\"EditMode\":\"EditForms\",\"CurrentPageIndex\":0,\"VirtualItemCount\":0,\"AllowMultiColumnSorting\":false,\"IsItemInserted\":false,\"clientDataKeyNames\":[],\"_dataBindTemplates\":false,\"_selectedItemStyle\":\"\",\"_selectedItemStyleClass\":\"rgSelectedRow\",\"_columnsData\":[{\"UniqueName\":\"SourceUserId\",\"Resizable\":true,\"Reorderable\":true,\"Groupable\":true,\"ColumnType\":\"GridBoundColumn\",\"Display\":false},{\"UniqueName\":\"LastName\",\"Resizable\":true,\"Reorderable\":true,\"Groupable\":true,\"ColumnType\":\"GridBoundColumn\",\"Display\":true},{\"UniqueName\":\"SourceDomainName\",\"Resizable\":true,\"Reorderable\":true,\"Groupable\":true,\"ColumnType\":\"GridBoundColumn\",\"Display\":true},{\"UniqueName\":\"TargetDomainName\",\"Resizable\":true,\"Reorderable\":true,\"Groupable\":true,\"ColumnType\":\"GridDropDownColumn\",\"Display\":true},{\"UniqueName\":\"EditCommandColumn\",\"Resizable\":true,\"Reorderable\":true,\"Groupable\":false,\"ColumnType\":\"GridEditCommandColumn\",\"Display\":true}]}]", "_masterClientID": null, "allowMultiRowSelection": false, "clientStateFieldID": "WebHeaderButton_TPans_M_Migra_651_RadGrid1_ClientState" }, null, null, $get("WebHeaderButton_TPans_M_Migra_651_RadGrid1")); |
}); |
How I load the DropDownList then I call the void from within another load statement
protected void FillDDl()
{
sql = "select intPlanId, strFuturePlan from ESGRFuturePlan where bitActive = 1 Order by strFuturePlan";
ddlFuturePlan.DataTextField = "strFuturePlan";
ddlFuturePlan.DataValueField = "intPlanId";
ddlFuturePlan.DataSource = c.GetReader(sql);
ddlFuturePlan.DataBind();
}
To that list that Loads I need to add an Item such as
"Pick and Item from List" and give it a value of zero so that I can validate agianst it.