see the attached file.
My understanding if upload finish progress bar will close and green icon near file name will show.
Refer to the attached file upload status show 100% but progress bar do not close and green icon do not show.
Hi Guys,
Im working on Radfileexplorer I'm facing so many problems, My problem is like that I want assign the datasource to file explorer inside gridview how to assign the datasource to RadfileExplorer mastertable view its getting error here is the code . can you please help me .
GridBoundColumn Id = new GridBoundColumn();
rdFileExplorer.Grid.MasterTableView.Columns.Add(JobFileId);
Id .HeaderText = "Id";
Id .UniqueName = "Id";
Id .DataField = "Id";
Id .SortExpression = "Id";
GridBoundColumn Name = new GridBoundColumn();
Name .Grid.MasterTableView.Columns.Add(JobFileId);
Name .HeaderText = "Name";
Name .UniqueName = "Name";
Name .DataField = "Name ";
Name .SortExpression = "Name";
rdFileExplorer.Configuration.ContentProviderTypeName = typeof(Telerik.Web.UI.Widgets.FileSystemContentProvider).AssemblyQualifiedName;
rdFileExplorer.InitialPath = Convert.ToString(folders.GetValue(0));
rdFileExplorer.Configuration.ViewPaths = folders;
rdFileExplorer.Configuration.DeletePaths = folders;
rdFileExplorer.Configuration.UploadPaths = folders;
rdFileExplorer.Configuration.MaxUploadFileSize = 10485760;
rdFileExplorer.GridContextMenu.OnClientShown = "OnClientContextMenuShown";
rdFileExplorer.Grid.AutoGenerateColumns = false;
rdFileExplorer.Grid.MasterTableView.DataSource = ds.Tables[0].DefaultView;
rdFileExplorer.Grid.MasterTableView.DataBind();
Its getting error im unable to assign the datakey names.
Can you please help me how to assign the datasource.
Hi everyone.
I have a question. While I was programming a webpage with a grid (radgrid), the grid calls a function and this function fill the data into grid using datasource. No problem.
But I have a problem in different browsers: In Internet Explorer 11 the grid shows the information without problems, but in Google Chrome (the last version), the grid shows the information of the row but like a random mode. In other words, when I load the page the information maybe load or not. When I refresh the page the grid doesn't shows information (or maybe yes), I do another refresh and then yes, shows the data. After all I do another refresh and maybe shows or not. This is not correct... The control would shows the information always, not random.
I don't know what causes this issue, maybe the control? javascript?
If need more information, please, tell me.
Regards.
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.