Hallo Telerik Team,
i like to implement only few controls like the grid. I don't like to reference all controls, because i like it compact as possible. Do not want to reference 20 .js files.
What are the necessary dependencies for the Grid?
I used the following code to display data in a radwindow, which contains a repeater control. But the columns on one row shifted, as can be seen from the attachment. The same works fine on IE8. Does anybody know how to fix this issue? I am using Telerik for asp.net ajax version 2012.3.1308.35
<telerik:RadWindow ID="rwinDetail" runat="server" RestrictionZoneID="ContentTemplateZone" Modal="false" Width="450" Height="300" Behaviors="Close,Move,Resize,Minimize" Visible="True"> <ContentTemplate> <div style="font-size:small;" id="rwinDetail"> <asp:Repeater ID="repDetail" runat="server">
<HeaderTemplate> <table id="tableDetail" cellspacing="0" cellpadding="0">
<tr>
<td colspan="2">
<asp:Button
ID="btnDetail"
runat="server"
CommandArgument='<%#Eval("Code") %>'
CommandName="DisplayAll"
Text="Display All"
Font-Size="Small"
Font-Bold="True" />
</td>
<td style="visibility:hidden"></td>
<td style="text-align:left; font-weight:bold;"><asp:Button ID="btnPrintQuality" runat="server" Text="" CssClass="ButtonsLink" /></td> </tr>
<tr>
<th style="border:solid 1px;">JID</th>
<th style="border:solid 1px; border-left:none;"> CODE</th>
<th style="border:solid 1px; border-left:none;"> ACTIVE</th>
<th style="border:solid 1px; border-left:none;"> STATUS</th>
</tr> </HeaderTemplate> <ItemTemplate> <tr id="trDetail">
<td style="border:solid 1px; border-top:none;">
<asp:Button ID="btnDettt" runat="server"
CommandArgument='<%#Eval("Code")%>
CssClass="ButtonsLink"
Text='<%#DataBinder.Eval(Container.DataItem, "JID") %>' Font-Size="Small" />
</td>
<td style="border-bottom:solid 1px; border-right:solid 1px;">
<asp:Label ID="lbCode" runat="server" Text='<%#DataBinder.Eval(Container.DataItem, "Code") %>' Font-Size="Small" />
</td>
<td style="border-bottom:solid 1px; border-right:solid 1px;">
<asp:Label ID="lbActive" runat="server" Text='<%#DataBinder.Eval(Container.DataItem, "Active") %>' Font-Size="Small" />
</td>
<td style="border-bottom:solid 1px; border-right:solid 1px;">
<asp:Label ID="lbStatus" runat="server" Text='<%#DataBinder.Eval(Container.DataItem, "Status") %>' Font-Size="Small" />
</td>
</tr> </ItemTemplate> <FooterTemplate></table></FooterTemplate>
</asp:Repeater>
</div>
</ContentTemplate>
</telerik:RadWindow>
I am using this example below to browse folders from a UNC path.
http://www.telerik.com/support/kb/aspnet-ajax/fileexplorer/details/use-radfileexplorer-with-physical-and-shared-folder-s-paths
I can browse the folders and it displays the files just fine. But when I try to Preview the a pdf if the this error.
Access to the path '\\server\\MyPath\MyPDF.pdf' is denied.
In the Web.conifg I have
<identity impersonate="true" userName="domain\user" password="MyPassword"/>
<location
path="FileSystemHandler.ashx" allowOverride="true">
<system.web>
<identity impersonate="true" userName="domain\user" password="MyPassword"/>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
<location path="Telerik.Web.UI.WebResource.axd" allowOverride="true">
<system.web>
<identity impersonate="true" userName="domain\user" password="MyPassword"/>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
Hello,
I'm using Telerik Rad Tag Cloud control with ajax and i want to add a different style to the item that was clicked.
I tried with OnClientItemClicked and while the loading panel is active on my tag cloud control, it displays the correct style of the clicked item, but when it finish the ajax request, it loses the style and gets to its default.
When i click one item, its behavior is send a request to server side so i can refresh other controls on my page, which are properly refreshed.
How can i fix this? Can someone help me?
Thank you.
Hi Dear
I test radgrid shortcut (keyboard navigation) but InitInsertKey not work.Also i test your online demo but it is bot work:
<ClientSettings EnableRowHoverStyle="true" AllowKeyboardNavigation="true">
<KeyboardNavigationSettings EnableKeyboardShortcuts="true" InitInsertKey="Z" />
Of course my grid is in batch edit mode.Meanwhile i need a row number in batch edit grid but i dont know to add.for a normal rid i use this :
<telerik:GridTemplateColumn UniqueName="RowNo" HeaderText="<%$ Resources:Resource, row %>"
AllowFiltering="false" HeaderStyle-Width="40px" DataField="IDAnbarsanad" Aggregate="Count" FooterAggregateFormatString="{0:N0}" >
<ItemTemplate>
<%# (Container.ItemIndex+1).ToString() %>
</ItemTemplate>
<EditItemTemplate>
</EditItemTemplate>
</telerik:GridTemplateColumn>
Please help me.
Hello
I made one booking from 29 to 10.
I can see it is rendering good in Day and Week View of RadScheduler but in Month View it is only showing Appointments on StartDay, Week's FirstDay and EndDay as shown in attached screen.
I want to display this Appointment in all day from 29 to 10.
I use telerik's 2013, 3, 1217, 35 version.
Please reply fast.
I get following error :
Specified argument was out of the range of valid values.
When I read RadNumericTextBox like this
RadNumericTextBox numTextBox = (RadNumericTextBox)editItem["TextCol1"].Controls[0];
Issue is not occuring When I use old Telrik UI Dll. (2010)
It occurs only with latest dll (2014)
Please let us know How to read with the latest dll?
Hi
I am struggling to filter data in Scheduler. Currently i am populating appointment data with station name. I am using two dataSource ID. One is use to bind appointment data . Another datasource ID is use to populate Station Name(<telerik:ResourceType>). Things are working fine. Now i would like to apply a filter. My requirement is by default i need to populate all stations with appointments. In my page, i am having text box. When user enters any station name in the textbox, i should filter data accordingly. (All my code is in client side now). Can you please help me.
Regards
Arima
Hi Team,
I'm using Telerik.Web.UI 2010.3.1317.20 on my web page. I would like to add two date picker on grid filter. I can add with below code. I don't see filter menu beside the date picker after i added. I saw Filter Menu if i does not use "Filter Template". How may i archive get my gold.
Best Regards,
Here is my code snap.
<
telerik:GridBoundColumn
DataField
=
"Order_Date"
DataType
=
"System.DateTime"
FilterControlAltText
=
"Filter Order_Date column"
HeaderText
=
"Order Date"
SortExpression
=
"Order_Date"
UniqueName
=
"Order_Date"
DataFormatString
=
"{0:dd-MMM-yyyy}"
HeaderStyle-HorizontalAlign
=
"center"
ItemStyle-HorizontalAlign
=
"center"
AllowFiltering
=
"true"
>
<
HeaderStyle
HorizontalAlign
=
"Center"
/>
<
ItemStyle
HorizontalAlign
=
"Center"
/>
<
FilterTemplate
>
From:
<
telerik:RadDatePicker
ID
=
"dtpOrdDateFrom"
runat
=
"server"
Width
=
"140px"
MinDate
=
"01-01-1753"
/>
To:
<
telerik:RadDatePicker
ID
=
"dtpOrdDateTo"
runat
=
"server"
Width
=
"140px"
MinDate
=
"01-01-1753"
/>
</
FilterTemplate
>
</
telerik:GridBoundColumn
>