I have two tabs. Tab#1 contains a form which has validation controls.
The problem is I can not click on tab#2 to open unless I complete the form in tab#1.
How can I disable validation for the RadTab?
Thanks
Brew
Has anyone found a way to increase a multiline radtextbox automatically as a user types so that if can fit their input vertically?
We'd like to put the text box on the page with a base height of 100px. However, once the user has filled that space and keeps typing, instead of the text box getting scrollbars, we want it to add enough pixels to keep all the text visible.
This would need to occur up to a "max height" at which point the normal scroll bar behaviour would kick in...
Any thoughts?

Hello
I'm trying to disable the "Add New Record" button in a Telerik RadGrid. I found many solutions to hide it, but what I want is that it's visible, but if the user clicks on it, it doesn't do anything. I found a way to disable the "InitInsertButton", but not the "AddNewRecordButton". Here you can see my e
GridCommandItem cmditem = (GridCommandItem)RadGrid1.MasterTableView.GetItems(GridItemType.CommandItem)[0];
Control ctrl = cmditem.FindControl("AddNewRecordButton");
ctrl.Visible = false;
LinkButton btn = (LinkButton)cmditem.FindControl("InitInsertButton");
btn.Enabled = false;
As you can see the "InitInsertButton" is disabled, but there is no property "Enabled" for System.Web.UI.Control so I don't know how to disable it as well.
Hope you can help me
Regards,
Danilo
I have this
for (int i = 0; i < RadUpload1.UploadedFiles.Count; i++)
{
TextBox1.Text = TextBox1.Text +
"\n"+RadUpload1.UploadedFiles[i].FileName;
}
This FileName method returns the file name ONLY. How can i get the full source path?
For example if i upload from : c:/upload/test.jpg
I want to print out the whole "c:/upload/test.jpg" , not just "test.jpg"
Thank you!


Hi,I'm playing with one website and here is the thing:
On this page are plenty of divs, each with different content. I want to load the core (div headers, user info etc.) and after that, when user see this core, I want to async load content of each div. After that I want refresh content of divs, but in different timespan.
Can I do that somehow with Telerik Ajax? I tried something with AjaxPanel, but the content shows after the full page load.
Thank you very much for your advice.
Hi,
Is there a way to change specified column's cells Background color ?
For example, I would like to represent holidays' period by changing the column's cells color.
Thanks, Rémi.
...so I then tried...
document.getElementById('"
+ GridContextMenu.ClientID + "');
...which didn't work either.
So, the back to the original question: How do I get a context menu to work for a rad grid that is on a dynamically loaded user control?
I thought I'd make this a Post. I had asked the question in a reply to another Post, which may have not been appropriate.
http://www.telerik.com/community/forums/thread/b311D-bbktgd.aspx
Thanks for any help!
John D
I have an edit page that is able to edit administrators of a site, on reload or edit of the admin I need to load the name in the autocomplete box and then disable so they cannot change it on edit. Problem is I can seem to figure out how to reload the autocompletebox with the text.
myDataTable = New DataTable myDataTable = getReader(sql) If myDataTable.Rows.Count > 0 Then HFAdminId.Value = myDataTable.Rows(0)(0) txtItemSearch.Text = myDataTable.Rows(0)(0).ToString() ddlLocations.SelectedValue = myDataTable.Rows(0)(2) End IfAlso tried this but to no avail. myDataTable = New DataTable myDataTable = getReader(sql) If myDataTable.Rows.Count > 0 Then HFAdminId.Value = myDataTable.Rows(0)(0) txtItemSearch.Entries(0).Text = myDataTable.Rows(0)(1).ToString ddlLocations.SelectedValue = myDataTable.Rows(0)(2) end ifBoth gave me this errorIndex was out of range. Must be non-negative and less than the size of the collection.Parameter name: index Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.ArgumentOutOfRangeException: Index was out of range. Must be non-negative and less than the size of the collection.Parameter name: indexSource Error: