I am still exploring the Spreadsheet control and I can see where it would be a useful tool. I am able to get cell values using JavaScript but I don't see a way to change the values. Also, I would like to see a cell onChange event that would allow me to format the font color if the value changes.
We are using similar functionality using your grid control on a screen. The spreadsheet control might be better suited for this screen if I can add this functionality. Is this available? If so, can you provide example code? If not, are you planning to add these to the Spreadsheet control?
function
setValuesInCombobox(options) {
var
controler =$find(getClientIdById(cboBuildingControlName));
controler.set_value(options);
controler.set_text(options);
var
allChoicesFromCbo = controler.get_items()._array;
var
selectedOptions = options.split(
","
);
for
(i = 0; i < selectedOptions.length; i++) {
var
building = selectedOptions[i].trim();
for
(j = 0; j < allChoicesFromCbo.length; j++) {
var
nameOfBuildingInCbo = allChoicesFromCbo[j]._properties._data.value;
if
( nameOfBuildingInCbo == building) {
allChoicesFromCbo[j]._setChecked(
true
);
allChoicesFromCbo[j].select();
}
}
}
There is an issue resizing the appointments of RadScheduler,
when you drag the edge of the appointment, more I'm closer to right side, more be a mismatch between the cursor position and location of the appointment
I recorded a video to show the problem
https://youtu.be/bsuXTtpieDU
I am receiving the following error when trying to run the form with the Telerik Diagram. Version is 2015.1.401.45 . I'm using IE11. And .net Framework = 4.5
0x800a138f - JavaScript runtime error: Unable to get property 'getConnector' of undefined or null reference
The line directly above this error is on
var bp=X.getShapeById(bq);
return bp.getConnector(Y.connector||d);
Please let me know if more information is required. Thanks!​​
Hi Telerik Team,
We are using Telerik AJAX UI control version "2015.3.930.45" in our project. We are using Telerik Image editor in our application and we are facing issue with the eps files to display in Telerik Image editor.
We have tried to display the eps file in Telerik Image editor but eps file was NOT visible in Telerik Image editor. We have tried to open this eps file in a freeware EPS File Viewer (http://epsfileviewer.com/) , in which the said file get displayed properly..
Here is the sample code which we are using in our project:
<telerik:RadImageEditor ID="TelerikRadImageEditor" runat="server" ImageUrl="https://<servername>/<folderName>/<fileName>.<extension>" >
</telerik:RadImageEditor>
Please help us out to resolve this problem.
protected
void
Page_Load(
object
sender, EventArgs e)
{
LinkButton myLinButton = myMasterTemplate.MyButton;
myLinkButton.Click += myLinkButton_Click;
if
(Page.IsPostBack)
myGrid.NeedDataSource += myGrid_NeedDataSource
...(more code)
}
Overlapping labels and x-axis title.
I added margin to some value also.
For example below code.
<TitleAppearance Text="Lost To Vendor">
<TextStyle Margin="150px" />
</TitleAppearance>​
Please see the attached file.
urgent......
Thanks,
Sreekanth.
I am using the admin lte theme and i picked the bootstrap theme for my date picker but no matter how many times i click on the popup icon the date picker refuses to show.
01.
<
telerik:RadDatePicker
ID
=
"rdDateOfBirth"
Style
=
"vertical-align: middle;"
MinDate
=
"2006-02-01"
02.
runat
=
"server"
MaxDate
=
"2099-12-16"
Culture
=
"en-US"
FocusedDate
=
"2006-02-01"
03.
Width
=
"136px"
AutoPostBack
=
"True"
SelectedDate
=
"2015-11-12"
Skin
=
"Bootstrap"
>
04.
<
DateInput
ID
=
"DateInput3"
runat
=
"server"
DateFormat
=
"dd-MMM-yyyy"
Height
=
"20px"
05.
AutoPostBack
=
"True"
DisplayText
=
"12-Nov-2015"
SelectedDate
=
"2015-11-12"
value
=
"12-Nov-2015"
>
06.
<
EmptyMessageStyle
Resize
=
"None"
></
EmptyMessageStyle
>
07.
08.
<
ReadOnlyStyle
Resize
=
"None"
></
ReadOnlyStyle
>
09.
10.
<
FocusedStyle
Resize
=
"None"
></
FocusedStyle
>
11.
12.
<
DisabledStyle
Resize
=
"None"
></
DisabledStyle
>
13.
14.
<
InvalidStyle
Resize
=
"None"
></
InvalidStyle
>
15.
16.
<
HoveredStyle
Resize
=
"None"
></
HoveredStyle
>
17.
18.
<
EnabledStyle
Resize
=
"None"
></
EnabledStyle
>
19.
</
DateInput
>
20.
<
Calendar
ID
=
"Calendar3"
runat
=
"server"
UseRowHeadersAsSelectors
=
"False"
UseColumnHeadersAsSelectors
=
"False"
21.
ViewSelectorText
=
"x"
EnableKeyboardNavigation
=
"True"
Skin
=
"Bootstrap"
>
22.
</
Calendar
>
23.
24.
<
DatePopupButton
ImageUrl
=
""
HoverImageUrl
=
""
></
DatePopupButton
>
25.
</
telerik:RadDatePicker
>