or
I have asp.net web page that is using RadTabStrip & RadMultiPage. The multi page controls/tabs contain web parts.
When I use Ajax and click/switch to the Design Mode (WebPartManager.DesignDisplayMode) I don't have the web parts drag and drop feature, drop down verbs menu and other client functionality. What is the work arount to make it work with Telerik?
Cannot convert value of parameter 'Time' from 'System.DateTime' to 'Nullable<System.TimeSpan>' <telerik:RadStyleSheetManager ID="RadStyleSheetManager1" runat="server"> <StyleSheets> <telerik:StyleSheetReference Path="~/Styles/Common.css" /> </StyleSheets> </telerik:RadStyleSheetManager>Hello.
I have a radgrid with gridtemplate column in it. In gridtemplate column i have placed filtertemplate with radcombox. I'm populating the grid with OnNeedDataSource method. Te code sample looks like this
<telerik:GridTemplateColumn DataField="Obraz" Visible="false" Resizable="false" UniqueName="TemplateColumn" AllowFiltering="true"> <FilterTemplate> <telerik:RadComboBox ID="ComboFilterBox" runat="server" AppendDataBoundItems="true" OnSelectedIndexChanged="FilterCombo_SelectedIndexChanged" DataTextField="Text" DataValueField="Obraz" AutoPostBack="true"> <items> <telerik:RadComboBoxItem Text="Bez filtra" value="1"/> <telerik:RadComboBoxItem Text="value1" value="~Gif/pic1.png"/> <telerik:RadComboBoxItem Text="value2" value="~/Gif/pic2.png"/> <telerik:RadComboBoxItem Text="value3" value="~/Gif/pic3.png"/> <telerik:RadComboBoxItem Text="value4" value=""/> </items> </telerik:RadComboBox> </FilterTemplate> <ItemTemplate> <asp:Image ID="Image1" runat="server" ImageUrl="<%# bind('Obraz') %>" ForeColor="White" /> </ItemTemplate> <HeaderStyle Width="199px" /> <ItemStyle Width="199px" /> </telerik:GridTemplateColumn>protected void FilterCombo_SelectedIndexChanged(object o, RadComboBoxSelectedIndexChangedEventArgs e) { Session["selectedComboitem"] = e.Text; string filterExpression; if (e.Value != "") { filterExpression = "([Obraz] = '" + e.Value + "')"; } else { filterExpression = ""; } RadGrid1.MasterTableView.FilterExpression = filterExpression; RadGrid1.MasterTableView.Rebind(); }var o = new Object();
o.FirstName =document.getElementById("first_name").innerHTML;
window.returnValue = o.FirstName;
window.close();retval=window.showModalDialog ('searchMNI.aspx?lastname=' + temp);
alert("it is: " + retval.FirstName);An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. |
|