Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
102 views
Hi,

I have a form where I used two normal (standard aspx not Telerik) textboxes.  The are surrounded by a fieldset with curved corners thanks to the formdecorator.

As normal RadTextBoxes have square corners I added a second form decorator control to the page and set it to not enableroundcorners for textboxes and the first form decorator I told to format everything BUT textboxes.

Doing this made the form decorator do the fieldset top and bottom borders wrongly.

So I decided to remove the second form decorator and see what the page looked like without the round corners.  Better this time except that the colour of the legend in the fieldset no goes to black rather than the light blue (Web20 theme) that it was before.

Is there a bug here?

This isn't critical for me as I can work with a RadTextBox on this form so I won't be researching anymore - thought I should let you know about the issue though.

Regards,

Jon
Martin
Telerik team
 answered on 27 Jul 2009
1 answer
66 views
The classic rad editor find&replace has a search box with "entire text" and "selection only", but this seems to be missing from the AJAX version.  Is there anyway to expose this functionality in the AJAX version or was it dropped?


Lini
Telerik team
 answered on 27 Jul 2009
2 answers
107 views
Hi,

I have a radgrid to display items. I have radcontextmenu( showcolumn,hidecolumn). when the user right click and selects on hidecolumn, the column should be hided. I have to perform this logic at the server side. But, the problem is when the user clicks on hidecolumn, in radmenu_itemclick handler i am getting text of hidecolumn but not on which column he right clicked. so, i am not able to know which column to hide. Is their anyway at the server side to know on which column the user right clicked???

Thanks for your support as always.

Mahesh
Mahesh Babu
Top achievements
Rank 1
 answered on 27 Jul 2009
1 answer
125 views
Hi,

Hopefully a quick, simple problem.

I've got a RadGrid which uses the NeedDataSource event to poplute with data which works perfectly.  I want to filter a column using a RadComboBox. I've followed various examples which show it working if you databind to the grid declaratively, but work out how to convert the example if I'm using the NeedDataSource method.

Thanks in advance for any help!
Johnnie

P.S. Here is my code for the filter so far:

<telerik:GridBoundColumn DataField="ArticleLength" HeaderText="S/M/L" 
                                    SortExpression="ArticleLength" UniqueName="ArticleLength" ItemStyle-HorizontalAlign="Center">
                                    
                                    <FilterTemplate>
                                        <telerik:RadComboBox ID="RC_FilterArticleLength" DataTextField="ArticleLength"
                                            DataValueField="ArticleLength" Height="100px" AppendDataBoundItems="true" SelectedValue='<%# ((GridItem)Container).OwnerTableView.GetColumn("ArticleLength").CurrentFilterValue %>'
                                            runat="server" OnClientSelectedIndexChanged="RC_FilterArticleLengthChanged">
                                            <Items>
                                                <telerik:RadComboBoxItem Text="All" />
                                            </Items>
                                        </telerik:RadComboBox>
                                        <telerik:RadScriptBlock ID="RadScriptBlock1" runat="server">

                                            <script type="text/javascript">
                                                function RC_FilterArticleLengthChanged(sender,args) {
                                                    var tableView=$find("<%# ((GridItem)Container).OwnerTableView.ClientID %>");
                                                    tableView.filter("ArticleLength",args.get_item().get_value(),"EqualTo");
                                                }
                                            </script>
                                        </telerik:RadScriptBlock>
                                    </FilterTemplate>
                         </telerik:GridBoundColumn>
Veli
Telerik team
 answered on 27 Jul 2009
9 answers
215 views
I've seen similar questions posted for the Menu and ComboBox controls but I haven't seen one for toolbar.  The question is, for a RadToolBarDropDown (or split dropdown), is it possible to make the menu expand UP instead of down?  I haven't seen an ExpandDirection property or any other way of doing this.

THANKS
Kamen Bundev
Telerik team
 answered on 27 Jul 2009
2 answers
241 views

I tried to disable unnecessary context menu when I set a grid with ContextMenus. By default, if you click the blank part of the grid, it disables the Delete menu.

However, after adding customized menu like Download, it shows in the context menu even there is no selected item (i.e., How can I download it?). So I want to disable the unnecessary menu or make it invisible except in the grid row context menu.

Lini
Telerik team
 answered on 27 Jul 2009
2 answers
136 views
Hello,

I'm trying to recreate the WIndows Vista Aero window effect by using variable transparency PNGs for the shadow and translucency effects for the window chrome. During planning, I've noticed that while I'd be able to modify the skin pretty trivially by modifying the CSS and image dimensions, the increased border width (due to the drop shadow padding) would make the translucent shadow part clickable as well, making the "resizable" click area 10px wider than expected.

My question is, is there a way to control or modify the resizable border width to allow the drop shadow part of the border to bleed out?
Klemen Slavič
Top achievements
Rank 2
 answered on 27 Jul 2009
1 answer
101 views
Hi
      I used Rad Editor with BasicEmptyTool.Xml. Herewith i want to need Detault font name Tahoma & font size:12. But now the Rad Editor shows Detault Times New Romans. Let Me know how can i change the default font name & size like Tahoma and 12 size. Please do needful ASAP.....

Regards
G. Manikandan
Shinu
Top achievements
Rank 2
 answered on 27 Jul 2009
5 answers
109 views
I'm having a problem using the "Telerik" skin for the RadWindow with the markup below where the top of the window is not showing.  This is not presenting as a problem with other skins for this control using the same markup.

<telerik:RadWindow  
  ID="Security_LockWindow" 
  runat="server"     
  Height="270px" 
  Modal="true"   
  VisibleStatusbar="false" 
  VisibleTitlebar="false" 
  Left="" 
  ReloadOnShow="false"    
  ClientCallBackFunction="Security_AutoLogout_Return"   
  style="display:none;" 
  Top="" 
  Width="350px" 
  Skin="Telerik">    
</telerik:RadWindow> 
Martin
Telerik team
 answered on 27 Jul 2009
1 answer
123 views
I have a grid with a master and detail table.  When I insert a row in the detail table, I need to get a value from the master table (not the datakey value - one of the columns)

How can I do this ?

in the InsertCommand event I have this code

if ("ArtistTypeSWF".Equals(e.Item.OwnerTableView.Name))  -- check for the detail table
            {  
                Telerik.Web.UI.GridEditFormInsertItem editinsertitem = (Telerik.Web.UI.GridEditFormInsertItem)e.Item;  
                GridDataItem dataitem = e.Item.OwnerTableView.ParentItem;  
                  
                 
                DBObjects.ArtistType at = (DBObjects.ArtistType)dataitem.DataItem;  
                ----  at is null, I need to get the data from one of the master table columns here
Princy
Top achievements
Rank 2
 answered on 27 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?