Hi ,
We have upgarded from Q32015.3.1111.35 to R3 2020.3.915.45.
I have seen many posts regarding discontinuity of Rad dll references and all dll are present in a single assembly.
so i have tried to migrate classic RadGrid to RadGrid of ajax Suite with the help of below article, to support Modern Browser.
I am getting an Issue
<telerik:RadGrid ID="CombineRadGrid" AutoGenerateColumns="false" EnableAJAX="true" GridLines="None"
Skin="SAM" UseEmbeddedScripts="false" Width="100%" runat="server">
<ClientSettings AllowExpandCollapse="true" AllowGroupExpandCollapse="true"
ClientEvents-OnRequestEnd="CombineRadGridRequestEnd" ClientEvents-OnRequestStart="CombineRadGridRequestStart" />
</telerik:RadGrid>
Is there any property change with Telerik.WebControls.GridClientSettings and Telerik.Web.UI.GridClientSettings?
Can anyone please help on this to resolve and share me?
Hi,
I have a RadGrid that uses a DropDownList to give the user choices. I'm using the batch editing features. I don't know until run time what the contents of the dropdownlist will be. I am doing a preliminary population of the dropdownlist in the PreRender event. Essentially, this gives the user a list with too many choices. During runtime, the user will click the list to select an option.
At this point, the dropdownlist's population will be affected by the item in another row's cell. For example, if the cell in column A has a value of xxx, I need the drop down list to show X, Y, Z. If the cell in column A has a value of yyy, the drop down should show X,Y.
I've been looking at the ClientSide BatchEditing article and I believe I want to use the javascript OnBatchEditOpened function to adjust the dropdownlist. The API talks about using getCellValue(cell), and I think I can use that to get the value of the neighboring cell (the column A cell mentioned above). Something like this:
function OnBatchEditOpened(sender, args) {
var AccessLevel = getCellValue(______)
}
I'm not sure what the function argument should be to get the Column A data.
Also, is there documentation for the getCellValue function? I just haven't had any luck finding it.
Thanks,
Mike
I have a radcombobox with checkboxes enabled and i would like to be able to see the total number of items checked in the header even when i click the "check all" checkbox. Currently if you check one or two items you see a comma separated list of the items checked, if i were to check 4 items it says "4 items checked", but if i click the "Check All" checkbox in the header then the caption just reads "All items checked". it is desirable for us to customize that message to say how many items actually are checked, either using the same syntax "X items checked" or using a hybrid syntax like "All X items checked"...
Is there a way to accomplish this behavior?
Thanks!
-Mark
When inserting links, if you add a space after the element it will add a   instead of just white space.
For example, using the demo, if you type in "this is atest" and you insert a link by highlighting "a", and then add a space before test it will look like the following:
this <a href="http://www.google.com">is a</a> test
Is this expected behavior?
I am unable to call the OnClick event when selecting a CardAction. Any help would be appreciated.
<telerik:CardActionsContainerComponent runat="server" CardActionsAlignment="Stretched" Orientation="Horizontal">How do I show a text e.g. "No appointments to display" if there is no appointment selected time period?
Uses Agenda view...
I have an Asp.net website , and telerik controls on it. On page load I get ConvertFontToSpanfilter error as an alert. On clicking few times 'OK' on alert i am able to proceed normally.
I am not able to figure it out why it's happening . As i know we can disable the filter but is there any specific reason it's happening?
becasue it's random - right now i don't see on my pages
When a button in a RadListView is clicked, I want to change the text of the button on the client side. I can find the listview and the index of the row, but can't set the button text of the clicked button. The code below always changes the text of the button in the first record.
Also, is there an easier way to find the button without adding an attribute in radlistview1_ItemDataBound?
function updateBtn(sender, args) {
var listview = $find('<%=radlistview1.ClientID%>');
var myindex = sender._element.getAttribute("rowindex");
var btn = $telerik.findControl(document.documentElement, "radbutton1");
//How to select the button that was clicked?
btn.set_text("Clicked"); //works for first row only
}
<telerik:RadListView runat="server" ID="radlistview1" DataSourceID="SqlDataSource1" DataKeyNames="myRecordid">
<ItemTemplate>
<telerik:RadButton runat="server" ID="radbutton1" Text='button'
ButtonType="StandardButton" RenderMode="Auto"
OnClientClicked = "updateBtn"
AutoPostBack="false" UseSubmitBehavior="false">
</telerik:RadButton>
</ItemTemplate>
</telerik:RadListView>
Private Sub radlistview1_ItemDataBound(sender As Object, e As RadListViewItemEventArgs) Handles radlistview1.ItemDataBound
' Add an attribute to the button that can be passed to JS
If TypeOf e.Item Is RadListViewDataItem Then
Dim item As RadListViewDataItem = TryCast(e.Item, RadListViewDataItem)
Dim btn As RadButton = TryCast(item.FindControl("radbutton1"), RadButton)
btn.Attributes.Add("rowindex", item.DataItemIndex.ToString())
End If
End Sub
Hi,
I have a Gridhyprlink column with a DataNavigateUrlFormatString and 2 DataNavigateUrlFields
however I want one of those fileds to be conditional on another Column;
eg
DataNavigateUrlFormatString="https://main.aspx?etn={0}&pagetype=entityrecord&id={1}"
DataNavigateUrlFields= ((if (entityid ==2) {a} else {b}) ,mainid )