Telerik Forums
UI for ASP.NET AJAX Forum
0 answers
133 views
Hello all,

I have developed a publishing portal in sharepoint.I have a requirement wherein I need to create sitemap for the entire web application.

This should be dynamic, in the sense, whenever we update the contents of any given page in our web application, it should be reflected immediately in the sitemap page. What are the possible ways to achieve this and which is the best possible solution considering the scalability and easy configuration?

Thank you.
ramalingam
Top achievements
Rank 1
 asked on 09 Oct 2010
1 answer
65 views
Hello to all, can you help me please?
I want to show Panel after ComboBox is selected. I can't set AutoPostBack on Combo as True, so I always have -1 combo's SelectedIndex
How to check in PageLoad whether Combo is selected and then unhide Panel?
I found some example (http://www.telerik.com/community/forums/aspnet-ajax/combobox/combobox-not-firing-show-hide-panel.aspx) but can't adapt it (get some JavaScript code)
ToMa
Top achievements
Rank 1
 answered on 08 Oct 2010
5 answers
134 views
Hi,

I have problem for the decimal digits I have set.
Currently I have few setting for numerictextbox:
<telerik:radnumerictextbox skinid="Percentage" enableenbeddedskins="false" maxvalue="100" minvalue="0" numericformat-allowrounding="false" numericformat-decimaldigits="2"/>
<telerik:radnumerictextbox skinid="Decimal2Digits" enableenbeddedskins="false" maxvalue="100" minvalue="0" numericformat-allowrounding="false" numericformat-decimaldigits="2"/>
<telerik:radnumerictextbox skinid="Decimal4Digits" enableenbeddedskins="false" maxvalue="100" minvalue="0" numericformat-allowrounding="false" numericformat-decimaldigits="4"/>

The problem I face is that, even I have set numericformat-decimaldigits="2" or numericformat-decimaldigits="4", if I type 12.30, it will show me 12.3.

Is there a solution that it will show me exactly 2 decimaldigits (12.30) if I type, 12.3 or 12.30?
Or exactly 4 decimal digits (12.3330) if I type, 12.333 or 12.3330?

Carlos Contreras
Top achievements
Rank 1
 answered on 08 Oct 2010
0 answers
72 views
Can anybody tell me if there is a way to position the edit-form Popup for mvc grid to align to the center of the screen. Any help or suggestion is higly appreciated.

Thanks,
shabeer
Top achievements
Rank 1
 asked on 08 Oct 2010
1 answer
115 views

hi,

how to increase the radupload file size.
i am uploading file of 5 mb and it gives error.

please help.

please let me know how to increase file size so that it accept upto 25 mb file to attach.

waiting for your reply.

thanks in advance.
Cori
Top achievements
Rank 2
 answered on 08 Oct 2010
2 answers
77 views
Hi,

For a client I need to build an overlapped Gantt Chart, looking like this one at DevExpress. Would that be possible with Telerik RadChart too? Since the client is already using Telerik RadControls in their (ASP.NET) application, that would be preferable...

Thanks!
Greetz,
Stefan Kamphuis
Stefan Kamphuis
Top achievements
Rank 2
 answered on 08 Oct 2010
7 answers
333 views
I am presently working on a project of migrating from telerik controls for asp.net to asp.net ajax. I am facing a lot of issues, on how to access the radcontrols specially radwindow and radgrid using javascript. One of the main ones is,

window.RadOpen(url, radwindowID);

It always throws an error here saying it is 'undefined'..never saw any threads on this issue, so posting it on the forum.
Please let me know what has to be done.

Thank you in advance

Regards
Yash
Cori
Top achievements
Rank 2
 answered on 08 Oct 2010
1 answer
62 views
I am attempting to implement the Grid / Google-like filtering example described here. However in my approach instead of clearing the MasterTableView columns in Page_Load and replacing them with the inherited GridBoundColumns I'm attempting to declare them in the designer source as follows:

<%@ Register TagPrefix="telerikCustom" Namespace="Project.Views.UserControl.CustomFilter" %>
<telerik:RadGrid ID="RADFilterContractList" runat="server"
        AutoGenerateColumns="False"
        AllowFilteringByColumn="True"       
        AllowPaging="True"
        AllowSorting="True"
        Skin="Hay"
        OnColumnCreating="RADFilterContractList_ColumnCreating"
        OnItemCommand="RADFilterContractList_ItemCommand"
        OnNeedDataSource="RADFilterContractList_NeedDataSource" GridLines="None">
    <PagerStyle Mode="NumericPages" />
    <MasterTableView Width="100%" GroupLoadMode="Client">
    <GroupByExpressions>
        <telerik:GridGroupByExpression>
            <SelectFields>
                <telerik:GridGroupByField
                FieldName="Priority"
                HeaderText="Priority"/>
            </SelectFields>
            <GroupByFields>
                <telerik:GridGroupByField
                FieldName="Priority"
                SortOrder="Descending" />
            </GroupByFields>
        </telerik:GridGroupByExpression>
    </GroupByExpressions>
        <Columns>
            <telerik:GridTemplateColumn UniqueName="ActionHeaderColumn" SortExpression="Action">
                <ItemTemplate>
                    <asp:LinkButton runat="server" ID="lnkContractAction" Text='<%# Eval("ContractId") %>' OnClick="OnContractSelected"
                    OnClientClick='<%# "return onContractSelected(" + Eval("ContractId") + ");" %>' />
                </ItemTemplate>
            </telerik:GridTemplateColumn>
            <telerik:GridTemplateColumn HeaderText="Assigned To" >
                <ItemTemplate>caadmin</ItemTemplate>
            </telerik:GridTemplateColumn>
            <telerikCustom:ContractListCustomFilter DataField="ContractId" HeaderText="Contract Id (Dev use)" />
            <telerikCustom:ContractListCustomFilter DataField="ContractOrderNumber" HeaderText="Contract Order Number" />
            <telerikCustom:ContractListCustomFilter DataField="Customer" HeaderText="Customer" ReadOnly="true" />                           
            <telerikCustom:ContractListCustomFilter DataField="MarketState" HeaderText="State" />
            <telerikCustom:ContractListCustomFilter DataField="ContractStatus" HeaderText="Contract Status" />
            <telerikCustom:ContractListCustomFilter DataField="Price" HeaderText="Price" />
            <telerikCustom:ContractListCustomFilter DataField="MarginPerKwh" HeaderText="Margin Per Kwh" ReadOnly="true" />                   
            <telerikCustom:ContractListCustomFilter DataField="TermInMonths" HeaderText="Term (in Months)" />
            <telerikCustom:ContractListCustomFilter DataField="StartDate" HeaderText="Start Date" />
            <telerikCustom:ContractListCustomFilter DataField="TermUsageInMWh" HeaderText="Term Usage (in MWhs)" />
            <telerikCustom:ContractListCustomFilter DataField="SalesRep" HeaderText="Sales Rep" />
            <telerikCustom:ContractListCustomFilter DataField="LastNote" HeaderText="Notes" />
            <telerikCustom:ContractListCustomFilter DataField="Priority" HeaderText="Priority" />
        </Columns>
    </MasterTableView>
    </telerik:RadGrid>
It works great when I do it in the code-behind of the custom control however I feel declaring it in the .ascx page is much cleaner.
EDevLuna
Top achievements
Rank 1
 answered on 08 Oct 2010
1 answer
76 views
i would the user to upload a file using the uploader.... assuming my current server that runs the application is 23.45.8.79
i would like the uploaded file to be transferred to 23.45.8.73...is this possible.

uploading and saving the file to 8.79 is easy, how about uploading to 8.73 with the application uploader located in 8.79

thank you
Genady Sergeev
Telerik team
 answered on 08 Oct 2010
1 answer
82 views
We are getting following serialization errors after changing SessionState mode as "SQLServer" .

"cannot serialize dialog parameters.Please refresh the editor page"
"Error Message - Invalid character in a Base 64 string".

Does Rad Spell provide any method or setting to support same.Kindly let me know as soon as possible.

Thanks
Sonia Dhamija



Rumen
Telerik team
 answered on 08 Oct 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Andrey
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Andrey
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?