Hi there,
At the moment I am using both the auto-generated edit form and the FormTemplate for my grid.
When I use the FormTemplate I want to have the update and cancel buttons the same skin for the buttons as the ones from the auto-generated edit form.
Regards,
Marcel
<
asp:ImageButton
ID
=
"ibCancel"
ImageUrl
=
"~/Images/Cancel.gif"
runat="server" Text="Cancel" CausesValidation="false" CommandName="Cancel" />
Hi there,
I am looking for a way to style the first column of my grid.
I want to have the backcolor of all the cells of the first column the same as the backcolor of the grid header depending of the skin used.
So if I use the skin 'Default' all the cells of the first column should have the backcolor of the grid header of the skin 'Default'.
Does anybody know how to do this?
Regards,
Marcel
<
telerik:RadEditor
EditModes
=
"Design"
Height
=
"250"
Width
=
"700"
ID
=
"txtBody"
runat
=
"server"
ToolsFile
=
"~/RadEditorTool.xml"
Content='<%# Bind("Body") %>'>
<
CssFiles
>
<
telerik:EditorCssFile
Value
=
"~/Styles/EditorContentArea.css"
/>
</
CssFiles
>
</
telerik:RadEditor
>
<
asp:RequiredFieldValidator
ID
=
"reqtxtBody"
runat
=
"server"
ControlToValidate
=
"txtBody"
CssClass
=
"FieldValidator"
ErrorMessage
=
"Body has to be set"
ValidationGroup
=
"save"
>
<
asp:Image
ID
=
"Image3"
runat
=
"server"
AlternateText
=
"error"
ImageUrl
=
"~/Images/exclamation12x12.gif"
Width
=
"12"
Height
=
"12"
/>
</
asp:RequiredFieldValidator
>
<
telerik:RadAutoCompleteBox
ID
=
"RadAutoCompleteBox3"
runat
=
"server"
Width
=
"400"
DropDownWidth
=
"100"
DropDownHeight
=
"100"
DataSourceID
=
"SqlDataSource1"
DataTextField
=
"State_Name"
>
</
telerik:RadAutoCompleteBox
>
<
telerik:GridCheckBoxColumn
DataField
=
"PayOnline"
DataType
=
"System.Boolean"
HeaderText
=
"PayOnline"
SortExpression
=
"PayOnline"
UniqueName
=
"PayOnline"
>
<
HeaderStyle
Width
=
"30px"
/>
</
telerik:GridCheckBoxColumn
>
I have a RadChart that will always contain 365 plot points. Each plot points represents a dollar value for a day. The last point being today and the first point being 365 days ago.
I bind a list of a simple object containing properties for Dollar and DateTime to the radgrid.
What I'm trying to figure out is how to display a X-Axis Tick line and Label for the point corresponding to the first of every month.
See my screenshot below with point ranging from Apr 22, 2011 to Apr 21, 2012. The result I am looking for is in purple (Note that I didn't draw out all of the labels, just enough to give an idea):
Link To Screen Shot