Hi,
We are trying to create a mobile view of some forms which use Telerik controls for some elements, namely RadInput and RadInputMulti. All other form fields save when the form is posted back on mobile except for the Telerik based fields. When the page is posted back we are seeing a javascript error that reads 'Uncaught TypeError: Cannot read property 'PageRequestManager' of undefined', coming ScriptResource.axd at line 106.
Is there an issue with using these fields on mobile, and if so is there anything we can do to mitigate this issue and make things work?
We are using version 2015.2.818.35 of the Telerik controls, on a SharePoint 2010 platform.
Testing is happening in Chrome and Safari for iOS, although the solution needs to work on Android as well.
Thanks for any help in advance.
Ben
Hi,
I am using RadTabstrip and Raddropdownlist.
Whenever the RadTabstrip is selected, the values selected in dropdownlist should be cleared, but i notice whenever i use the categoryList.get_selectedItem().unselect(); it causes to postback. How to cancel the post back ?
I am using this code below
<script type="text/javascript">
function OnClientTabSelected(sender, eventArgs)
{
var tab = eventArgs.get_tab();
var categoryList = $find("<%=rdddlCategory.ClientID %>");
if (categoryList.get_selectedItem()) {
//categoryList.get_selectedItem().set_selected(false);
categoryList.get_selectedItem().unselect();
}
}
function OnClientCategorySelected(sender, eventArgs) {
alert();
var tabstrip = $find('<%= rdTpEvents.ClientID %>');
if (tabstrip.get_selectedTab().get_text() != "Latest" && tabstrip.get_selectedTab().get_text() != "Working") {
eventArgs.set_cancel(true);
}
}
</script>

Hello,
I'm looking for a functionality through which i can do virus scan during upload file
I want to do virus scan of uploadable file during upload on disk using RadAsyncUpload functionality.
how can i add virus scan on telerik async file upload.
Please suggest some code I'm using RadAsyncUpload.
Thanks & regards,
Ram

I have a RadToolBar in the CommandItemTemplate of a RadGrid. I would like to (client-side) disable a button upon row click. On row click I loop through the tool bar's items and disable the button I want. This works but only disables the button on the top of the grid. The command items at the bottom of the grid are left alone. How can I disable both the top and bottom button?
function grdViewToolRecords_RowClicked(sender, args) { var toolBar = $telerik.findControl(sender.get_element(), "rtbViewToolRecords"); var toolBarItems = toolBar.get_allItems(); var i = 0; while (i < toolBarItems.length) { if (toolBarItems[i].get_text() == "Check Out") { toolBarItems[i].disable(); } i++; } toolBar.commitChanges();}
How can I hide the title bar of a radnotification window?
I've tried this way:
<telerik:RadNotification RenderMode="Lightweight" ID="RadNotification1" runat="server" EnableRoundedCorners="true" AutoCloseDelay="3500" Position="TopRight" OffsetX="-20" OffsetY="20" Opacity="95" ShowTitleMenu="false" EnableShadow="true" Width="300" Height="100" VisibleTitlebar="false" ShowCloseButton="false"></telerik:RadNotification>
But all my settings are ignored. Title is still visible. Close button either.
I show it on postback:
RadNotification1.Text = "Il nuovo cliente è stato inserito.";RadNotification1.ContentIcon = "info";RadNotification1.Show();

Good day,
lately i have been battling with adding a label control inside a child tab so that i could display the challengers on after clicking on that tab
here is my code below...
private void LoadTournament(EventCollection eventCollection, RadTabStrip radTabStrip) { RadMultiPage Multiview = new RadMultiPage(); Multiview.ID = "Multiview1"; RadPageView PageView = new RadPageView(); //Pageview.ID = ""; //Pageview.ID =""; foreach (RadTab tb in radTabStrip.Tabs) { int iSportId = int.Parse(tb.Value); tb.ScrollChildren = true; foreach (var ev in eventCollection.Events) { if (ev.SportID == iSportId) { // Create new to a RadTab. RadTab tab = new RadTab(); tab.Value = ev.TournamentID.ToString(); tab.Text = ev.Tournament; tb.Tabs.Add(tab); foreach (var item in ev.Challengers) { Label label = new Label(); label.Text = item.Name; tb.PageViewID = "Page1"; tb.SelectedIndex = tab.Index; radTabStrip.MultiPageID = "Multiview1"; // RadPageView PageView = loadchallenger(eventCollection); PageView.ID = "Page1"; PageView.Height = 500; Multiview.PageViews.Add(PageView); } //foreach (var item in ev.Challengers ) //{ // TextBoxTemplate template = new TextBoxTemplate(); // Label label = new Label(); // label.Text = item.Name; // Pageview.Controls.Add(label); //} } } } }
I would like to add labels inside a child tab please help anyone,
please below capture

Table_EC: Table_P:+------+---------+------------------+ +---------+--------+--------+| Name | IdValue | ManyOtherInfo... | | IdValue | Value1 | Value4 |+-----------------------------------+ +---------------------------+| STR | INT | ManyTYPE | | Int | Label | OrderBy|+------+---------+------------------+ +---------+--------+--------+SELECT NAME , VALUE1FROM Table_EC RIGHT JOIN Table_P ON Table_EC.VALUE1= Table_P.VALUE1 ORDER BY PAR_VALEUR42/. Telerik MarkUp
My `RadPivotGrid` declaration:
<telerik:RadPivotGrid ID="RadPivotGrid1" runat="server" OnNeedDataSource="RPG_RECAP_NeedDataSource" ><TotalsSettings RowGrandTotalsPosition="None" RowsSubTotalsPosition="None" /><Fields> <telerik:PivotGridAggregateField GrandTotalAggregateFormatString="" CalculationExpression="" UniqueName="Statut" DataField="Value1" Aggregate="Count" > <TotalFormat Level="0" Axis="Columns" TotalFunction="NoCalculation" SortOrder="Ascending" /> </telerik:PivotGridAggregateField> <telerik:PivotGridRowField UniqueName="RowCLI" DataField="Name" /> <telerik:PivotGridColumnField UniqueName="ColumnStatut" DataField="Value1" /> </Fields></telerik:RadPivotGrid>
3/. Current Result:
Current Result.
The expected result are the same but with out the (Blank) Row
**How do i achieve this ?**
