I tired most of the examples on disabling dates on the raddatepicker control but most are out of date to the methods and properties of the latest control set. I looking for an example of how to only let SUNDAY be selected.
Thanks
<%
@ Register assembly="Telerik.Web.UI" namespace="Telerik.Web.UI" tagprefix="telerik" %>
<
assemblies>
<
add assembly="Infragistics2.WebUI.Shared.v10.3, Version=10.3.20103.2217, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"/>
</
assemblies>
<
pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID">
<
controls>
<
add tagPrefix="igtbl" namespace="Infragistics.WebUI.UltraWebGrid" assembly="Infragistics2.WebUI.UltraWebGrid.v10.3"/>
<
add tagPrefix="igtblexp" namespace="Infragistics.WebUI.UltraWebGrid.ExcelExport" assembly="Infragistics2.WebUI.UltraWebGrid.ExcelExport.v10.3"/>
</
controls>
</
pages>
Dear Team,
We are using ShowSound property and it doesn't work in mobiles and tablets. However it is working fine in desktop browsers. I have already tried below code which i got from your website but still no difference.
<script type="text/javascript">function pageLoad() {//Attach to the document touchstart event and initiate the notification audio $telerik.$(document).on("touchstart", initSound);}function initSound() {var notification = $find("<%=RadNotification1.ClientID%>");//If notification audio is not available initiate itif (!notification.verifySound()) { notification.userInitSound();}//Detach the initSound event listener $telerik.$(document).off("touchstart", initSound);}</script><telerik:RadNotification RenderMode="Lightweight" ID="RadNotification1" runat="server" ShowInterval="2000" AutoCloseDelay="1000" Text="Some Notification" ShowSound="warning"></telerik:RadNotification>
I have also tried in code behind but result is same.
RadNotification1.ShowSound = ResolveUrl("~/Images/OrderReceived.wav");
Kindly let me know how we can enable sound on mobile/tablet devices.
Thanks & Regards,
Jatin Kumar Verma
Hi,
In the demo https://demos.telerik.com/aspnet-ajax/listview/examples/client/webservicedatabinding/defaultcs.aspx
It is possible to select an item without having a CommandName="Select" and the item can be click anywhere, and it selects.
In the code I am playing with, I have the data bound via code, but cannot get the item to select without a button.
You do not have a button within your demo, so how do you get it to work?
Many Thanks
Mark
Hello, I have a problem using EnableVirtualScrollPaging in asp.net RadGrid.
In the grid I have GridBoundColumn and GridTemplateColumn columns.
At server side put all rows with same height.
rdgLista.MasterTableView.ItemStyle.Height = 50;
rdgLista.MasterTableView.AlternatingItemStyle.Height = 50;
When I scroll down page 2 is load when I have not yet reached the end of page 1.
<ClientSettings>
<Resizing AllowRowResize="false" />
<Scrolling AllowScroll="true" EnableVirtualScrollPaging="True" UseStaticHeaders="true" SaveScrollPosition="true">
</Scrolling>
</ClientSettings>
Can you help?
Best Regards.
I'm using version 2010 Q1 309
I have 8 RadTabs, I want to auto adjust width when run on more screens. I tried set ScrollChildren = True, but UI broken
i have radgrid with alot of custom filters and i need to move javascript to external file
how to set static client id to put this line at external javascript file
var tableView = $find("<%# ((GridItem)Container).OwnerTableView.ClientID %>");
<
telerik:RadNotification
ID
=
"Notification"
runat
=
"server"
Position
=
"Center"
AutoCloseDelay
=
"10000"
Width
=
"350"
EnableRoundedCorners
=
"true"
ContentIcon
=
"none"
KeepOnMouseOver
=
"true"
ShowCloseButton
=
"false"
>
<
ContentTemplate
>
<
asp:Literal
ID
=
"NotificationText"
runat
=
"server"
/>
</
ContentTemplate
>
</
telerik:RadNotification
>
protected
void
SaveQuoteButton_Click(
object
sender, EventArgs e)
{
Notification.Title =
"Save Title"
;
NotificationText.Text =
"Save Text"
;
Notification.Show();
}