| <telerik:RadEditor ID="htmlEditor" runat="server" OnClientLoad = "OnClientLoad" |
| AllowScripts="True" Width="100%" Height="500" Skin="Vista" EditModes="Design,Html" > |
| <Tools> |
| <telerik:EditorToolGroup> |
| <telerik:EditorTool Name="btnSave" Text="Save" ShowIcon="false" ShowText="true" /> |
| <telerik:EditorSeparator Visible="true" /> |
| <telerik:EditorTool Name="Cut" /> |
| <telerik:EditorTool Name="Copy" /> |
| <telerik:EditorTool Name="Paste" /> |
| <telerik:EditorSeparator Visible="true" /> |
| <telerik:EditorTool Name="Undo" /> |
| <telerik:EditorTool Name="Redo" /> |
| <telerik:EditorSeparator Visible="true" /> |
| <telerik:EditorTool Name="FontName" /> |
| <telerik:EditorTool Name="RealFontSize" Text="Size"/> |
| <telerik:EditorTool Name="ForeColor" /> |
| <telerik:EditorTool Name="Bold" ShortCut="CTRL+B" /> |
| <telerik:EditorTool Name="Italic" ShortCut="Ctrl+I" /> |
| <telerik:EditorTool Name="Underline" ShortCut="Ctrl+U" /> |
| <telerik:EditorTool Name="JustifyLeft" /> |
| <telerik:EditorTool Name="JustifyCenter" /> |
| <telerik:EditorTool Name="JustifyRight" /> |
| <telerik:EditorTool Name="InsertUnorderedList" /> |
| <telerik:EditorTool Name="InsertOrderedList" /> |
| <telerik:EditorTool Name="Indent" /> |
| <telerik:EditorTool Name="Outdent" /> |
| <telerik:EditorSeparator Visible="true" /> |
| <telerik:EditorTool Name="TemplateManager" /> |
| <telerik:EditorSeparator Visible="true" /> |
| <telerik:EditorTool Name="btnPreviewIE" Text="Preview IE" ShowIcon="false" ShowText="true" /> |
| <telerik:EditorTool Name="btnPreviewFF" Text="Preview Firefox" ShowIcon="false" ShowText="true" /> |
| <telerik:EditorTool Name="btnPreviewSafari" Text="Preview Safari" ShowIcon="false" ShowText="true" /> |
| </telerik:EditorToolGroup> |
| </Tools> |
| <Snippets> |
| <telerik:EditorSnippet Name="First Name"> |
| <h1>%%FirstName%%</h1> |
| </telerik:EditorSnippet> |
| <telerik:EditorSnippet Name="Last Name"> |
| <h1>%%LastName%%</h1> |
| </telerik:EditorSnippet> |
| </Snippets> |
| <MediaManager DeletePaths="~/WebApp" UploadPaths="~/WebApp" |
| ViewPaths="~/WebApp" /> |
| <DocumentManager SearchPatterns="*.*" DeletePaths="~/Common" UploadPaths="~/Common" |
| ViewPaths="~/Common" /> |
| <TemplateManager DeletePaths="~/Templates" UploadPaths="~/templates" ViewPaths="~/Templates" /> |
| <Content> |
| </Content> |
| <ImageManager DeletePaths="~/resources/crm/images" SearchPatterns="*.png,*.gif" |
| UploadPaths="~/resources/crm/images" ViewPaths="~/resources/crm/images" /> |
| </telerik:RadEditor> |
[OleDbException (0x80040e21): Multiple-step OLE DB operation generated errors.Check each OLE DB status value, if available. No work was done.]
Telerik.Web.UI.Scheduling.DataSourceViewSchedulerProvider.OnDataSourceOperationComplete(Int32 count, Exception e) +16
System.Web.UI.DataSourceView.Insert(IDictionary values, DataSourceViewOperationCallback callback) +77
Telerik.Web.UI.Scheduling.DataSourceViewSchedulerProvider.Insert(RadScheduler owner, Appointment appointmentToInsert) +130
Telerik.Web.UI.Scheduling.AppointmentController.InsertAppointmentThroughProvider(Appointment appointment) +31
Telerik.Web.UI.RadScheduler.InsertAppointmentInline() +106
Telerik.Web.UI.RadScheduler.OnBubbleEvent(Object source, EventArgs args) +326
System.Web.UI.Control.RaiseBubbleEvent(Object source, EventArgs args) +37
System.Web.UI.WebControls.LinkButton.OnCommand(CommandEventArgs e) +118
System.Web.UI.WebControls.LinkButton.RaisePostBackEvent(String eventArgument) +135
System.Web.UI.WebControls.LinkButton.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument) +10
System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +13
System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) +175
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1565
Hi,
We are using Rad window popup. The problem is on opening the popup we get scrollbars. We want to avoid horizontal scrollbar.
We are using the following code.
function OpenLookUp(url,width,Height)
{
var oWindow = window.radopen(url,null);
oWindow.SetSize (width, Height);
}
And we are calling this method from a column in grid.
<rad:GridTemplateColumn>
<ItemTemplate>
<a href="javascript:OpenLookUp('LogDetails.aspx?ProductId=<%#Eval("logId")%>','700','550');">Details</a>
</ItemTemplate>
</rad:GridTemplateColumn>
It happens in all the popups even if the content is very less the scrollbar appears.
Regards,
Bala

Hi,
I want to override default close in radwindow (at top-right icon).
I tried in js:
| TelerikTelerik.Web.UI.RadWindow.prototype.oldClose = Telerik.Web.UI.RadWindow.prototype.close; |
| Telerik.Web.UI.RadWindow.prototype.close = function(callBackFnArg) { |
| //your code goes here |
| alert("closing"); |
| //call old close method |
| this.oldClose(callBackFnArg); |
| }; |

I'm trying to emulate the "Client-side" data binding demo page, but when i try to get the mastertableview in javascript, i get an error about it being null. After some searching here in the forums, i saw that i couldn't get the mastertableview until after the gridCreated client event had fired. I tried moving my code here, but the function isn't being called. The code for the grid is attached below.
Thanks,
Matt
| <tel:RadGrid ID="kgSearch" runat="server" Skin="Vista"> |
| <MasterTableView TableLayout="Fixed"> |
| <Columns> |
| <tel:GridBoundColumn DataField="USER_ID" HeaderText="User ID"></tel:GridBoundColumn> |
| <tel:GridBoundColumn DataField="LAST_NAME" HeaderText="Last Name"></tel:GridBoundColumn> |
| <tel:GridBoundColumn DataField="FIRST_NAME" HeaderText="First Name"></tel:GridBoundColumn> |
| <tel:GridBoundColumn DataField="USERNAME" HeaderText="Username"></tel:GridBoundColumn> |
| </Columns> |
| </MasterTableView> |
| <ClientSettings> |
| <ClientEvents OnGridCreated="gridCreated" /> |
| </ClientSettings> |
| </tel:RadGrid> |