<a href="javascript:openRadWindowCoupon('<%# originalAttribute="href" originalPath=""javascript:openRadWindowCoupon('<%#" Eval("SearchBiz.ID")%>')"> View Company coupons </a><br />
<a href="javascript:openRadWindowReferral('<%# originalAttribute="href" originalPath=""javascript:openRadWindowReferral('<%#" Eval("SearchBiz.ID")%>')"> View Refferal Information</a>
</ItemTemplate>
</asp:TemplateField>
The problem I'm getting is this: If i load the page on the inital page load evrything works as it should.
As soon as I do a postback (another search and reload the grid) suddenlly I'm getting this error:
Line: 526
Char: 43
Error: Sys.ArgumentTypeException: Object of type 'Telerik.Web.UI.RadWindowManager' cannot be converted to type 'Telerik.Web.UI.RadWindowManager'.
Parameter name: instance.
Code: 0
Does anyone have any idea why?
Hi,
I am using 'RadControls for ASPNet AJAX Q2 2008'.
I have a RadDateInput control in my form as follows:
| <TelerikWeb:RadDateInput ID="tbxTicketDate" runat="server" Width="150" |
| ToolTip="Date of Ticket" Skin="Vista" DateFormat="M/d/yyyy h:mm tt" |
| DisplayDateFormat="M/d/yyyy h:mm tt" MaxDate="2050-01-01" |
| MinDate="2007-05-09" TabIndex="70" SelectionOnFocus="SelectAll" /> |
| public class GridDisplayItem |
| { |
| public string companyName { get; set; } |
| public string duns { get; set; } |
| public bool? SmallBusiness { get; set; } |
| public bool? SmallBusinessCertified { get; set; } |
| public double SearchScoreOverall { get; set; } |
| public double SurveyScoreOverall { get; set; } |
| public IEnumerable<Model.GroupResult> SearchScores { get; set; } |
| public IEnumerable<Model.GroupResult> SurveyScores { get; set; } |
| } |
| public class GroupResult |
| { |
| public string Name { get; set; } |
| public string Category { get; set; } |
| public double Score { get; set; } |
| } |