Telerik Forums
UI for ASP.NET AJAX Forum
0 answers
51 views
Hi,

I need to Show the Weekends as Group using the RadScheduler.


Regards,
Pavan



Pavan
Top achievements
Rank 1
 asked on 16 Mar 2011
3 answers
172 views

i am using Hierarchial Grid(3 levels).
in the first level i am using session parameter to fetch the records .
for the second level i am passing the first level DataKeyName as selectparameter  to fetch records. i have attached the screenshot of the Grid.

i have written insertcommand for the second level where i need MetricMeasureNumber to add new record .
in insertcommand i have used

 

 

GridEditFormInsertItem item = (GridEditFormInsertItem)e.Item;

MetricMeasureNumber =

 

Convert.ToInt32((item["MetricMeasureNumber"].Controls[0] as TextBox).Text);

to get the MetricMeasureNumber,but it is giving null,

please share your experiences,
thanks in advance.

 

Princy
Top achievements
Rank 2
 answered on 16 Mar 2011
3 answers
99 views
When I upload a new version of my code to my site, browser which are opened on the web page emit the following error as in the screenshot.
Is there a way to avoid this?

Thanks
Genady Sergeev
Telerik team
 answered on 16 Mar 2011
5 answers
146 views
I have a user control that consists of a RadUpload, RadProgressManager, RadProgressArea, and a button.  This user control is nested in another user control which is ajaxified by a RadAjaxManager.  I've scoured the forums and tried everything I came across, including adding a call to __doPostBack() and adding a handler to the RadAjaxManager to disable AJAX when my button raises the event.  My click event doesn't roll up to the outer user control or the page its on.  Any suggestions??? I can provide code if necessary, but I think my description makes the scenario clear.  Thanks!!
Kate
Telerik team
 answered on 16 Mar 2011
3 answers
89 views
Hi 

I'm using the formdecorator to style forms! i have a numeric textbox which in ie6 still pulls in an embedded default style or if i set it to not use embedded styles it still doesnt apply the formdecorator skin

<telerik:RadFormDecorator DecoratedControls="Textbox,Textarea,Select,CheckBoxes,RadioButtons,Buttons" DecorationZoneID="FormDecorator" runat="server" />
 <fieldset id="FormDecorator">
            <legend>Company Details</legend>
            <ul>
                <li>
                    <asp:Label AssociatedControlID="TextBox" runat="server">TextBox Label</asp:Label>
                    <asp:TextBox ID="TextBox" runat="server" Width="200"></asp:TextBox>
                </li>
                <li>
                    <asp:Label AssociatedControlID="NumericTextBox" runat="server">NumericTextBox Label</asp:Label>
                    <telerik:RadNumericTextBox ID="NumericTextBox" runat="server"  Width="200"></telerik:RadNumericTextBox>
                </li>
                <li>
                    <asp:Label AssociatedControlID="TextArea" runat="server">TextArea Label</asp:Label>
                    <asp:TextBox ID="TextArea" TextMode="MultiLine" Width="200" runat="server"></asp:TextBox>
                </li>
                <li>
                    <asp:Label AssociatedControlID="RadComboBox1" runat="server">ComboBox Label</asp:Label>                       
                    <telerik:RadComboBox ID="RadComboBox1" Skin="Default" Width="208" runat="server">
                    <Items>
                        <telerik:RadComboBoxItem Text="ComboBox Item" />
                        <telerik:RadComboBoxItem Text="ComboBox Item" />
                        <telerik:RadComboBoxItem Text="ComboBox Item" />
                        <telerik:RadComboBoxItem Text="ComboBox Item" />
                    </Items>
                    </telerik:RadComboBox>
                </li>
                <li>
                    <asp:Label AssociatedControlID="CheckBox" runat="server">CheckBox Label</asp:Label>
                    <asp:CheckBox ID="CheckBox" runat="server" />
                </li>
                <li>
                    <asp:Label AssociatedControlID="RadioButton" runat="server">RadioButton Label</asp:Label>
                    <asp:RadioButton ID="RadioButton" runat="server" />
                </li>
                <li>
                    <asp:Button Text="Submit" runat="server" Width="50" />
                </li>
            </ul>
        </fieldset>


skin file the <telerik:RadNumericTextBox line stops the default skin being set. in my appthemes i have custom skins for combobox, formdecorator. 

<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
 
<telerik:RadTabStrip Skin="esPay" EnableEmbeddedSkins="false" runat="server" />
 
<telerik:RadFormDecorator EnableRoundedCorners="false" EnableEmbeddedSkins="false" Skin="esPay" runat="server" />
 
<telerik:RadNumericTextBox EnableEmbeddedSkins="false" Skin="esPay" runat="server"  />                    
 
<telerik:RadComboBox Skin="esPay" EnableEmbeddedSkins="false" runat="server" />

if i firebug the page i can see it adding the wrapper class for the custom skin round the numeric textbox, this works in all but ie6!

any ideas guys?
Bozhidar
Telerik team
 answered on 16 Mar 2011
3 answers
100 views
Hi,
     Currently i am using RadControls for ASP.NET AJAX Q3 2010, where Client-side Script i have used to load editor.
Now my problem, dialogs loading is taking long time even though they is no uploaded files. How can i optimize this dialog loading.
Rumen
Telerik team
 answered on 16 Mar 2011
0 answers
83 views
Hello,.

    In my rad scheduler application , when i schedule the appointment it's looks fine on navigation, and all but problem occurred when i was tried to drag and drop, that time give problem.

          The start time and end time is updated proper but the recurrence rule is not update and the appointment is deleted on that day we was drag and drop. But next day is looks well with old schedule time..

 How to update recurrence rule and save into db ?

The recurrence rule is create when i drag drop... the EXDATE is automatically added and the appointment is not display on that days.. except that days appointment is display on screen... How to remove this. ?

DTSTART:20110313T080000Z  DTEND:20110313T090000Z  
 RRULE:FREQ=DAILY;INTERVAL=1;BYDAY=MO,TU,WE,TH,FR,SA,SU  EXDATE:20110315T080000Z,20110317T080000Z,20110318T080000Z  
 
  Why recurrence rule is not update properly....

 URGENT  !..................

Thanks
Regards
Rahul
Rahul
Top achievements
Rank 1
 asked on 16 Mar 2011
1 answer
48 views
I have a web user control with a RadSlider control in it.  I have created custom styles for the horizontal slider and it works perfectly fine when the user control is placed in a panel on our applicaton page.
I have created another web user control with the RadPanelBar control.  The items of the panelbar are web user controls that have the RadSlider.  If I leave the embedded base styles enabled on the panelbar, the slider styling breaks on the horizontal view.  The items still display my styles, but the slider becomes vertical.  This behavior is only reproduceable on IE, everything works perfectly fine in FireFox.  It appears that there are some style classes applied internally to the RadPanelBar that are overriding the styles of the RadSlider.

Please let me know what I can do to correct this problem.

Thank you,
Ed Sudit
Niko
Telerik team
 answered on 16 Mar 2011
1 answer
67 views
Hi Friends,

i have a problem with radgrid slider.
actually i am generating grid dynamically with the EnableEmbeddedSkins=False and  importing the related css to the page.

this works fine if i view the page in new window.

since where are loading external stage url in the telerik:RadPane.
the external page with radgrid slider skin fails here.

i have attached sample images below the first image show the page that is directly view in browser.
second images shows that the same page view from radpane.

Thanks
K²

Galin
Telerik team
 answered on 16 Mar 2011
1 answer
96 views
Hi,

I am using an example of filtering between two dates in a radgrid. My issue is that when I enter the dates and click enter I get a postback and end up at my default.aspx. If I tab off I do get the desired effect of filtering of the grid and would like the same on clicking enter also. Im pretty new and could use any suggestions. 

Thanks
Maria Ilieva
Telerik team
 answered on 16 Mar 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Top achievements
Rank 1
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ivory
Top achievements
Rank 1
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
YF
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Top achievements
Rank 1
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ivory
Top achievements
Rank 1
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
YF
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?