Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
51 views
Hi
  I would like to know if any one has faced issue while populating/getting huge records through WCF for Radgrid?
  and is there a way out to get huge records populated/fetched through WCF.

Regards

SANDIP KUMAR
Jayesh Goyani
Top achievements
Rank 2
 answered on 24 Nov 2011
1 answer
131 views
With the current edition of the RibbonBar control can you load a template item from XML? I did not see in the examples or documention of a way of doing this.

ie RibbonBar.LoadContentFile("xml file name")

where in this content file we have a template item that contains a dropdown control or various others.  The documention for the ribbonbar loading from an xml file is currently very sparse and limited and keeps me guessing as the xml element names are slightly different than the asp.net element names.

I see examples of how to do this in asp.net code but not from loading from xml.
Thanks
Nikolay Tsenkov
Telerik team
 answered on 24 Nov 2011
1 answer
110 views
Hi,
Tab Wizard (client-side)  Documentation - Javascript Code is missing tags.
http://www.telerik.com/help/aspnet-ajax/tabstrip-tab-wizard.html


Here is the code on the page.
<form id="form1" runat="server">
   <script type="text/javascript">
   function onNavigate(isMoveNext)
   
       var tabs = $find('<%= rtbstMain.ClientID %>');
       var totalNumOfTabs = tabs.get_tabs().get_count();
       if(totalNumOfTabs > 0) {
           var newTabIndex;
           var currentTabIndex = tabs.get_selectedIndex();
 
           if(isMoveNext){
               if(currentTabIndex + 1 == totalNumOfTabs) {
                   newTabIndex = 0;
               }
               else {
                   newTabIndex = currentTabIndex + 1;
               }
           }
           else{
               if(currentTabIndex - 1 < 0) {
                   newTabIndex=totalNumOfTabs - 1else {
                   newTabIndex=currentTabIndex - 1tabs.set_selectedIndex(newTabIndexscript>
   <asp:ScriptManager ID="smPageScriptManager" runat="server" />
   <telerik:RadTabStrip ID="rtbstMain" runat="server" MultiPageID="RadMultiPage1" SelectedIndex="0">
       <Tabs>
           <telerik:RadTab runat="server" Text="Root RadTab1" Selected="True">
           </telerik:RadTab>
           <telerik:RadTab runat="server" Text="Root RadTab2">
           </telerik:RadTab>
           <telerik:RadTab runat="server" Text="Root RadTab3">
           </telerik:RadTab>
       </Tabs>
   </telerik:RadTabStrip>
   <telerik:RadMultiPage ID="RadMultiPage1" runat="server" SelectedIndex="0">
       <telerik:RadPageView ID="RadPageView1" runat="server">
           RadPageView1</telerik:RadPageView>
       <telerik:RadPageView ID="RadPageView2" runat="server">
           RadPageView2</telerik:RadPageView>
       <telerik:RadPageView ID="RadPageView3" runat="server">
           RadPageView3</telerik:RadPageView>
   </telerik:RadMultiPage>
   <asp:Button ID="Button1" runat="server" Text="Prev" OnClientClick="onNavigate(false); return false;" />
   <asp:Button ID="Button2" runat="server" Text="Next" OnClientClick="onNavigate(true); return false;" />
</form>

I am horrible at jQuery/Javascript but need the code. I have to make a multi-form wizard. Wanted to see if I can avoid postback since I am using Async Upload on one of the tabs. 

Any suggestion welcome.

Kate
Telerik team
 answered on 24 Nov 2011
3 answers
117 views
I am trying to use the ExportToRTF() method and I get the following error:

A critical error has occurred. The type or namespace name 'SecurityRulesAttribute' does not exist in the namespace 'System.Security' (are you missing an assembly reference?)

Any suggestions?
Rumen
Telerik team
 answered on 24 Nov 2011
4 answers
273 views
Hello,

I have a radmenu with 3 main items:

1- Home
2- Manufacturing
3- Production

Each these item has sub-items except for "Home". Now I want these items to have font-size = 14 and sub-menus to have font-size= 12.

When I apply the following class, the font size of Manufacturing and Production increasing due to ExpandDown. What can I do to increase the font of Home item as well..?

DIV.RadMenu_ctSkin .rmItem .rmLink .rmExpandDown{

FONT-SIZE: 14px;

}
Effat
Top achievements
Rank 1
 answered on 24 Nov 2011
7 answers
589 views
Hi,

We have a Radgrid with 12 template columns that contain radcombboxes, checkboxes, date pickers and regular text box fields. All of those have .net validation controls on them. My developer is losing her mind over a current issue wherein the Insert command is not firing. That is to say, that when you add a new record and click insert, a postback occurs, but the RadGrid1.InsertCommand never fires. When you click Insert, the grid simply reloads and the edit screen disappears and no record is inserted. The delete command DOES fire. It is auto generated. Here is our grid definition.

       <telerik:RadGrid ID="RadGrid1" runat="server" AllowPaging="True"  AllowSorting="True" GridLines="None" Skin="Web20" AutoGenerateColumns="False" AutoGenerateDeleteColumn="True" AutoGenerateEditColumn="True" AllowFilteringByColumn="True" >

To troubleshoot and narrow the issue down, we have tried

1. Removing all the client side validation - that did not have any effect.
2. Commenting out the ItemCommand and ItemCreated commands

If anyone out there has any ideas on where to look, I would greatly appreciate it.
Sahil
Top achievements
Rank 1
 answered on 24 Nov 2011
6 answers
141 views
Ok so I got my scheduler wired up, displaying appointments etc. properly. I've set up a function which opens up a custom RadWindow to edit the appointment details. The way it works at the moment is when you double click the appointment it opens up the radwindow with appropriate details however the appointment itself opens up in the inline radscheduler editor as well which should be disabled 'cause I specified AllowEdit="false" on the scheduler control. Double clicking any empty timeline doesn't do anything. This behavior happens only when double clicking the appointment inside the scheduler.

Regards,
Sasha.
Sasha
Top achievements
Rank 1
 answered on 24 Nov 2011
1 answer
254 views
Hello, 

I'm having a small Issue with the : telerik:RadDatePicker

In fact, in my application I use this sytem of week number (French application):
var week = CultureInfo.CurrentCulture.Calendar.GetWeekOfYear(dt, CalendarWeekRule.FirstFourDayWeek, DayOfWeek.Monday);


And with the  telerik:RadDatePicker I have different number of week! Each number is +1!


Do you have any ideas to make week number similar?

Thank you
Princy
Top achievements
Rank 2
 answered on 24 Nov 2011
4 answers
125 views
I'm having an unusual problem with telerik panelbar.When ever i run my application the panelbar shrinks automatically and i'm unable to click any item on panelbar.Please check the attached image.Please help.Thanks.
Kate
Telerik team
 answered on 24 Nov 2011
3 answers
142 views
Hi,

    I'm using GridClientDeleteColumn column to delete an entry form the RadGird. User can delete multiple rows clicking (multiple times) delete icon on the RadGrid. How can I access all these deleted entry in the code behind on postback after these deletes?

 Could you please send me complete code of such implementation.

Rajesh
Rajesh
Top achievements
Rank 1
 answered on 24 Nov 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?