Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
103 views
Hi there,

We have an issue on a site that I was also able to recreate on a Telerik demo site, http://demos.telerik.com/aspnet-ajax/editor/examples/default/defaultcs.aspx.

In IE: If you paste in the folowing code:

<ul>
    <li><a href="AAA http://www.telerik.com/purchase">AAA</a></li>
    <li><a href="DDD https://www.telerik.com/login.aspx">DDD</a></li>
    <li><a href="FFF http://www.telerik.com/community">FFF</a></li>
    <li><a href="SSS http://www.telerik.com/support">SSS</a></li>
</ul>

into the HTML view, switch to design view, add a new list item (add a space somewhere in the middle of the new text if possible), select the list item (all text in item), it will select the text as well as one more character to the right. Make this text a link either by the link manager or the custom links drop-down. If you go to the HTML view, you see the code gets mangled because it selected that one character to the right, which I'm sure id the closing LI tag. If you do not select the last character it works fine, but it is very unintuitive and we could never tell our clients to check for the selection of that last character. Is this something you are working on, is fixed in a version soon to be released, or fixable with a config/tool XML file change? Any help would be so greatly appreciated.

Thanks so much,

Marco Andrade
Matz
Top achievements
Rank 1
 answered on 22 Jun 2011
1 answer
70 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
81 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
248 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
95 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
419 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
660 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
600 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
82 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
124 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
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?