Telerik Forums
UI for ASP.NET AJAX Forum
4 answers
61 views
when i use the resource availability demo I get " Object doesn't support this property or method" error on slot.get_resource();. I ve seen multiple threads on this but the only answers are send in a demo in a support ticket. Is it possible to get some kind of indicators on what the results of any of those issues were? I don't really want to send a demo as this is integrated into my system and it would take quite a bit of time to break it out to send. But if those other tickets were resolved some pointers based on their findings would be great.
Veronica
Telerik team
 answered on 14 Jul 2011
1 answer
58 views
Hello,

I want to use yours mega menu in sharepoint 2010,
My problem is that i dont know how to do the connection on the sitemap object of the sharepoint 2010,
And after that how i design the items in the mega menu.

Thanks,

Yedidia.
Kalina
Telerik team
 answered on 14 Jul 2011
5 answers
156 views
Hi Telerik Team,
                           I have a requirement of dragging items from grid view and drop them to a RadTreeView which are in two seperate
user controls. 
Further:
1. aspx page  - A
2. user conrol1 (Grid Here) - B
3. user conrol2 (RadTreeView Here)  - C
                            B and C are in A. Is there any way of dragging row items from grid and get the required values from it when it is droped on to the TreeView 
and
Get to know what the TreeView node, to which the item will be dropped at the time of dropping the item to it?

I'm going through your http://demos.telerik.com/aspnet-ajax/grid/examples/programming/draganddrop/defaultcs.aspx example.

Thanks,
Dilip
Iana Tsolova
Telerik team
 answered on 14 Jul 2011
1 answer
73 views
Does AsyncUpload support multiple file selection on macs?  I tried the demo on safari on my new imac and i could only select one file at a time in the file dialog box where as i can select multiple files on a windows machine.  If this is not supported for macs is it in the queue of features to be added in the future?

-Chris
Genady Sergeev
Telerik team
 answered on 14 Jul 2011
5 answers
256 views
I would like to know at what stage in the ListView lifecycle to set the Selected item so that it takes on the <SelectedItemTemplate> styling.

I tried doing it at the Prerender and I tried at ItemDataBound, but neither changed the itemstyle properly.

Thank you.


This is what I had in the ItemDataBound:

 

if (lvGalleries.SelectedValue == null && item.DisplayIndex==0)  
 
item.Selected = true;  
 

 

 

Veli
Telerik team
 answered on 14 Jul 2011
3 answers
66 views
Hello ,
i have this GridTemplateColumn
<telerik:GridTemplateColumn DataField="TotalToSell" UniqueName="colAmountToSell"
                            SortExpression="TotalToSell" >



and i set it's header template to :
<asp:LinkButton ID="SortMe" CommandName="Sort" CommandArgument="TotalToSell" runat="server"
                                    Text='Amount To Sell'></asp:LinkButton>

and im using RadAjaxManager
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
        <AjaxSettings>
            <telerik:AjaxSetting AjaxControlID="grdPlanCrops">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="grdPlanCrops" LoadingPanelID="RadAjaxLoadingPanel1" />
                </UpdatedControls>
            </telerik:AjaxSetting>
        </AjaxSettings>
    </telerik:RadAjaxManager>



it sorts well but when pressed it shows two loading panels one for grid and other for column !
is there any way to make only 1 loading panel appears ?
Iana Tsolova
Telerik team
 answered on 14 Jul 2011
1 answer
158 views
I tried the async file upload example from the demos, but within the wizard asp.
The code is this:

 

<asp:Wizard ID="Wizard2" runat="server" 
            ActiveStepIndex="0" BackColor="#EFF3FB" 
                                    BorderColor="#B5C7DE" BorderWidth="1px" 
            Font-Names="Verdana" Font-Size="0.9em" 
                                    Height="180px" Width="640px" 
                                    onnextbuttonclick="Wizard1_NextButtonClick" 
                                    onsidebarbuttonclick="Wizard1_SideBarButtonClick" 
                                    onfinishbuttonclick="Wizard1_FinishButtonClick">
                                    <HeaderStyle BackColor="#284E98" BorderColor="#EFF3FB" BorderStyle="Solid" 
                                        BorderWidth="2px" Font-Bold="True" Font-Size="0.9em" ForeColor="White" 
                                        HorizontalAlign="Center" />
                                    <NavigationButtonStyle BackColor="White" BorderColor="#507CD1" 
                                        BorderStyle="Solid" BorderWidth="1px" Font-Names="Verdana" Font-Size="0.8em" 
                                        ForeColor="#284E98" />
                                    <SideBarButtonStyle BackColor="#00AEEF" Font-Names="Verdana" 
                                        ForeColor="White" />
                                    <SideBarStyle BackColor="#00AEEF" Font-Size="0.9em" VerticalAlign="Top" 
                                        Width="200px" />
                                    <StepStyle Font-Size="0.8em" ForeColor="#333333" />
                                    <WizardSteps>
                                        <asp:WizardStep runat="server" title="Selección Fecha">
                                            <table align="center" class="style1">
                                                <tr>
                                                    <td class="style3">
                                                        Mes</td>
                                                    <td style="text-align: center">
                                                        <telerik:RadComboBox ID="RadComboBox3" runat="server" Skin="Windows7">
                                                            <Items>
                                                                <telerik:RadComboBoxItem runat="server" Owner="" Text="Enero" Value="01" />
                                                                <telerik:RadComboBoxItem runat="server" Owner="" Text="Febreo" Value="02" />
                                                                <telerik:RadComboBoxItem runat="server" Owner="" Text="Marzo" Value="03" />
                                                                <telerik:RadComboBoxItem runat="server" Owner="" Text="Abril" Value="04" />
                                                                <telerik:RadComboBoxItem runat="server" Owner="" Text="Mayo" Value="05" />
                                                                <telerik:RadComboBoxItem runat="server" Owner="" Text="Junio" Value="06" />
                                                                <telerik:RadComboBoxItem runat="server" Owner="" Text="Julio" Value="07" />
                                                                <telerik:RadComboBoxItem runat="server" Owner="" Text="Agosto" Value="08" />
                                                                <telerik:RadComboBoxItem runat="server" Owner="" Text="Septiembre" Value="09" />
                                                                <telerik:RadComboBoxItem runat="server" Owner="" Text="Octubre" Value="10" />
                                                                <telerik:RadComboBoxItem runat="server" Owner="" Text="Noviembre" Value="11" />
                                                                <telerik:RadComboBoxItem runat="server" Owner="" Text="Diciembre" Value="12" />
                                                            </Items>
                                                        </telerik:RadComboBox>
                                                    </td>
                                                </tr>
                                                <tr>
                                                    <td class="style3">
                                                        Año</td>
                                                    <td style="text-align: center">
                                                        <telerik:RadComboBox ID="RadComboBox4" runat="server" Skin="Windows7">
                                                        </telerik:RadComboBox>
                                                    </td>
                                                </tr>
                                                <tr>
                                                    <td class="style3">
                                                         </td>
                                                    <td>
                                                         </td>
                                                </tr>
                                            </table>
                                        </asp:WizardStep>
                                        <asp:WizardStep runat="server" title="Cargar Datos">
                                            <div style="height: 32px">
                                                <br />
                                                  
                                                <telerik:RadAsyncUpload ID="RadAsyncUploadPrueba0" runat="server" 
                                                    AllowedFileExtensions="xls,xlsx" MaxFileInputsCount="1" MaxFileSize="524288" 
                                                    OnClientFileSelected="" OnClientFilesSelected="" 
                                                    OnClientValidationFailed="validationFailed" 
                                                    OnFileUploaded="RadAsyncUpload1_FileUploaded">
                                                    <filefilters>
                                                        <telerik:FileFilter Description="*.xls; *.xlsx" Extensions="xls,xlsx" />
                                                    </filefilters>
                                                </telerik:RadAsyncUpload>
                                                  
                                                <br />
                                            </div>
                                                      
                                        </asp:WizardStep>
                                    </WizardSteps>
                                </asp:Wizard>

the error is in the filter property RadAsyncUpload, can not be established.
Thx a lot.

Genady Sergeev
Telerik team
 answered on 14 Jul 2011
1 answer
39 views
Hi!

I've just setup a RadGrid which formats a couple of date columns using a custom format which is retrieved from App.config, just like this in Page_Load ():

if (!IsPostBack)
{
    (RadGridConsulta.Columns.FindByUniqueName ("Creacion") as GridDateTimeColumn).DataFormatString = Audinet.Framework.Aplicacion.Configuracion["format.datetime.short"];
    (RadGridConsulta.Columns.FindByUniqueName ("Modificacion") as GridDateTimeColumn).DataFormatString = Audinet.Framework.Aplicacion.Configuracion["format.datetime.short"];
}


It just works when the list is generated, but when I click the Edit button, the Ajax is triggered but it finally does not render the edit form, returning  again to the general listing.

If I do remove that code, the Edit Form for a record is rendered. I am also setting ReadOnly="true" with no ColumnEditor property set, declaratively, for those date columns since they are auto-generated and need no edition, with no luck.

So, how can I set Column's properties programatically without affecting the display of the Edit Form?

Those are my column definitions:

<%-- Columna Creacion --%>
<telerik:GridDateTimeColumn DataField="Creacion" HeaderText="Creacion"
    UniqueName="Creacion" ReadOnly="true" SortExpression="Creacion" DataType="System.DateTime"
    HeaderStyle-Width="140px">
</telerik:GridDateTimeColumn>
 
<%-- Columna Modificacion --%>
<telerik:GridDateTimeColumn DataField="Modificacion" HeaderText="Modificacion"
    UniqueName="Modificacion" ReadOnly="true" SortExpression="Modificacion" DataType="System.DateTime"
    HeaderStyle-Width="140px" >
</telerik:GridDateTimeColumn>


Thanks in advance.
Tsvetina
Telerik team
 answered on 14 Jul 2011
2 answers
37 views
Apologies if this has been raised before but could a new section be added to the demo menu, What's New.  Then under that have maybe the current and 2 previous versions list of what's new.  This would allow a nice easy at a glance view of any new functionality.

BTW, new release is looking good - tons of new updates that are very relevant for me - hope others have same level of usefulness!

Regards,

Jon
Jon
Top achievements
Rank 1
 answered on 14 Jul 2011
3 answers
109 views

Dear Telerik Team,

 

we have problem by RadChart legend positioning. Here is our code:

 

            radChart.ClearSkin();

            radChart.Skin = skin;

            radChart.AutoLayout = true;

            radChart.PlotArea.Appearance.Dimensions.Width = 500;

            radChart.PlotArea.Appearance.Position.AlignedPosition = AlignedPositions.Left;

            radChart.PlotArea.XAxis.Appearance.ValueFormat = Telerik.Charting.Styles.ChartValueFormat.ShortDate;

            radChart.PlotArea.XAxis.Appearance.LabelAppearance.RotationAngle = 45;

            radChart.PlotArea.XAxis.Appearance.LabelAppearance.CompositionType = LabelItemsCompositionTypes.RowImageText;

            radChart.PlotArea.XAxis.Appearance.LabelAppearance.Position.AlignedPosition = AlignedPositions.Top;

            radChart.Appearance.TextQuality = TextQuality.ClearTypeGridFit;

            radChart.PlotArea.XAxis.AutoScale = true;

            radChart.PlotArea.XAxis.IsZeroBased = false;

            radChart.Appearance.Border.Visible = false;

            radChart.Legend.Appearance.ItemTextAppearance.MaxLength = 20;

            radChart.Legend.Appearance.Position.AlignedPosition = AlignedPositions.Right;

            radChart.SeriesOrientation = ((RadChartEntity)Session[radChart.ID]).Orientation;

 

 

and the problem occurs always by skin change, e.g. by changing “Web20” skin type to “Black” skin type (or vice-versa). Result can be seen in first two attachments. Similar situation rises when ChartSeriesType property is changed (e.g. from line to points). The result by ChartSeriesType property change can be seen at the last attachment.

 

Can you help us, please?

 

Thank you very much.

 

Kind Regards,

SCT

SCT
Top achievements
Rank 1
 answered on 14 Jul 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?