or
<
telerik:RadGrid
ID
=
"gvFilteredResults1"
runat
=
"server"
ShowStatusBar
=
"True"
AutoGenerateColumns
=
"False"
AllowSorting
=
"True"
AllowPaging
=
"True"
OnDetailTableDataBind
=
"gvFilteredResults_DetailTableDataBind"
AllowCustomPaging
=
"True"
OnPageIndexChanged
=
"gvFilteredResults_OnPageIndexChanged"
OnPageSizeChanged
=
"gvFilteredResults_OnPageSizeChanged"
OnPreRender
=
"gvFilteredResults_OnPreRender"
Skin
=
"Office2007"
OnSortCommand
=
"gvFilteredResults1_OnSortCommand"
meta:resourcekey
=
"gvFilteredResults1Resource1"
GridLines
=
"None"
>
<
MasterTableView
AllowMultiColumnSorting
=
"True"
DataKeyNames
=
"Policy Number"
GridLines
=
"Horizontal"
>
<
DetailTables
>
<
telerik:GridTableView
runat
=
"server"
AllowCustomPaging
=
"False"
AllowPaging
=
"False"
AutoGenerateColumns
=
"True"
BorderWidth
=
"1px"
GridLines
=
"Both"
meta:resourceKey
=
"GridTableViewResource1"
Name
=
"TransactionWise"
AllowSorting
=
"False"
Width
=
"95%"
>
</
telerik:GridTableView
>
</
DetailTables
>
<
ExpandCollapseColumn
Visible
=
"True"
>
</
ExpandCollapseColumn
>
<
Columns
>
<
telerik:GridTemplateColumn
meta:resourcekey
=
"GridTemplateColumnResource1"
UniqueName
=
"TemplateColumn"
>
<
ItemTemplate
>
<
asp:CheckBox
ID
=
"chkPolicyNumber"
runat
=
"server"
meta:resourceKey
=
"chkPolicyNumberResource1"
/>
</
ItemTemplate
>
<
HeaderStyle
Width
=
"3%"
/>
</
telerik:GridTemplateColumn
>
<
telerik:GridBoundColumn
DataField
=
"Policy Number"
HeaderText
=
"Policy Number"
meta:resourcekey
=
"GridBoundColumnResource4"
UniqueName
=
"Policy Number"
>
</
telerik:GridBoundColumn
>
</
Columns
>
</
MasterTableView
>
<
ClientSettings
>
<
Scrolling
AllowScroll
=
"True"
UseStaticHeaders
=
"True"
/>
</
ClientSettings
>
<
PagerStyle
AlwaysVisible
=
"True"
></
PagerStyle
>
</
telerik:RadGrid
>
Hi,
We use the RadScheduler control(using the telerik dll(Version : 2010.1.519.40)) in our project, when we click the "Week"/"Month" tab in the top right corner, it shows all the days for a "week"/"Month". When we click a particular day in scheduler, it shows that particular day in "Day" mode in the browser mentioned below.
My issue is when we click a particular day in "Week"/"Month" mode, it does not show that particular day in "Day" mode in the browser version mentioned below.
However it is working fine in all document model. When we use the telerik dll(Version : 2011.1.413.40).
Please suggest us to solve this issue for the telerik dll version 2010.1.519.40(that is with out updating to new dll).
Regards,
Bala..
Debug.Write(e.DestDataItem.OwnerTableView.Name);
// correctly writes "Privileges"
Debug.Write(e.DestinationTableView.Name);
// incorrectly writes "PrivilegeCategories"
<
telerik:RadComboBox
ID
=
"cboFromName"
runat
=
"server"
Skin
=
"Vista"
AllowCustomText
=
"True"
MarkFirstMatch
=
"True"
Width
=
"311px"
>
</
telerik:RadComboBox
>
<
asp:CustomValidator
ID
=
"CustomValidator1"
runat
=
"server"
ClientValidationFunction
=
"validateFromName"
ControlToValidate
=
"cboFromName"
CssClass
=
"body"
ErrorMessage
=
"From Name required"
></
asp:CustomValidator
>
function GetRadWindow() {
var oWindow = null;
if (window.radWindow) oWindow = window.radWindow;
else if (window.frameElement.radWindow) oWindow = window.frameElement.radWindow;
return oWindow;
}
function Close() {
GetRadWindow().close();
}
function CloseAndRebind(args) {
GetRadWindow().BrowserWindow.refreshGrid(args);
GetRadWindow().close();
}
function CloseWithArg() {
var customArg = $get("TextBox1").value;
GetRadWindow().close(customArg);
}
function openTramWD()
{
var oWnd = radopen("myRadWindow.aspx","radWindowfrTram"); //Error here!
}