I have a Modal that loads the page newFolder.aspx. I want to have a button on the newFolder.aspx form that, when clicked, the modal is closed and the parent is again, enabled.
My telerik editor is having issues with the toolbars and strange characters. I cannot reproduce this on my own IE or Firefox but the client's IE sees this issue. I am not sure if this is a setting in IE or another issues.
please view the picture at
http://www.unity-envirotech.com/images/EditorProblem.jpg
I have 2 radgrids with the first one being a parent grid(packages), and when a user clicks on a row, a related grid(package contents) for that row gets populated. I am using the control parameter in the datasource of the second grid as the selectedvalue of the selected row in the first grid.
The user also has the option to add a new package. I want to programmatically (in javascript or C#) de-select the row on the click on add new and then automatically select the new inserted item so that the second grid can rebind using the new package.
Hi,
in my exercices: I'm using radwindow, in this radwindow I have radgrid. When I resize radwindow using mouse, radgrid is not correctly display. Some part of grid is hidden (radwindow is small now) and there is scrollbar to view all grid but this scrollbar "remembers" former size of radwindow and I can't view all grid.
How can I improve behavior of radgrid?
I recently added a Grid to a test website and was playing around. Upon doing so, I setup the Grid to pull data from one table in my database, lets call it test.mdb.
I want it to pull data from two tables in that database. How can I do it? Once table is called Services and the other is Service_Categories. I want the data to be grouped based on the Service_Category.
I am using the following code to display the Ajax Loading image. When I do for the first time everything seems to be working. For the second time I am getting this error.
<script language="javascript" type="text/javascript">
var currentLoadingPanel = null;
var currentUpdatedControl = null;
function ResponseEnd()
{
//hide the loading panel and clean up the global variables
if (currentLoadingPanel != null)
currentLoadingPanel.style.display="none";
currentUpdatedControl = null;
currentLoadingPanel = null;
}
</script>