I have the Rad editor being used at two site collections, one being the root site collection and one which comes under the root.
I have an Image Library at the Root Site Collection and I want to show the same library items inside the second site collection instead of creating another replica library at that particular site collection. I tried using the '/ImagesLibrary' but it points to the corresponding Site collection. I was going through the below post and wanted to know if the feature has been made available in the current versions.
http://www.telerik.com/community/forums/sharepoint-2007/full-featured-editor/image-manager-in-radeditor-5-2-0.aspx
Please help. Thanks in advance.
| protected void rcChart_BeforeLayout(object sender, EventArgs e) |
| { |
| // Configure the icons |
| foreach (ChartSeriesItem item in rcChart.Series[0].Items) |
| { |
| item.PointAppearance.Dimensions.Width = 25; |
| item.PointAppearance.Dimensions.Height = 35; |
| } |
| } |
Hi
I have i a Radgrid a formtemplate that includes 3 Dateinput fields all surrended by RadDateTimePicker
By inserting new rows:
The first datefield should be defaulted with a parameter commig from a globdate = Request["globdate"].
The second and third datefield should after modify from datafield1 be defaulted with a value depending an this modified value.
how do I achive this with ClientEvents code ?.
thx
Torben
| function ShowDialog() { | |
| //window.radopen(null, "DialogWindow"); | |
| //Forced reload (option 1): In order to force a reload on the dialog, the following approach should be used | |
| //window.radopen("./SimpleDialog.aspx", "DialogWindow"); | |
| //Forced reload (option 2): If one is not sure what the current url is, forced reload can be achieved like this: | |
| var oWnd = window.radopen(null, "DialogWindow"); | |
| oWnd.SetUrl(oWnd.GetUrl()); | |
| } | |
| /* Called when a window is being shown. Good for setting an argument to the window */ | |
| function OnClientShow(radWindow) { | |
| //Get current content of textarea | |
| var oText = document.getElementById("<%=radtextbox1.ClientID %>").value; | |
| //Create a new Object to be used as an argument to the radWindow | |
| var arg = new Object(); | |
| //Using an Object as a argument is convenient as it allows setting many properties. | |
| arg.TextValue = oText; | |
| //Set the argument object to the radWindow | |
| radWindow.Argument = arg; | |
| } | |
| function CallBackFunction(radWindow, returnValue) { | |
| var oArea = document.getElementById("<%=ChequeDetailsGrid.ClientID %>"); | |
| if (returnValue) oArea.value = returnValue; | |
| else alert("No text was returned"); | |
| } | |
| /* Called when a window is being closed. */ | |
| function OnClientClose(radWindow) { | |
| //Another option for passing a callback value | |
| //Set the radWindow.Argument property in the dialog | |
| //And read it here --> var oValue = radWindow.Argument; | |
| //Do cleanup if necessary | |
| } |
Thanxs in advance
Panos