Hello,
This happends in IE, working ok in Chrome.
Any workarround?
Regards,
Alexis.
Dear,
I have radmediaplayer working fine in my ASP.Net application. I want to share running video URL through code behind. Please help me, i am stuck in that and its quite important.
Regards,
Nouman Rafique
I would like to do one of the following:
1) Set ShowInterval value something like 5000 on RadButton (BtnSubmit here) from Client Side?
2) Assuming I made RadNotification2 as invisible and possible to make it visible from below or other Client Side Function?
Thanks
gc_0620
______________
function CallClientShow() {
// document.getElementById("divshowprocess").style.display = 'inline';
var notification = $find("<%=RadNotification2.ClientID %>");
notification.show();
}
<
telerik:RadButton
runat
=
"server"
Skin
=
"Silk"
ID
=
"Submit"
OnClientClicked
=
"CallClientShow"
Text
=
"Submit"
OnClick
=
"Submit_Click"
>
</
telerik:RadButton
>
<
telerik:RadNotification
ID
=
"RadNotification2"
ShowCloseButton
=
"false"
ShowSound
=
"info"
runat
=
"server"
VisibleOnPageLoad
=
"false"
Position
=
"BottomCenter"
Skin
=
"MetroTouch"
Width
=
"579px"
Height
=
"100px"
Animation
=
"Slide"
EnableRoundedCorners
=
"true"
EnableShadow
=
"true"
Text
=
"Please wait while your request is being processed!!!"
KeepOnMouseOver
=
"false"
Title
=
"Processing..."
ShowTitleMenu
=
"true"
OffsetX
=
"-20"
OffsetY
=
"-20"
AutoCloseDelay
=
"0"
>
</
telerik:RadNotification
>
protected void Submit_Click(object sender, EventArgs e)
{
// RadNotification2.Visible = true;
RadNotification2.Show();
}
In my web app I have a radgrid binded to a EF dbcontext collection.
Issue is that gridboundcolumn don't check for datatype on applying filters and entity query is wrong, for example, If user enters 'some text' on a date filter query is raised as:
"AND (it.lastEditDate = DATETIME'some text')"
and web app crash with "The query syntax is not valid. Near term 'some text', line 6, column 28." The same problem with numeric fields.
What is the right solution for this issue? Thanks!
Code looks like this:
<telerik:RadGrid ID="RadGrid1"
runat="server"
CellSpacing="0"
DataSourceID="edsMainGrid"
....
<telerik:GridBoundColumn FilterControlWidth="50px" ItemStyle-Wrap="false" DataField="lastEditDate"
FilterControlAltText="Filtrar per lastEditDate" HeaderText="lastEditDate" SortExpression="lastEditDate" UniqueName="lastEditDate" ReadOnly="True" DataFormatString="{0:dd/MM/yyyy}">
<ItemStyle Width="50px" />
</telerik:GridBoundColumn>
...
<ef:EntityDataSource ID="edsMainGrid" runat="server"
OnContextCreating="edsMainGrid_ContextCreating"
EntitySetName="myCollection"
OnSelecting="edsMainGrid_Selecting" >
</ef:EntityDataSource>
Hi,
I cannot drag-n-drop any Telerik control to ​the design or source view of an aspx.
Typing the codes is OK.
I have Telerik ASP AJAX tool (Q1/2014) and VS 2013.
Please give some ideas/directions to fix this issue.
Thank you,
Ed
Hi all,
We have an application that opens a modal dialog in IE to open aspx page that uses telerik controls. When using a single session, everything works fine. But using multiple of IE causes the error as in the screen-shot attached. Seems the script resources are not found for the other window but I'm not sure about that.
Any pointers would be appreciated. ​
Hi All,
I'd like to take the totals that are aggregated in my footer, and place them in the row that's created for my filtering abilities.
Is this possible?
Screenshot shows where I'd like the totals to appear.
Thank you!