Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
220 views
HII,
  I have a RadButton which is a StandardButton. I also attached the NavigateUrl property of RadButton. But on clicking on the RadButton it is not navigating to the url specified. Why the NavigateUrl is not working?

thankss
Princy
Top achievements
Rank 2
 answered on 28 Sep 2012
1 answer
97 views
hii,
want to adda textbox to every uploaded files in a RadAsyncUpload to enter some additional info. Can anybody please help me to achieve this scenario.


thanks.....
Princy
Top achievements
Rank 2
 answered on 28 Sep 2012
1 answer
357 views
Hi all,

In my grid, I don't want the user to add records while editing. Is there a way to disable the add new record button in edit mode?
Thanks in advance.


Shinu
Top achievements
Rank 2
 answered on 28 Sep 2012
2 answers
104 views
Hi all,

In my page I have a RadGrid.In this, I need to hide the first row. How can I do that?
Please provide some solutions.

Thanks in advance.
Janaki
Top achievements
Rank 1
 answered on 28 Sep 2012
2 answers
99 views
According to the documentation here http://www.telerik.com/help/aspnet-ajax/introduction-jquery-intellisense.html I do not need to do anything special to get JQuery intellisense to work on my page.

I have the following in my form:
<telerik:RadScriptManager ID="RadScriptManager1" runat="server">
            <Scripts>
                <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.Core.js"></asp:ScriptReference>
                <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQuery.js"></asp:ScriptReference>
                <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQueryInclude.js"></asp:ScriptReference>
            </Scripts>
        </telerik:RadScriptManager>
        <script type="text/javascript">
            window.$ = $telerik.$;
             
            //$("tr.Graph").click(function () {
            //    $(this).nextAll("tr").fadeToggle(500);
            //}).eq(0).trigger('click');
        </script>


Whenever I enter $ or $., I do not get any intellisense. I am using Visual Studio 2012. Could that be an issue? 
DuelingCats
Top achievements
Rank 2
 answered on 28 Sep 2012
1 answer
58 views
Dear
i have some issue with Export data from grid to PDF file & CSV file
with PDF: when i export date it come all data not formatted and all data come above some
and it is look like that

================================================
and about CSV file
it is come with Birth date only and all another fields is empty without any data

my code look like
(ASP):
                     <telerik:RadButton ID="RadBtn_ExportPDF" runat="server" Text="ExportPDF"
                        onclick="RadBtn_ExportPDF_Click" >
                    </telerik:RadButton>
                     <telerik:RadButton ID="RadBtn_ExportExcel" runat="server" Text="ExportExcel"
                         onclick="RadBtn_ExportExcel_Click">
                    </telerik:RadButton>
                    <telerik:RadButton ID="RadBtn_ExportCSV" runat="server" Text="ExportSCV"
                        onclick="RadBtn_ExportCSV_Click">
                    </telerik:RadButton>

and in (CS):
protected void RadBtn_ExportPDF_Click(object sender, EventArgs e)
    {
        ConfigureExport();
        MainGride.MasterTableView.ExportToPdf();
    }

    protected void RadBtn_ExportExcel_Click(object sender, EventArgs e)
    {
        ConfigureExport();
        MainGride.MasterTableView.ExportToExcel();
    }

    protected void RadBtn_ExportCSV_Click(object sender, EventArgs e)
    {
        ConfigureExport();
        MainGride.MasterTableView.ExportToCSV();
    }

    public void ConfigureExport()
    {
        MainGride.ExportSettings.ExportOnlyData = true;
        MainGride.ExportSettings.IgnorePaging =true;
    }
and in item command :

if (e.CommandName == Telerik.Web.UI.RadGrid.ExportToExcelCommandName ||
            e.CommandName == Telerik.Web.UI.RadGrid.ExportToWordCommandName ||
            e.CommandName == Telerik.Web.UI.RadGrid.ExportToCsvCommandName )
        {
            ConfigureExport();
        }
i need to your help in that to make data formatted well in Export PDF and to get all data in Export CSV file

Regard
Ahmed Salem
Jayesh Goyani
Top achievements
Rank 2
 answered on 27 Sep 2012
5 answers
129 views
I am attempting to use a radgrid with  in-place editing of multiple cascading drop-downs. The user enters a term, which populates a combobox to get a list of 'preferred terms'... then, depending on the preferred term, the user can then select a classification.

Based on examples, found on the Telerik site, I crafted the below code. However, my ComboBox_SelectedIndexChanged Event handler never fires.

Any ideas why? I can step through the code and see the below code executes and attaches the event handlers to the combobox, and the drop-down does contain the correct list of values based on the user's entered term, but when the user selects a preferred term the event never fires (thus I never get to update the classification combobox based on the user's selection.)

What am I missing? Thanks!
protected void RadGrid_Terms_ItemCreated(object sender, GridItemEventArgs e)
{
    if (e.Item is GridEditableItem && e.Item.IsInEditMode)
    {
        if (e.Item.DataItem != null)
        {
            String term = ((DataRowView)e.Item.DataItem)["Term"].ToString();
 
            SqlDataSource_PTCodeEdit.SelectCommand = "SELECT * FROM dbo.udt_PreferredTerm('" + term + "')";
            SqlDataSource_PTCodeEdit.Select(DataSourceSelectArguments.Empty);
 
            RadComboBox list = (e.Item as GridEditableItem)["FK_PT_GUID"].Controls[0] as RadComboBox;
 
            list.DataTextField = "PT_Name";
            list.DataValueField = "RowGuid_Key";
            list.DataSource = SqlDataSource_PTCodeEdit;
            list.DataBind();
            list.SelectedValue = ((DataRowView)e.Item.DataItem)["FK_PT_GUID"].ToString();
            list.Text = ((DataRowView)e.Item.DataItem)["PT_NAME"].ToString();
            list.AutoPostBack = true;
            list.SelectedIndexChanged += new RadComboBoxSelectedIndexChangedEventHandler(ComboBoxControl_SelectedIndexChanged);
        }
    }
}
Jayesh Goyani
Top achievements
Rank 2
 answered on 27 Sep 2012
1 answer
47 views
Hi,

I am trying to get the datakey value of a row when expanding it to display a nestedViewTemplate.

When the grid is initially populated, I get the datakey values fine within the ItemCreated event.

Dim myID = CInt(e.Item.OwnerTableView.DataKeyValues(e.Item.ItemIndex)("whatever"))


But when the expand icon is clicked that code throws an error - {"Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index"}

Any thoughts on what I am doing wrong here? Thanks.
Jayesh Goyani
Top achievements
Rank 2
 answered on 27 Sep 2012
6 answers
145 views
I have a chart the need to change the bottom order for a Spline chart I have create.

<telerik:RadChart
    ID="RadChartDemographic"
    runat="server"
    DefaultType="Spline"
    Skin="Gray"
    ChartTitle-TextBlock-Text="Demographic%">
    <Series>
        <telerik:ChartSeries DataYColumn="Minority" Name="Minority" Type="Spline">
            <Appearance>
                <FillStyle MainColor="0, 116, 119" />
            </Appearance>
        </telerik:ChartSeries>
        <telerik:ChartSeries DataYColumn="White" Name="White" Type="Spline">
            <Appearance>
                <FillStyle MainColor="195, 167, 10" />
            </Appearance>
        </telerik:ChartSeries>
    </Series>
</telerik:RadChart>


For example:

1 |
2 |
3 |          -   -   - 
4 |       /             \
5 |     /                 \
    ----------------------------------
         1           2            3

I need to change the bottom number order to 3, 2, 1. I have reorder my query, but the numbers stay the same on the bottom. The confusing thing is that the data points in the graph change and do not correlate to the bottom row...

TIA
Steve
Top achievements
Rank 1
 answered on 27 Sep 2012
1 answer
94 views
When I upload some document and click a button to process a batch job, it will display  RadProgressArea. The IE works fine and Chrome will show white background like attached screenshot. I don't know why.
Kate
Telerik team
 answered on 27 Sep 2012
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?