Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
112 views
How do I hide the label on the autogenerated edit form?  Here's my code, It hide's the textbox but not the label in fornt of the textbox.

'Hide the planID on the automatic edit form
        If TypeOf e.Item Is GridEditFormItem AndAlso e.Item.IsInEditMode Then
        Dim editItem As GridEditFormItem = DirectCast(e.Item, GridEditFormItem)
        Dim txtbxPlanID As TextBox = DirectCast(editItem("PlanID").Controls(0), TextBox)
        txtbxPlanID.Visible = False
        End If

Can I add validation to the autogenerated edit form?

Also, does anyone have a recent code sample for using an external control as an edit form. I have tried to follow this along but I get confused because I am using a sql data source and a clean example with a standard datastore would help me learn much more.

http://demos.telerik.com/aspnet-ajax/grid/examples/dataediting/usercontroleditform/defaultcs.aspx
Princy
Top achievements
Rank 2
 answered on 15 Nov 2010
3 answers
121 views
Hi,

I am using your RadWindow control to implement several types of popup windows.  They work fine, but after the user has closed the popup it is automatically redisplayed if the user clicks the Back button to return to the previous web page.

How can I prevent RadWindow popups from being redisplayed when the user clicks the Back button?
Georgi Tunev
Telerik team
 answered on 15 Nov 2010
1 answer
62 views
Hello,

a RadGrid has 2 columns,
Title and Address
and I want to get back results if Title Equals to some string OR if Address equals to some other string. But all I can achieve with "normal" filter is only if the Title equls to some string AND if Address equals to some other string.
How would I force RadGrid to show me results using OR instead of AND between filters? And I would like to be able to "change" that behavior from the UI. Is it possible?

Regards
Marin
Telerik team
 answered on 15 Nov 2010
4 answers
327 views
hi,
anybody give me sample example where i am able to learn how can i save radgrid data to database directly with javascript .
here i am using a dropdown textbox and label for my redgrid.
Thanks
Marin
Telerik team
 answered on 15 Nov 2010
1 answer
278 views
Hello,
 I have seen the basic filter on grid as shown in example http://demos.telerik.com/aspnet-ajax/grid/examples/generalfeatures/filtering/defaultcs.aspx 

I have to implement the same filtering but with some modification. I want that Filter Text Box will appear on the Column Name (Header) of the Grid.
Mean to say that whenever the end user make double click on the Header of the Grid; the Header Got convert into the Textbox & this textbox will start work as the filter with the Auto suggest for the particular header data.

 Whenver user type say "Tel" in the text box the Gird start showing all the records having "Tel" & when the user type "Tele" at the same moment the Gird data go filtered. Means Filtering at the time of the Text Change of the Textbox filter.


Please let me know how to achieve the same.

Thanks in Advance!!!!!
Radoslav
Telerik team
 answered on 15 Nov 2010
1 answer
93 views
Hi,

We are attempting to use Telerik's built in jquery to do nothing more than write in content from an external URL.

We have the script manager and references in place as outlined here http://www.telerik.com/help/aspnet-ajax/using-jquery.html

However, it isnt working. Its pretty simple -

<div id="agenda"></div>
<script language="javascript" type="text/javascript">
     $telerik.$("agenda").append("http://www.ncvhonline.com/AgendaFeed.aspx?EID=1");
    </script>

The URL inside the append returns a simple table. What am I doing wrong here? Thanks.
Kamen Bundev
Telerik team
 answered on 15 Nov 2010
7 answers
113 views
In my charts I have a lot of data points and IE pops up a "Script unresponsive" popup box. I thought there were a lot of items in the 'map' so I removed tooltips and IE popped up just fine with no unresponsive issues.

While not being a huge fan of IE - Corporate world loves it, so... I was wondering if there were any tricks to getting IE to deal with a large collection of tooltips for a chart without throwing popups making my application look like it's doing something wrong.
[I'm actually held up in QA because of this]

I appreciate any input, but I've already ruled out "Don't use tooltips". :-D
Yavor
Telerik team
 answered on 15 Nov 2010
1 answer
78 views
I currently have a radgrid with 6 columns.  When the user chooses to Edit the row they are able to edit columns 4-6.  If the user selects to insert a new row they may edit columns 1-6.  Can someone help me understand how to do this?
Princy
Top achievements
Rank 2
 answered on 15 Nov 2010
1 answer
527 views
Folks,

Using Radgrid for Asp.net Ajax 2010 V2 with VStudio 2008 SP1.

My question is that how can I conditionally hide a Table Row (in this example: <tr id = "tr2">) that is declared within a Grid Template column. Preferrably within item data bound event if certain conditions are not met based on Other Grid Data. Below is my Template declarations. Thanks

gc_0620 

<columns>
<telerik:="TemplateColumn1"  HeaderStyle-ForeColor="BurlyWood" HeaderText=" Template Column"
                                    DataField="First Name">
                                    <ItemTemplate>
                                        <table style="width: 100%; table-layout: auto; border-collapse: collapse;">
                                            <colgroup>
                                    <col />
                                    <col />
                                    <col />
                                    <col />
                                </colgroup>
                                            <tr id = "tr1">
                                                <td>
                                                 tr1 - A   
                                            
                                                </td>
                                                <td>
                                                 tr1 - B   
                                                 </td>
                                                <td>
                                                   tr1 - C
                                                </td>
                                                <td>
                                                  tr1 - D   
                                                </td>
                                            </tr>
                            <tr id = "tr2">
                                                <td>
                                                 tr2 - A   
                                            
                                                </td>
                                                <td>
                                                 tr2 - B   
                                                 </td>
                                                <td>
                                                   tr2 - C
                                                </td>
                                                <td>
                                                  tr2 - D   
                                                </td>
                                            </tr>
  
                                             
                                        </table>
                                    </ItemTemplate>
                                </telerik:GridTemplateColumn>
</columns>
Shinu
Top achievements
Rank 2
 answered on 15 Nov 2010
1 answer
107 views
Can you please show me how to reduce the height of the Client Name ComboBox to look like the Service Type dropdownlist in the attached file?  I figured out how to shrink down the font but that's as far a I could get.

Thanks

 

.RadComboBox_Web20,
.RadComboBox_Web20 .rcbInput,
.RadComboBoxDropDown_Web20
{
    font:11px/16px "Arial", Vedana, sans-serif!important;
    color: #000;
}
Kamen Bundev
Telerik team
 answered on 15 Nov 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?