Hi team,
I am trying to save more records from telerik Ajax grid from client side.
1) "grid.get_batchEditingManager().saveChanges(grid.get_masterTableView());" this line is taking more time in IE and taking less time in chrome.
2) If i am trying to save more rows then it is not hitting WCF service method. It is showing timeout error in javascript and not hitting WCF service method. If am saving less records then it is hitting WCF service method and saving but problem with more records only.
Please help me in resolving these two issue.
Hello,
I stuck in a problem, listbox scrolls to top when I set to checkbox=true if works fine when it set to false. and does not fire any client side event
This happens infrequently some times it works and some time it doesnt.
I am adding items to list box server side and aslo doing some action on server side on index change.
Below is my code.
<telerik:RadListBox OnClientItemChecked="OnClientItemCheckedHandler" AutoPostBack="true"
OnSelectedIndexChanged="btnViewBasket_OnClick" OnClientSelectedIndexChanged="onClientSelectedIndexChangedHandler"
RenderMode="Native" CheckBoxes="true" CssClass="NoBorder FullWidth RADLISTBOX" ID="listBoxBaskets"
runat="server">
</telerik:RadListBox>
<script>
function OnClientItemCheckedHandler(sender, eventArgs) {
// my client side logic
}
function onClientSelectedIndexChangedHandler(sender, e) {
// my client side logic
}
</script>
Hi,
We are using Telerik windows control in one of our "X" application, Data will be displayed in a grid where we can group by or arrange and filter the data. It is working on other operating systems except windows 10 anniversary version. i tried few steps to fix the issue process of doing that found out that the same code we are using in another "Y" application when i debugged there it is working fine in "Y" application which is in Windows 10 anniversary version and not working in "X" application. May be its compatibility issue in the "X" application i am not able to say exactly whats going on can you help me with this issue.
Thanks in advance,
Mannava
I have the following:
<
telerik:GridTemplateColumn
DataField
=
"password"
>
<
ItemTemplate
>
<
telerik:RadComboBox
runat
=
"server"
ID
=
"ddlActions"
Skin
=
"Silk"
Width
=
"115"
AutoPostBack
=
"true"
OnSelectedIndexChanged
=
"ddlActions_SelectedIndexChanged"
>
<
Items
>
<
telerik:RadComboBoxItem
Value
=
"-1"
Text
=
"Select Action"
/>
<
telerik:RadComboBoxItem
Value
=
"0"
Text
=
"Edit"
/>
<
telerik:RadComboBoxItem
Value
=
"1"
Text
=
"Opt-out"
/>
<
telerik:RadComboBoxItem
Value
=
"2"
Text
=
"Save"
/>
<
telerik:RadComboBoxItem
Value
=
"3"
Text
=
"View"
/>
</
Items
>
</
telerik:RadComboBox
>
</
ItemTemplate
>
</
telerik:GridTemplateColumn
>
protected
void
ddlActions_SelectedIndexChanged(
object
sender, RadComboBoxSelectedIndexChangedEventArgs e)
{
RadComboBox rcb = (RadComboBox)sender;
GridDataItem data = (GridDataItem)rcb.NamingContainer;
string
pwd = data.GetDataKeyValue(
"pwd"
).ToString();
string
rid = data.GetDataKeyValue(
"rid"
).ToString();
switch
(rcb.SelectedValue)
{
case
"0"
:
.....
The switch works perfectly the first time any radcombobox in the grid is changed. The problem I am having is that when a subsequent radcombobox is changed in a different row, the sender appears to be the first radcombobox which was changed, not the actual (second) changed radcombobox.
How do I work around this?
Hi,
we are exploring the template control to verify if we can build something like the attached picture. This is basically a timesheet module where people enter hours worked on a given project each day.
The idea is something like:
Is that possible on using the Scheduler control?
How would I go about limiting filter options in the header context menu?
Any help would be greatly appreciated
Thanks
While in Batch Edit mode and using a hierarchy table I am getting an error in the BatchEditCommand event.
foreach (GridBatchEditingCommand command in e.Commands)
{
Hashtable newValues = command.NewValues;
Hashtable oldValues = command.OldValues;
string newFirstName = newValues["FirstName"].ToString();
}
In the foreach method there is an error thrown saying that a column with the unique name "System" cannot be found.
The SaveAllHiearchyLevels attribute is set to true. When I set the SaveAllHiearchyLevels attribute to false I do not get the error, but the e.commands = 0;
Note: The Grid is also being created from code behind and added to the page in the Init page event.