or
I want to put editor in frameset on website but I have google 3 days nothing found which I want
My requirement is
My webpage contain frameset which has 2 frame A, B
Frame A contain editor toolbar only
Frame B contain multiple editor content areas
I know there is feature that one toolbar and multiple content area and both must be in same page
while in my website toolbar and content area must be in seperate frames
so give me the solution how i can seperate toolbar and content area of editor in 2 different frames and work properly
thanks
removeDropDown:function(){ var _30=this.get_dropDownElement().parentNode; _30.parentNode.removeChild(_30); if(this._disposeChildElements){ Sys.WebForms.PageRequestManager.getInstance()._destroyTree(_30); }
Protected
Sub
Button1_Click(
ByVal
sender
As
Object
,
ByVal
e
As
System.EventArgs)
Handles
Button1.Click
Dim
strScript
As
String
=
"<script language='javascript' type='text/javascript'>Sys.Application.add_load(ShowWindow);</script>"
Page.ClientScript.RegisterStartupScript(
Me
.
GetType
,
"ShowWindow"
, strScript)
End
Sub
function
ShowWindow() {
var
manager = GetRadWindowManager();
var
window1 = manager.GetWindowByName(
"SaveSiteNoteWindow"
);
window1.show(
null
,
"SaveSiteNoteWindow"
);
}
<
telerik:RadGrid
ID
=
"TourGrid"
runat
=
"server"
AutoGenerateColumns
=
"false"
AllowSorting
=
"false"
AllowMultiRowSelection
=
"false"
OnNeedDataSource
=
"TourGrid_NeedDataSource"
OnPreRender
=
"TourGrid_PreRender"
AllowMultiRowEdit
=
"true"
OnItemCreated
=
"TourGrid_ItemCreated"
>
<
MasterTableView
Width
=
"100%"
DataKeyNames
=
"Id"
EditMode
=
"InPlace"
>
<
Columns
><%-- columns left out --%>
<
telerik:GridNumericColumn
DataField
=
"NewValue"
UniqueName
=
"NewValue"
HeaderText
=
"New value"
ReadOnly
=
"false"
ColumnEditorID
=
"GridNumericColumnEditor1"
HeaderStyle-Width
=
"175px"
DataFormatString
=
"{0:D}"
AllowRounding
=
"false"
KeepNotRoundedValue
=
"true"
DataType
=
"System.Double"
/>
</
Columns
>
</
MasterTableView
>
<
ClientSettings
ReorderColumnsOnClient
=
"false"
AllowDragToGroup
=
"false"
AllowColumnsReorder
=
"false"
AllowRowsDragDrop
=
"false"
>
<
Selecting
AllowRowSelect
=
"true"
EnableDragToSelectRows
=
"false"
/>
<
Resizing
AllowRowResize
=
"true"
AllowColumnResize
=
"true"
EnableRealTimeResize
=
"true"
ResizeGridOnColumnResize
=
"false"
/>
<
Scrolling
AllowScroll
=
"true"
UseStaticHeaders
=
"true"
FrozenColumnsCount
=
"1"
/>
<
ClientEvents
/>
</
ClientSettings
>
</
telerik:RadGrid
>
<
telerik:GridNumericColumnEditor
ID
=
"GridNumericColumnEditor1"
runat
=
"server"
>
<
NumericTextBox
runat
=
"server"
>
<
NumberFormat
NumericPlaceHolder
=
"_"
DecimalSeparator
=
","
GroupSeparator
=
"."
KeepTrailingZerosOnFocus
=
"true"
AllowRounding
=
"false"
KeepNotRoundedValue
=
"true"
/>
</
NumericTextBox
>
</
telerik:GridNumericColumnEditor
>
protected
void
TourGrid_PreRender(
object
sender, System.EventArgs e)
{
if
(!IsPostBack)
{
foreach
(GridItem item
in
this
.TourGrid.MasterTableView.Items)
{
if
(item
is
GridEditableItem)
{
GridEditableItem editableItem = item
as
GridDataItem;
editableItem.Edit =
true
;
}
}
this
.TourGrid.Rebind();
}
}