<
telerik:RadDatePicker
ID
=
"rdpDatum"
width
=
"0"
PopupDirection
=
"BottomRight"
Runat
=
"server"
>
<
Calendar
UseColumnHeadersAsSelectors
=
"False"
UseRowHeadersAsSelectors
=
"False"
runat
=
"server"
/>
<
DateInput
style
=
"display:none;"
DisplayDateFormat
=
"yyyy-MM-dd"
runat
=
"server"
/>
</
telerik:RadDatePicker
>
<
script
type
=
"text/javascript"
>
function OpenAboutLightBox() {
var lightBox = $find('<%= AboutLightBox.ClientID %>');
lightBox.show();
}
function OpenHelpLightBox() {
var lightBox = $find('<%= HelpLightBox.ClientID %>');
lightBox.show();
}
function OpenUserLightBox() {
var lightBox = $find('<%= UserLightBox.ClientID%>');
lightBox.show();
}
</
script
>
<
telerik:RadLightBox
ID
=
"AboutLightBox"
runat
=
"server"
Width
=
"900px"
Modal
=
"True"
PreserveCurrentItemTemplates
=
"False"
ShowLoadingPanel
=
"False"
ViewStateMode
=
"Disabled"
Height
=
"460px"
>
<
ClientSettings
>
<
AnimationSettings
NextAnimation
=
"CollapsingHorizontalStripes"
PrevAnimation
=
"VerticalResize"
ShowAnimation
=
"Resize"
>
</
AnimationSettings
>
</
ClientSettings
>
<
Items
>
<
telerik:RadLightBoxItem
>
<
DescriptionTemplate
>
<
div
style
=
"visibility:hidden;"
></
div
>
</
DescriptionTemplate
>
<
ItemTemplate
>
<
div
style
=
"padding: 0px; margin: 0px; overflow: hidden; position: relative;"
>
<
telerik:RadMultiPage
ID
=
"RadMultiPage_About"
runat
=
"server"
SelectedIndex
=
"0"
>
<
telerik:RadPageView
ID
=
"RadPageView_About"
runat
=
"server"
ContentUrl
=
"minimal_about.aspx"
Height
=
"460"
Width
=
"900"
>RadPageView</
telerik:RadPageView
>
</
telerik:RadMultiPage
>
</
div
>
</
ItemTemplate
>
</
telerik:RadLightBoxItem
>
</
Items
>
</
telerik:RadLightBox
>
<
td
>
<
telerik:RadSlider
ItemType
=
"Item"
SmallChange
=
"1"
TrackPosition
=
"TopLeft"
AutoPostBack
=
"false"
ShowDecreaseHandle
=
"false"
Width
=
"490"
LargeChange
=
"0"
OnClientValueChanged
=
"rwc_Input_Slider_ValueChanged"
OnValueChanged
=
"radSlider1_ValueChanged"
ShowIncreaseHandle
=
"false"
MinimumValue
=
"0"
MaximumValue
=
"36"
runat
=
"server"
ID
=
"radSlider1"
>
</
telerik:RadSlider
>
</
td
>
private void CreateSliderTicks(RadSlider radSlider)
{
int minuteTicks = 6;
int hourTicks = 24;
int dayTicks = 8;
// add minute ticks to the graph
for (int i = 0; i <
minuteTicks
; i++)
{
RadSliderItem
minuteItem
=
new
RadSliderItem();
minuteItem.Value = (i * 10).ToString() + " " + Resources.Units.Minutes;
//string
testValue
=
minuteItem
.Value.ToString();
//
minuteItem.Text
= minuteItem.Value.ToString() + " minutes";
radSlider.Items.Add(minuteItem);
}
// add hour ticks to the graph
for (int
i
=
1
; i < hourTicks; i++)
{
RadSliderItem
hourItem
=
new
RadSliderItem();
string
units
=
""
;//Resources.Units.Hours;
if (i > 1)
{
units = Resources.Units.Hours;
}
else
{
units = Resources.Units.Hour;
}
hourItem.Value = i.ToString() + " " + units;
//string testValue = hourItem.Value.ToString();
radSlider.Items.Add(hourItem);
}
// add day ticks to the graph
for (int i = 1; i <
dayTicks
; i++)
{
RadSliderItem
dayItem
=
new
RadSliderItem();
string
units
=
""
;
if (i > 1)
{
units = Resources.Units.Days;
}
else
{
units = Resources.Units.Day;
}
dayItem.Value = i.ToString() + " " + units;
//string testValue = dayItem.Value.ToString();
radSlider.Items.Add(dayItem);
}
1.
<
telerik:RadEditor
ID
=
"EMailContentEditor"
runat
=
"server"
Width
=
"95%"
ContentFilters
=
"RemoveScripts,IndentHTMLContent"
2.
ConvertToXhtml
=
"false"
ConvertFontToSpan
=
"false"
ExternalDialogsPath
=
"/EditorDialogs"
3.
EditModes
=
"Design,Html"
Height
=
"600px"
OnClientCommandExecuting
=
"OnClientCommandExecuting"
4.
OnClientLoad
=
"OnClientLoad"
>
If you select an image in the editor that is hosted on a 3rd party, and then click the image manager icon in the editor, you get a message that says
"You are trying to navigate to a non-existing folder or you do not have proper permissions to view this folder. Please, contact the administrator."
As you can see from my video, the image is hosted on a 3rd party site. I would like to know how i can disable this error message.
If i click the "OK" button then the image manager loads and i can see all the images in my image library.
The second issue is that i am unable to easily replace this image that is hosted on a 3rd party site with an image from my image library. To reproduce,
1. select an image in the editor that is hosted on a 3rd party site.
2. click the image manager icon
3. click ok to dismiss the "non-existing folder" message
4. select any existing image from my image library
5. click insert button in the image library dialog
When you follow these steps, nothing happens. the original image is still in place and the image i selected from the library is nowhere to be found.
I can workaround this issue by first deleting the image hosted on a 3rd party site and then inserting a new image from the image library. This problem does not exist if i use an image that is already in my image library and replace it with an image in my image library.
Please advise how i can remedy these two issues.
Thanks
-Mark