Hi ,
I have a radgrid in radpane. The Radgrid loses its height and the data is not visible. Tried one of the links by telerik http://www.telerik.com/forums/radgrid-in-radpane-problem-with-100-height. This is not working. Thanks for the Help.
Is it possible with Telerik MVC Grids to customize the pager similar to how grouping works?
So for instance I want to look at all of Student A's records and I don't care about how many rows will be returned.
Then I want to use the pager to look at all of Student B's records.
Is such a thing even possible? :)
I get the error "These columns don't currently have unique values" when I have more than one NULL parent value in my list. The element Ids are all unique but I always get the error. Please help.
Sample data
parentId elementId elementText
NULL 116 Text1
116 2108 Text2
2108 2109 Text3
2108 2110 Text4
NULL 72 Text5
72 655 Text6
72 660 Text7
72 672
<
telerik:RadAjaxManager
runat
=
"server"
ID
=
"ram"
>
<
AjaxSettings
>
<
telerik:AjaxSetting
AjaxControlID
=
"btnExportTasks"
>
<
UpdatedControls
>
<
telerik:AjaxUpdatedControl
ControlID
=
"btnExportTasks"
/>
</
UpdatedControls
>
</
telerik:AjaxSetting
>
</
AjaxSettings
>
</
telerik:RadAjaxManager
>
Response.End()
End Sub
Hello All
I am using RadAsyncUpload and using a custom HTTPHandler and inserting the files directly to DB. Before inserting I am checking for the MIME Type of the file. I am getting the MIME type from Uploadedfile.ContentType. This is returning NULL for .zip file.I am using IE 10 and the version of Telerik is 2014.3.1024.35
Any help is much appreciated.
Thanks
Rakesh
Hi,
I try to Bind an RadAutoCompleteBox with a Dictionnary, but I have this error message when the page is loaded and I tap a letter into the RadAutoCompleteBox => "The control DataSource(or DataSourceID) is not set."
I try the following code :
ASCX :
<
telerik:RadAutoCompleteBox
runat
=
"server"
ID
=
"RadAutoCompleteBox1"
InputType
=
"Text"
Width
=
"200"
DropDownWidth
=
"150px"
></
telerik:RadAutoCompleteBox
>
ASCX.CS
01.
protected
void
Page_Load(
object
sender, EventArgs e)
02.
{
03.
if
(!Page.IsPostBack)
04.
{
05.
Dictionary<
int
,
string
> dict =
new
Dictionary<
int
,
string
>();
06.
dict.Add(1,
"Ann"
);
07.
dict.Add(2,
"John"
);
08.
dict.Add(3,
"Mary"
);
09.
RadAutoCompleteBox1.DataSource = dict;
10.
RadAutoCompleteBox1.DataTextField =
"Value"
;
11.
RadAutoCompleteBox1.DataValueField =
"Key"
;
12.
}
13.
}
Thanks for helping me
Hi All,
I am using RadAjaxManager, RadPanelBar andRadGrid in my user control.
Issue:
1. Click on Webpart and click on "Add new record" in Grid from "FirstTabl" tab at first without clicking on any tab.
Add Mode and Edit Mode working fine as expected. Showing and populating
all control(RadEditor, RadPanel etc.) from the grid properly.
It works fine.
2. Click on Webpart and then click on any other tab, then click on click on "Add new record". from Grid
Add Mode and Edit Mode behaves weird. Data not getting populating properly.
Controls inside RadGrid and AjaxManager not initializing properly.
Error: 0x800a138f - JavaScript runtime error: Unable to get property '_preInitialize' of undefined or null reference
After follow the #1 step and then if you work with any Tab its working fine.
Can anyone please help me how resolve this issue ? Why this is happing with TAB and Grid with Ajaxmanager.
Thanks,
Harish Patil
I have following RadComboBox that triggers a javascript function which in turn enables a different RadComboBox
<
telerik:RadComboBox
ID
=
"ddlMode"
runat
=
"Server"
CssClass
=
"selectBox"
AutoPostBack
=
"false"
Width
=
"90"
Font-Size
=
"Small"
OnClientSelectedIndexChanged
=
"ddlMode_OnClientSelectedIndexChanged"
><
Items
><
telerik:RadComboBoxItem
Text
=
"New"
Value
=
"0"
Selected
=
"true"
/><
telerik:RadComboBoxItem
Text
=
"Edit"
Value
=
"1"
/>
</
Items
>
</
telerik:RadComboBox
>
Following is the Javascript called:
function
ddlMode_OnClientSelectedIndexChanged(sender, args) {
debugger;
var
category = $find(
"<%= ddlPRInfo_ItemCategory.ClientID %>"
);
category.enabled =
true
;
}
But it doesn't work.
Please guide on same..
Probably a very noob question:
Supposed I have a RadComboBox in the ItemTemplate of a RadDataForm.
The entity "Client" have a column called "genderID", which should be bound to the dataform.
Another entity "DefGender" should be bound to the combobox, with "genderID" as the DataValueField, "genderText" as the DataTextField, and I want to somehow bind the SelectedValue to Client.genderID
How would you do this pragmatically? It was pretty straight forward in Silverlight, but I couldn't figure this out in ASP.
Thanks.