Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
79 views
I am wanting to use the RadRibbonbar and RadImageEditor controls together.  Has anyone done this or something similar?
Vessy
Telerik team
 answered on 02 Aug 2012
1 answer
241 views
Hi,
I have a problem with radgrid cells: when the content is a long text, the content is not fully visible, because the overflow part is not visible and the tablelayout is set to fixed.
I can' t change the tablelayout and my goal is to use a multiline cell, so the text has to wrap.
I set the itemstyle to wrap=false but the behaviour doesn' t change

Is there a way to force ther text to wrap??
Pavlina
Telerik team
 answered on 02 Aug 2012
1 answer
117 views
I have a radtreeview where I can drag and drop nodes and reorder them. Everything is working but what I'd like to do is add a RadConfirm  or RadWindow message after a node is dropped that asks for confirmation before the node is dropped. I can't seem to figure out how this can be done. In my OnClientNodeDropping, I am opening a radwindow, but because the RadWindow works asynchronously, my ClientNodeDropping function is exiting before I get a response from the radwindow. Any kind of example on how to do this would be appreciated!
Plamen
Telerik team
 answered on 02 Aug 2012
0 answers
60 views
The company , where i work, bought the telerik pack.
I was using telerik.ui.dll trial, after I add the dll boughted I have the following error:





I create the ribbonbar programmatically...
I known that error is on ribbonbar, because if I comment the line  where created the error disapear.

I only add this on my css

div.RadRibbonBar{ width:100% !important}
* + html  div.RadRibbonBar{ width:100% !important}
* + html div.RadRibbonBar .rrbButtonAreaIn {width: 100% !important;}

div.RadRibbonBar div.rrbButtonGroup.CommunityCustom {width: 90px!important; }        
div.RadRibbonBar div.rrbButtonGroup.FolderCustom {width: 210px!important; }   
div.RadRibbonBar div.rrbButtonGroup.DocumentCustom {width: 160px!important;}         
div.RadRibbonBar div.rrbButtonGroup.ViewCustom {width: 400px!important;}        


I tried remove this css, but the error persist
July
Top achievements
Rank 2
 asked on 02 Aug 2012
1 answer
95 views
Hi,

I have a simple combo box with a number of options (see sample code below). When I expand it (vertical scrollbar appears) and scroll the options via keyboard 'up' and 'down' buttons  I need combo to scroll automatically when the selection gets beyond the visible area (i.e. the currently selected item must always be visible to the user).

I had this desired behaviour with previous versions, but Q2 2012 RadCombobox does not perform automatic scrolls and behaves as it is displayed at the attached screenshot. Is there a solution for that?

Thanks in advance,
Alexey
 
 <telerik:RadComboBox id="Combo1" runat="server" MaxHeight="50">
            <Items>
                <telerik:RadComboBoxItem Value="0" Text="Item0" />
                <telerik:RadComboBoxItem Value="1" Text="Item1" />
                <telerik:RadComboBoxItem Value="2" Text="Item2" />
                <telerik:RadComboBoxItem Value="3" Text="Item3" />
                <telerik:RadComboBoxItem Value="4" Text="Item4" />
                <telerik:RadComboBoxItem Value="5" Text="Item5" />                
            </Items>
</telerik:RadComboBox>
Kalina
Telerik team
 answered on 02 Aug 2012
1 answer
77 views
Yellow,
I have a requirement in which i need to remove a particular item in the list binded to the RadComboBox and insert back again on certain condition. How to implement this?  I am using Enum values to bind the RadComboBox.
Nencho
Telerik team
 answered on 02 Aug 2012
2 answers
259 views
Hi,

I am using RadComboBox inside Radgrid like below 
<telerik:GridTemplateColumn UniqueName="MyColumn" HeaderText="MyColumn">
                       <ItemTemplate>
                           <telerik:RadComboBox ID="MyComboBox" runat="server">
                               <ItemTemplate>
                                   <asp:CheckBox ID="chkBoxID" runat="server" />
                                   <asp:Label ID="lblMyLabel" runat="server" AssociatedControlID="chkBoxID">
                                   </asp:Label>
                               </ItemTemplate>
                           </telerik:RadComboBox>
                       </ItemTemplate>
                   </telerik:GridTemplateColumn>

As I am using Telerik.Web.UI dll with version (2009.1.311.35).

1) I have to bind it with some data source when I load the RadGrid,
how we can iterate through grid and bind each combo box with the desire collection ? 

2) When user click on Save button in page I have to store all the values which are checked in the combo box ? so how can I retrieve back when I save the page.??

how can I do on which event?

Thanks,
Ambuj
Nencho
Telerik team
 answered on 02 Aug 2012
2 answers
125 views

 

Dim EmailAddress As String
'set EmailAddress to a value retrieved from the database dynamically
Dim mailStr= ("mailto:" & EmailAddress)
System.Diagnostics.Process.Start(mailStr)

With mailto, does it use the customer's or the web server's default mail client to open an Outlook message?
Also, does the web server must be able to send email through Outlook Express? If it uses the customer's mail client to send email then the web server does not need to be configured to open a message or send a message, correct?
Somehow that code works for localhost which has Outlook but not on other web server which has Outlook Express.

Lisa
Top achievements
Rank 1
 answered on 02 Aug 2012
5 answers
223 views
whats the best way to do this?

i have a column in my grid set to be a hyperlink column.

i want to be able to click on this link and launch an edit form in a radwindow that is prepopulated with the row item data.

so need a way to pass row item data to the edit form....
Mark
Top achievements
Rank 1
 answered on 02 Aug 2012
4 answers
193 views
I am having a issue where Placing a Radbutton in a Grid Template Column, displays and functions correctly in IE8 but does not display correctly in IE7 or running IE8 in compatibility mode.  I saw a similar post but it dealt with the Resize event, my window is not being resized.

I have attached my code for the grid and a sample of the grid when viewed on IE7.  As you can see the buttons no longer scroll with the grid and are rendered above the grid. 

 

 

 

<telerik:RadGrid ID="RadGrid1" runat="server" AutoGenerateColumns="False" 
        GridLines="None" onneeddatasource="RadGrid1_NeedDataSource" Skin="Forest">
  
        <ClientSettings>
                <Scrolling AllowScroll="True" ScrollHeight="400px" UseStaticHeaders="True" />
            </ClientSettings>
<MasterTableView AllowPaging="True" PageSize="15">
<CommandItemSettings ExportToPdfText="Export to Pdf"></CommandItemSettings>
  
<RowIndicatorColumn FilterControlAltText="Filter RowIndicator column">
<HeaderStyle Width="20px"></HeaderStyle>
</RowIndicatorColumn>
  
<ExpandCollapseColumn FilterControlAltText="Filter ExpandColumn column">
<HeaderStyle Width="20px"></HeaderStyle>
</ExpandCollapseColumn>
  
    <Columns>
        <telerik:GridTemplateColumn FilterControlAltText="Filter TemplateColumn column" 
            UniqueName="TemplateColumn">
            <ItemTemplate>
              <telerik:RadButton ID="RadButton1" runat="server" 
                                        Skin="Forest" Text="Edit Rec" >
                                        <Icon PrimaryIconCssClass="rbEdit" PrimaryIconLeft="4" PrimaryIconTop="4" />
                                    </telerik:RadButton>
                                    </ItemTemplate>
      
  
        </telerik:GridTemplateColumn>
        <telerik:GridBoundColumn DataField="Signer_Name" 
            FilterControlAltText="Filter column column" UniqueName="column">
        </telerik:GridBoundColumn>
    </Columns>
  
<EditFormSettings>
<EditColumn FilterControlAltText="Filter EditCommandColumn column"></EditColumn>
</EditFormSettings>
</MasterTableView>
  
<FilterMenu EnableImageSprites="False"></FilterMenu>
  
<HeaderContextMenu CssClass="GridContextMenu GridContextMenu_Default"></HeaderContextMenu>
  
    </telerik:RadGrid>

 

 

 

 

Slav
Telerik team
 answered on 02 Aug 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?