or
<
asp:UpdatePanel
ID
=
"UpdatePanel1"
runat
=
"server"
UpdateMode
=
"Conditional"
ChildrenAsTriggers
=
"true"
>
<
ContentTemplate
>
<
telerik:RadScheduler
Width
=
"850"
Height
=
"600"
ID
=
"VMDSCalendarEvents"
runat
=
"server"
FirstDayOfWeek
=
"Sunday"
SelectedView
=
"MonthView"
WorkDayStartTime
=
"7"
EnableAdvancedForm
=
"true"
AllowInsert
=
"true"
TimelineView-ReadOnly
=
"true"
OnAppointmentDataBound
=
"VMDSCalendarEvents_OnAppointmentDataBound"
OnAppointmentCommand
=
"VMDSCalendarEvents_OnAppointmentCommand"
OnAppointmentInsert
=
"VMDSCalendarEvents_OnAppointmentInsert"
OnAppointmentDelete
=
"VMDSCalendarEvents_OnAppointmentDelete"
OnAppointmentUpdate
=
"VMDSCalendarEvents_OnAppointmentUpdate"
OnFormCreated
=
"VMDSCalendarEvents_OnFormCreated"
>
<
telerik:RadCodeBlock
ID
=
"radcodeblock"
runat
=
"server"
>
<
script
language
=
"javascript"
type
=
"text/javascript"
>
function OnClientSelectedIndexChanged(sender, eventArgs) {
var ajaxManager = $find("<%= rapPSMain.ClientID %>");
var item = eventArgs.get_item();
ajaxManager.ajaxRequest(item.get_text());
}
</
script
>
</
telerik:RadCodeBlock
>
<
telerik:RadAjaxLoadingPanel
ID
=
"alpProductionSechduleMain"
runat
=
"server"
Height
=
"75px"
MinDisplayTime
=
"5"
Width
=
"75px"
>
<
asp:Image
ID
=
"imgAjaxImage"
runat
=
"server"
AlternateText
=
"Loading..."
/>
</
telerik:RadAjaxLoadingPanel
>
<
telerik:RadAjaxPanel
ID
=
"rapPSMain"
RequestQueueSize
=
"5"
runat
=
"server"
Width
=
"100%"
OnAjaxRequest
=
"rapPSMain_AjaxRequest"
EnableOutsideScripts
=
"True"
HorizontalAlign
=
"NotSet"
ScrollBars
=
"None"
LoadingPanelID
=
"alpProductionSechduleMain"
>
<
b
>Order Destination :</
b
>
<
telerik:RadComboBox
ID
=
"rcbCountry"
runat
=
"server"
Skin
=
"Vista"
Height
=
"100px"
Width
=
"200px"
DataTextField
=
"CountryName"
DataValueField
=
"CountryKey"
AllowCustomText
=
"true"
AutoPostBack
=
"true"
MarkFirstMatch
=
"True"
HighlightTemplatedItems
=
"True"
DropDownWidth
=
"200px"
OnClientSelectedIndexChanged
=
"OnClientSelectedIndexChanged"
EmptyMessage
=
"- Select Country -"
>
</
telerik:RadComboBox
>
</
telerik:RadAjaxPanel
>
<httpHandlers>
<add path="Telerik.Web.UI.WebResource.axd" verb="*" type="Telerik.Web.UI.WebResource" validate="false"/>
</httpHandlers>
<
system.webServer
>
<
handlers
>
<
add
name
=
"Telerik_Web_UI_WebResource_axd"
verb
=
"*"
preCondition
=
"integratedMode"
path
=
"Telerik.Web.UI.WebResource.axd"
type
=
"Telerik.Web.UI.WebResource"
/>
</
handlers
>
</
system.webServer
>
<telerik:RadGrid ID="RadGrid1" runat="server" AllowSorting="true" AllowPaging="true" PageSize="25" ShowStatusBar="true">
<PagerStyle AlwaysVisible="true" />
<MasterTableView AutoGenerateColumns="true" EditMode="InPlace" />
</telerik:RadGrid>
I check out the below articles and everything needs big chunk of code to make the manipulation work.
http://www.telerik.com/help/aspnet/grid/grdeditmodeinplace.html
http://www.telerik.com/help/aspnet/grid/grdinsertingvaluesinplaceandeditforms.html
I need a plug and play kinda of control for client to work without any big coding.
Vijai
Product Description: <br /> |
<span style="font-family: Arial; font-size: 12pt;"> |
<telerik:RadEditor id="ProductDescription" runat="server" Width="700px" Height="800px" |
Skin="WebBlue" ToolsFile="~/Includes/BasicTools.xml" OnClientLoad="OnRadEditorClientLoad" |
EditModes="All"> |
<SpellCheckSettings AllowAddCustom="true" DictionaryLanguage="en-US" DictionaryPath="~/App_Data/RadSpell" SpellCheckProvider="EditDistanceProvider" /> |
<CssFiles> |
<telerik:EditorCssFile Value="~/Includes/EditorContentArea.css" /> |
</CssFiles> |
</telerik:RadEditor> |
</span> |
<br /> |
function OnRadEditorClientLoad(editor, args) { |
//attach to the onkeydown event, check whether the tab key is pressed and paste in the editor |
editor.attachEventHandler("onkeydown", function(e) { |
if (e.keyCode == '9') { |
editor.pasteHtml(" "); |
if (!document.all) { |
e.preventDefault(); |
e.preventBubble(); |
e.stopPropagation(); |
} |
else { |
e.returnValue = false; |
e.cancelBubble = true; |
} |
} |
}); |
} |