Hi,
Is there a way to disable the RadGrid filter TextBox while keeping the filter button active and visible? I'm using the button as a combo box and no longer need the TextBox. Thanks for your help!
Hi,
I am Unable to export image of RadHtmlcHart in ie 9 [ Compatibility mode ] using RadClientExportManager. Please find the attachment. It works fine for other versions except ie 8 & 9 [ Compatibility mode ] .
Regards,
Chethan Y
Unfortunately, the Telerik skins don't specify a text color for each and every HTML element of the scheduler.
For example, the default styling for the H2 element in the scheduler header seems to be:
.RadScheduler .rsHeader h
2
{
font-size
:
15px
;
font-weight
:
normal
;
line-height
:
30px
;
text-indent
:
43px
;
height
:
30px
;
display
:
block
;
overflow
:
hidden
;
}
So now the scheduler picks up whatever color for eg. H2 elements is generally specified in the website, which might not be a suitable color for the scheduler at all.
I understand that I can overrule this in a specific website. But I would like a consistent look of the scheduler elements, regardless of the website styles at hand.
Can you please add default coloring to all control elements in the Telerik control skins?
I'm getting a warning on any date before 1980. There are no validators attached in the HTML, and nothing in the code behind. Is there anyway around this.
<
telerik:RadDatePicker
ID
=
"dtRetailIndusOfficeRentRollLeaseStartDate"
TabIndex
=
"4"
runat
=
"server"
></
telerik:RadDatePicker
>
<
telerik:RadGrid
ID
=
"gv1"
runat
=
"server"
>
<
MasterTableView
DataKeyNames
=
"UserId"
>
<
Columns
>
<
telerik:GridTemplateColumn
>
<
ItemTemplate
>
<
asp:CheckBox
ID
=
"CheckBox1"
runat
=
"server"
/>
</
ItemTemplate
>
</
telerik:GridTemplateColumn
>
</
Columns
>
</
MasterTableView
>
</
telerik:RadGrid
>
Hi,
Telerik UI for ASP.NET AJAX 2015.2.623
IE10
Visual Studion 2013
I am new to the PivotGrid and can't seem to figure out this simple thing. My SQLDataSource returns a list of valves. 2 of the columns are "Valve Size" and "Valve Type". I have a sinple PivotGrid with a row field of "Valve Size" and a column field of "Valve Type":
<telerik:RadPivotGrid ID="RadPivotGrid1" runat="server" DataSourceID="sds_ValvesBuiltByDay">
<Fields>
<telerik:PivotGridColumnField DataField="Valve Type"></telerik:PivotGridColumnField>
<telerik:PivotGridRowField DataField="Valve Size"></telerik:PivotGridRowField>
</Fields>
</telerik:RadPivotGrid>
When the page loads, there are rows for each size returned and columns for tech type but the individual cells in the grid are empty.
(See attached screenshot. The RadGrid below the PivotGrid displays the same data from the same SQL data source)
I want each cell to show the count of records for that size and type combination.
This is probably very simple but I have not found a way to do it.
Please tell me what I am doing wrong.
I am trying to set focus to a textbox within the edit template and when it runs I get the following error:
A first chance exception of type 'System.NullReferenceException' occurred in NgeDataEntry.dll
{"Object reference not set to an instance of an object."}
Not sure what I have wrong here. Can anyone spot the mistake.
protected void RadGrid1_ItemCreated(object sender, Telerik.Web.UI.GridItemEventArgs e)
{
if (e.Item is GridEditFormItem && e.Item.IsInEditMode)
{
UserControl myUserControl = e.Item.FindControl(GridEditFormItem.EditFormUserControlID) as UserControl;
string script = String.Format("$get('{0}').focus(); $get('{0}').select();", myUserControl.FindControl("RadTextBox2").ClientID);
ScriptManager.RegisterStartupScript(Page, typeof(Page), "myscript", script, true);
}
}