Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
103 views
Hello! I'm having this problem) I use a grid and a hierarchical structure to display more information about the current record! And when I'm clicking on the icon > to open the additional information that this icon  a little bit lost (as in the picture!
Shinu
Top achievements
Rank 2
 answered on 22 Jun 2011
1 answer
108 views
Hi,
I have a problem with execution of few RadListBox Event: OnDeleted. Also I have discovered, that neither of following OnDeleting, OnReordering, OnReordered is being executed. While debugging it seems that they are not really invoked. Have you ever meet such problems.
Thanks for quick reply.

Control configuration:
<telerik:RadListBox ID="rlbDefinedShippings" runat="server" AllowReorder="true" AllowDelete="true" AutoPostBack="true" SelectionMode="Single" OnDeleted="rlbDefinedShippings_Deleted" />

Software configuration:
VS2010
RadControls version: 2010.3.1317.35
Princy
Top achievements
Rank 2
 answered on 22 Jun 2011
4 answers
295 views
I need to edit the records on my grid, doing exactelly what's explainned on the demo "Grid / Client edit with batch server update" (http://demos.telerik.com/aspnet-ajax/grid/examples/dataediting/clienteditbatchupdates/defaultcs.aspx)

The only problem is that i need to do it using server-side events, the datasource is created from a collection.

Is there any easier way to resolve this problem?

Thanks

Tiago Gerevini
Maria Ilieva
Telerik team
 answered on 22 Jun 2011
3 answers
116 views
Hy

I´ve create an application page using some RadControls. But the RadDateTimePicker is not working within the ApplicationPage. The Date and Time Dialogs do not pop up. I´ve used them in WebParts and they worked fine there, it seems to have something to do with the ApplicationPage.

Furthermore, if I use the Applicationpage within a ModalDialog (which I prefer to use) it is completely unusable. If I click on the Button for either Date or Time, a kind of Postback leaves the whole Modaldialog and reloads the page (only the page itself, even without the sharepointmasterpage).

Marin
Telerik team
 answered on 22 Jun 2011
8 answers
509 views

Two issues with RadChart legend position alignment (using RadControls for ASP.NET AJAX 2008.3.1314):

  1. Documentation suggests that "CenterRight" and "CenterLeft" are valid values for Legend.Appearance.Position.AlignedPostion; they are not. I'm assuming the correct values for the same positioning as shown in the image are "Right" and "Left".
  2. Setting AlignedPostion=Right results in the same positioning as AlignedPosition=TopRight. AlignedPosition=Right does not actually position the legend at the center-right as expected (instead it is actually positioned at the top-right); however, AlignedPosition=Left does position the legend at the center-left as expected.

    I'm setting Position-AlignedPosition declaratively in the markup:
    <Legend> 
        <Appearance Dimensions-Margins="15%, 2%, 1px, 1px" 
            Dimensions-Paddings="2px, 8px, 6px, 3px" Position-AlignedPosition="Right">  
            <ItemTextAppearance TextProperties-Color="Black">  
            </ItemTextAppearance> 
            <ItemMarkerAppearance Figure="Square">  
            </ItemMarkerAppearance> 
        </Appearance> 
    </Legend> 
     

 Here's the entire RadChart:

<telerik:RadChart ID="RadChart1" runat="server" SeriesOrientation="Vertical" Skin="Office2007" 
    DataSourceID="SqlDsRepairCosts" Width="800px">  
    <Series> 
        <telerik:ChartSeries DataYColumn="LABOR_OWL" DefaultLabelValue="#Y{c0}" Name="OWL Labor">  
        </telerik:ChartSeries> 
        <telerik:ChartSeries DataYColumn="LABOR_SFW" DefaultLabelValue="#Y{c0}" Name="SFW Labor">  
        </telerik:ChartSeries> 
        <telerik:ChartSeries DataYColumn="MATERIAL_COSTS" DefaultLabelValue="#Y{c0}" Name="Material Costs">  
        </telerik:ChartSeries> 
        <telerik:ChartSeries DataYColumn="TOTAL_ALLOCATED_SUPPORT_COSTS" DefaultLabelValue="#Y{c0}" 
            Name="Allocated Support Costs">  
        </telerik:ChartSeries> 
    </Series> 
    <PlotArea> 
        <XAxis Visible="False">  
            <Appearance Color="134, 134, 134" MajorTick-Color="134, 134, 134">  
                <MajorGridLines Color="134, 134, 134" Width="0" /> 
                <TextAppearance TextProperties-Color="Black">  
                </TextAppearance> 
            </Appearance> 
            <AxisLabel> 
                <Appearance RotationAngle="270">  
                </Appearance> 
                <TextBlock> 
                    <Appearance TextProperties-Color="Black">  
                    </Appearance> 
                </TextBlock> 
            </AxisLabel> 
        </XAxis> 
        <YAxis> 
            <Appearance Color="134, 134, 134" MajorTick-Color="134, 134, 134" MinorTick-Color="134, 134, 134" 
                CustomFormat="$#,##0">  
                <MajorGridLines Color="134, 134, 134" /> 
                <MinorGridLines Color="134, 134, 134" /> 
                <TextAppearance TextProperties-Color="Black">  
                </TextAppearance> 
            </Appearance> 
            <AxisLabel> 
                <Appearance RotationAngle="0">  
                </Appearance> 
                <TextBlock> 
                    <Appearance TextProperties-Color="Black">  
                    </Appearance> 
                </TextBlock> 
            </AxisLabel> 
        </YAxis> 
        <YAxis2> 
            <AxisLabel> 
                <Appearance RotationAngle="0">  
                </Appearance> 
            </AxisLabel> 
        </YAxis2> 
        <Appearance> 
            <FillStyle FillType="Solid" MainColor="">  
            </FillStyle> 
        </Appearance> 
    </PlotArea> 
    <Appearance> 
        <Border Color="134, 134, 134" /> 
    </Appearance> 
    <ChartTitle Appearance-Position-AlignedPosition="Top">  
        <Appearance> 
            <FillStyle MainColor="">  
            </FillStyle> 
        </Appearance> 
        <TextBlock Text="Repair Costs Breakdown">  
            <Appearance TextProperties-Color="Black" TextProperties-Font="Arial, 18px">  
            </Appearance> 
        </TextBlock> 
    </ChartTitle> 
    <Legend> 
        <Appearance Dimensions-Margins="15%, 2%, 1px, 1px" 
            Dimensions-Paddings="2px, 8px, 6px, 3px" Position-AlignedPosition="Right">  
            <ItemTextAppearance TextProperties-Color="Black">  
            </ItemTextAppearance> 
            <ItemMarkerAppearance Figure="Square">  
            </ItemMarkerAppearance> 
        </Appearance> 
    </Legend> 
</telerik:RadChart>

Am I doing something wrong?
Jimmy
Top achievements
Rank 1
 answered on 22 Jun 2011
12 answers
710 views
Problem 1:
I can't find funtion for validate MaxFileSize in Radupload.

Problem 2:
I have a funtion:

function validateRadUpload2(source, arguments) {
        arguments.IsValid = getRadUpload('<%= RadUpload2.ClientID %>').validateExtensions();
    }

But RadUpload2 in  RadGrid -> EditFormSettings -> FormTemplate.
How to get RadUpload2.ClientID ?


Please help me!
Thanks a lots!
Regards,
Peter Filipov
Telerik team
 answered on 22 Jun 2011
5 answers
666 views
Hi,
I was wondering how I can change the text of a field in the grid based on it's value.In my scenario I have a Date field, but when its value is less than a predefined date I want to display an empty cell rather than the value.
Is this possible?
Thanks for any pointers!
Viktor Takacs
Top achievements
Rank 2
 answered on 22 Jun 2011
1 answer
109 views
Hi,

I need to rebind the TabStrip after postback.
In my case, the contents of the tabstrip changes after the page postbacks.

Am getting exception when i do this 

protected void Page_Load(object sender, EventArgs e)
{    
    if (!IsPostBack)
    {
        BindTabStrip();
    }
    else
    {               
           BindTabStrip();
    }
}


Am not getting exception when i do this, but i dont get the updated TabStrip:
protected void Page_Load(object sender, EventArgs e)
{
    db = (DataLib_oracle)Session["db_lib"];
    if (!IsPostBack)
    {
        BindTabStrip();
    }
    else
    {               
        RadTabStrip1.DataSource = ds;
        RadTabStrip1.DataBind();
    }
}

Let me know if there is better way to do the rebinding of tabstrip on page postback.

Following is the code for BindTabStrip()
private void BindTabStrip()
{
     DataSet ds = getDataSet();    
 
    RadTabStrip1.DataFieldID = "web_form_id";
    RadTabStrip1.DataTextField = "FORM_NAME";
    RadTabStrip1.DataSource = ds;
    RadTabStrip1.DataBind();
}

Thanks,
Mani
Veronica
Telerik team
 answered on 22 Jun 2011
2 answers
143 views
Hi,

I have a grid which has the DataSource property set to a collection of objects.
In the grid I have several textboxes bound to properties of the objects in the collection:

<telerik:RadTextBox ID="rtbKPIComments" Runat="server" Height="60px"
                      TextMode="MultiLine" Width="100%" Text='<%# Bind("ResultsExample") %>'>
</telerik:RadTextBox>

The textbox displays the value in the property, but the reverse binding (from control to property) doesn't work. The value in the control is correct, but it is not copied in the property.

What am I doing wrong?

Thanks!
Maria Ilieva
Telerik team
 answered on 22 Jun 2011
1 answer
128 views
Hello,

Im new in ASP.Net and Im not a Native Programmer.
Im using Web Developer 2010 (C#) with Framework 3.5 and the Latest Demo from telerik rad_controls.

I have got 2 Problems.

1) All Images should be Resized to Fixed Size of X * Y (no matter where or when).
I found this Article btu I dont know where and how to implement Code in Code Behind (the second method)
http://www.telerik.com/help/aspnet-ajax/upload-how-to-resizing-images.html

2) I need the names of the Images + I must to rename them (add some number) in Variable to be able to safe the image name in Database

Current Scenario (Code Behind-very Short Version) :

onPageLoad
div a. Visible // collect Data from TextBox A
div b. InVisible
div c. InVisible
div d. InVisible

onButton_Click_NEXT1
div a. InVisible
div b. Visible // collect Data from TextBox B
div c. InVisible
div d. InVisible

onButton_Click_NEXT2
div a. InVisible
div b. InVisible
div c. Visible // UpLoad Images with RAD_ASYNC_UPLOAD and ReName and Resize on myFixed Size
div d. InVisible

onButton_Click_NEXT3
div a. InVisible
div b. In Visible
div c. InVisible
div d. Visible// collect Data from TextBox C

onButton_Click_INSERT
Insert data from TextBox A, B, C, and the ImageNames in to Database

Any Help on this problem?

Thanks,
Richard
Peter Filipov
Telerik team
 answered on 22 Jun 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?