or
<
telerik:RadWindow ID="RadWindow5" runat="server" Title="Details" Height
Width="650px" Left="150px" ReloadOnShow="true" Modal="true" VisibleStatusbar
Animation="Resize" ShowContentDuringLoad="false" VisibleTitlebar="false" CssClass="borRad" BorderStyle="Dashed" BorderWidth="1" BorderColor
</telerik:RadWindow>
However the border just defaults to standard?
Any ideas what i am doing wrong please?
Regards
Cush
<
telerik:RadCalendar
ID
=
"rc1"
runat
=
"server"
>
<
FastNavigationSettings
OkButtonCaption="</script>">
</
FastNavigationSettings
>
</
telerik:RadCalendar
>
Hi,
Please find attached screen shots. Here we are using a Telerik Rad Editor web part. The attached screens shots, one from design view and another is published view. In both the cases alignment of the content differs.
Request you to please provide the resolution steps.
<
telerik:RadGrid
ID
=
"rg_Collateral"
runat
=
"server"
Width
=
"450px"
AllowSorting
=
"true"
GridLines
=
"Both"
AllowAutomaticDeletes
=
"true"
AllowAutomaticInserts
=
"true"
AllowAutomaticUpdates
=
"true"
PageSize
=
"5"
AllowPaging
=
"true"
AutoGenerateColumns
=
"false"
Skin
=
"Simple"
DataSourceID
=
"collateral_Entity"
OnItemDataBound
=
"rg_Collateral_ItemDataBound"
Font-Names
=
"Calibri"
>
<
MasterTableView
Width
=
"100%"
CommandItemDisplay
=
"Top"
>
<
Columns
>
<
telerik:GridBoundColumn
DataField
=
"USERID"
HeaderText
=
"User ID"
UniqueName
=
"userid"
ReadOnly
=
"true"
Display
=
"false"
/>
<
telerik:GridBoundColumn
DataField
=
"CONUM"
HeaderText
=
"CoNum"
UniqueName
=
"conum"
ReadOnly
=
"true"
Display
=
"false"
/>
<
telerik:GridBoundColumn
DataField
=
"DATEENTERED"
HeaderText
=
"Date Ent."
UniqueName
=
"dateEntered"
ReadOnly
=
"true"
DataFormatString
=
"{0:MM/dd/yyyy}"
/>
<
telerik:GridDateTimeColumn
DataField
=
"RELEASED"
HeaderText
=
"Date Rel."
UniqueName
=
"dateReleased"
DataFormatString
=
"{0:MM/dd/yyyy}"
/>
<
telerik:GridDropDownColumn
DataField
=
"COLLATERALTYPE"
HeaderText
=
"Type"
UniqueName
=
"type"
DropDownControlType
=
"DropDownList"
/>
<
telerik:GridNumericColumn
DataField
=
"COLLATERALAMT"
HeaderText
=
"Collateralamt"
UniqueName
=
"collateralamt"
/>
<
telerik:GridDateTimeColumn
DataField
=
"EXPDATE"
HeaderText
=
"Date Exp."
UniqueName
=
"dateExpired"
DataFormatString
=
"{0:MM/dd/yyyy}"
/>
<
telerik:GridBoundColumn
DataField
=
"AUTORENEW"
HeaderText
=
"Auto Ren."
UniqueName
=
"autoRenew"
Display
=
"false"
/>
<
telerik:GridBoundColumn
DataField
=
"BONDNUM"
HeaderText
=
"bond #"
UniqueName
=
"bondNumber"
ReadOnly
=
"true"
/>
<
telerik:GridBoundColumn
DataField
=
"DESCRIPTION"
HeaderText
=
"Desc."
UniqueName
=
"description"
/>
</
Columns
>
</
MasterTableView
>
<
PagerStyle
Mode
=
"NextPrevNumericAndAdvanced"
/>
</
telerik:RadGrid
>
protected
void
rg_Collateral_ItemDataBound(
object
sender, GridItemEventArgs e)
{
hdBondnum.Value = txt_BondNumber.Text;
hdConum.Value = txt_AccountNumber.Text;
hduserid.Value = Membership.GetUser().ToString();
if
((e.Item
is
GridEditFormInsertItem) && (e.Item.OwnerTableView.IsItemInserted))
{
GridEditFormInsertItem insertItem = (GridEditFormInsertItem)e.Item;
TextBox txtbx = (TextBox)insertItem[
"userid"
].Controls[0];
TextBox txtbx2 = (TextBox)insertItem[
"conum"
].Controls[0];
TextBox txtbx3 = (TextBox)insertItem[
"dateEntered"
].Controls[0];
TextBox txtbx4 = (TextBox)insertItem[
"bondNumber"
].Controls[0];
GridEditableItem editItem = e.Item
as
GridEditableItem;
GridEditManager editMgr = editItem.EditManager;
GridDropDownListColumnEditor colEditor = editMgr.GetColumnEditor(
"type"
)
as
GridDropDownListColumnEditor;
string
s = colEditor.SelectedValue;
colEditor.DataSource = UtilityBond.getCollateralType();
colEditor.DataBind();
txtbx.Text = hduserid.Value;
txtbx2.Text = hdConum.Value;
txtbx3.Text = String.Format(
"{0:M/d/yyyy}"
, DateTime.Today.Date);
txtbx4.Text = hdBondnum.Value;
}
}
grdExport.ExportSettings.ExportOnlyData =
true
;
grdExport.ExportSettings.IgnorePaging =
true
;
grdExport.ExportSettings.OpenInNewWindow =
true
;
grdExport.ExportSettings.FileName = DateTime.Now.ToString(
"yyyyMMdd"
) + filename;
grdExport.MasterTableView.ExportToCSV();
Protected
Sub
HydrateGrid(
ByVal
bindit
As
Boolean
)
Try
radgrdResults.DataSource = searchvalues.Fetch(gd)
If
bindit =
True
Then
radgrdResults.DataBind()
End
If
Catch
ex
As
Exception
Throw
ex
End
Try
End
Sub
Protected
Sub
searchButton_Click(
ByVal
sender
As
Object
,
ByVal
e
As
System.EventArgs)
Handles
searchButton.Click
Try
' hydrate grid with data
HydrateGrid(
True
)
Catch
ex
As
Exception
Throw
ex
End
Try
End
Sub
Protected
Sub
radgrdResults_NeedDataSource(
ByVal
source
As
Object
,
ByVal
e
As
Telerik.Web.UI.GridNeedDataSourceEventArgs)
Try
' Hydrate grid with data but don't bind
HydrateGrid(
False
)
Catch
ex
As
Exception
Throw
ex
End
Try
End
Sub