Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
106 views
We're using a RadDock and as we have to display some localized labels in there, we don't want to give it a fixed size, but we want it to behave in a 'shrink-to-fit' way. For some reason the width property is initialized with a DefaultAttribute of 300. When we set it to Unit.Empty it looks fine in Firefox (it shrinks to fit as expected). Unfortunately in IE7 the Rad is doing strange things, its right border always expands till to the right window border. Do you have any idea why it is doing this?
Pascal
Top achievements
Rank 1
 answered on 10 Jul 2009
1 answer
171 views
Does anyone know of a server or client event that can be configred for a RadGrid or the table view of a RadGrid that will fire when any value in the row or cell has changed.

I want to generate a callback to the server whenever any of the content controls in a row has changed to indicate that the current row for editing is "dirty" and needs to be managed.

Thanks
Yavor
Telerik team
 answered on 10 Jul 2009
1 answer
57 views
Dear All

Is it possible to add text area in the advanced insert/Edit form, the text area is our customized notes i want to put from data base


regards

imtiyaz
T. Tsonev
Telerik team
 answered on 10 Jul 2009
1 answer
120 views
Hi,

Our organization is about to start a new project, and we are currently reevaluating UI Components offerings.  We have used Telerik in the past and we now need to see if it can still fullfill our needs.

The most important scenarios we are looking to cover I will describe below, and I would like Telerik to tell me if using their controls will help me in doing it.

We want to be able to bind to a grid the content of an XML files.  The grid should allow inline editing (similar as a worksheet in Excel) of multiple rows.  Upon some trigger (let's say a Save button outside the grid), the grid should send back to the server, in XML format, only the data of the rows that have changed.  An acceptable solution would be to send the entire XML back (not only the rows that have changed).

We want the same behavior to be achievable with a Tree control as well.

Thank you,
Jonathan Rajotte
Sebastian
Telerik team
 answered on 10 Jul 2009
1 answer
139 views
Does the ListBox control support double clicking to move items back and forth between listboxes?

Thanks,
Gene.
Simon
Telerik team
 answered on 10 Jul 2009
5 answers
203 views
aspx:

<
Columns> 
               <telerik:GridBoundColumn UniqueName="EmployeeNo" DataField="EmployeeNo" HeaderText="EmployeeNo" HeaderStyle-Width="200px">  
                        <FilterTemplate> 
                            <telerik:RadComboBox ID="RadComboBox1" DataTextField="EmployeeNo" 
                                DataValueField="EmployeeNo" Height="100px" AppendDataBoundItems="true" SelectedValue='<%# ((GridItem)Container).OwnerTableView.GetColumn("EmployeeNo").CurrentFilterValue %>' 
                                runat="server" OnClientSelectedIndexChanged="EmployeeNoIndexChanged">  
                                <Items> 
                                    <telerik:RadComboBoxItem Text="All" /> 
                                    <telerik:RadComboBoxItem Text="000000" Value="000000"/>  //add item in aspx
                                </Items> 
                            </telerik:RadComboBox> 
                            <telerik:RadScriptBlock ID="RadScriptBlock1" runat="server">  
                                <script type="text/javascript">  
                                    function EmployeeNoIndexChanged(sender,args) {  
                                        var tableView=$find("<%# ((GridItem)Container).OwnerTableView.ClientID %>");  
                                        tableView.filter("EmployeeNo",args.get_item().get_value(),"EqualTo");  
                                    }  
                                </script> 
                            </telerik:RadScriptBlock> 
                        </FilterTemplate> 
                </telerik:GridBoundColumn> 
</Columns> 

cs:

protected
 void Page_Load(object sender, EventArgs e)  
        {  
            if (!Page.IsPostBack)  
            {  
 
                RadComboBox RadComboBox1 = this.FindControl("RadComboBox1"as RadComboBox;  
                RadComboBox1 = new RadComboBox();  
                RadComboBoxItem item = new RadComboBoxItem();  
 
                item.Text = "000001";  
                item.Value = "000001";  
 
                RadComboBox1.Items.Add(item);  
 
                RadComboBox1.DataBind();  
        } 

I want to filter the grid by a RadComboBox.
I tried as demo (http://demos.telerik.com/aspnet-ajax/grid/examples/programming/filtertemplate/defaultcs.aspx) but RadComboBox in this demo binding data by DataSourceID and <asp:SqlDataSource>.

I want to bind data from aspx.cs in this way when first page load:

RadComboBox1.Items.Add(item);  
RadComboBox1.DataBind();  

But I find that I can't  bind data like this  o_O !

<telerik:RadComboBoxItem Text="000000" Value="000000"/>  // only can add item like this in aspx
how to do this  '-' ?

thanks!
Airad
Top achievements
Rank 1
 answered on 10 Jul 2009
1 answer
92 views
Hello!

Is it possible to have the editor to output html 4.01 instead of xhtml?

Thank You!
Stanimir
Telerik team
 answered on 10 Jul 2009
1 answer
147 views
I'm trying to use the rotator to display pdf files and found the way to show pdf files is to embed them in an iframe. Then take the iframe and embed it in the rotator ItemTemplate.  Unfortunately when I do this, the rotator control doesn't show it property. It always shows all the pdf files (iframes) together side by side on the right and causes the iframes to bleed off the the page or area. It appears as though maybe the Rotator can't hide the other ones?

Some assistance with this would be greatly appreciated!


Thanks,
Stephen
Martin
Telerik team
 answered on 10 Jul 2009
2 answers
63 views
Hi All,

Normal formdecorator rendered buttons are showing with black text in IE6 and white text in IE7.  To get them to be consistant I want to use "color:white ! important" in the css.  What style is behind the scenes for the buttons (hovered and normal states)?

Regards,

Jon

Jon
Top achievements
Rank 1
 answered on 10 Jul 2009
1 answer
62 views

Hello,

The orientation of our tabstrip is HorizontalTop. It displays horizontally but when the page refreshes or performs a postback, the tabstrip displays vertically. We’re using IE7.

 

.aspx

<div class="tabstrip tabstop"> 
    <telerik:RadTabStrip ID="tabstrip1" runat="server" MultiPageID="tabstripPages"
        
Align="Center" SelectedIndex="0" Orientation="HorizontalTop">

 

 

 

            <Tabs>

 

 

                <telerik:RadTab Text="Tab 1" Value="1" Selected="true"></telerik:RadTab>

 

 

                <telerik:RadTab Text=" Tab 2 " Value="2" ></telerik:RadTab>

 

 

                <telerik:RadTab Text=" Tab 3 " Value="3" ></telerik:RadTab>

 

 

            </Tabs>

 

 

 

    </telerik:RadTabStrip>

 

 

</div>

 

 

 

.css

.tabstop

 

 

{

 

 

 

 

    margin-top: 5px;

 

}

 

 

Atanas Korchev
Telerik team
 answered on 10 Jul 2009
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?