Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
75 views
Please add a new property to the RadGrid called "Auto-SelectFirstRow=True". The purpose of this property would be to:

1) Auto-detect when new data is loaded into the grid, then automatically select the first row. 
2) If paging, automatically selects the first row. 

Of course, if no rows are present, it would not select any rows. 

An alternative approach would be use "Auto-SelectThisRow=4" where the developer can set the row index to be auto-selected. 

Thank you for the consideration.
Fred
Top achievements
Rank 1
 answered on 02 Aug 2011
2 answers
101 views
  Hi ,

I m using rad combo box to display some variables. Everything works fine. But when i click to drop down the list i see a down arrow at the end of list.
I don't want to display that. If i click on it, the values are getting binded again and it is double the values in the list.

Suppose, if there are 6 items in the list. If i click the down arrow then the items gets doubled. it shows 12 items in the list. 
 
Please have a look at the attached file.

This is my combo box: 
 
<telerik:RadComboBox ID="cboaction_cat_id" runat="server" Width="350px" Height="200px"   EmptyMessage="Select a Action Category" MarkFirstMatch="true"
     DataTextField ="action_category_id"  DataValueField="action_category_id" EnableLoadOnDemand="True" OnSelectedIndexChanged="cboAction_SelectedIndexChanged"
     ShowMoreResultsBox="true" EnableVirtualScrolling="true" AutoPostBack="true" OnDataBound="RadComboBox2_DataBound" OnItemDataBound="RadComboBox2_ItemDataBound"
      OnItemsRequested="RadComboBox2_ItemsRequested" OnClientItemsRequested="UpdateItemCountField"   HighlightTemplatedItems="true" >
       <HeaderTemplate>
          <ul>
              <li class="col1">Action Cat ID</li>
              <li class="col2">Action Cat Desc</li>
          </ul>
      </HeaderTemplate>
      <ItemTemplate>
          <ul>
              <li class="col1">
                  <%# DataBinder.Eval(Container.DataItem, "action_category_id")%></li>
              <li class="col2">
                  <%# DataBinder.Eval(Container.DataItem, "action_category_desc")%></li>
          </ul>
      </ItemTemplate>
       <FooterTemplate>
          A total of
          <asp:Literal runat="server" ID="Literal1" />
          items
      </FooterTemplate>
     </telerik:RadComboBox>


Thanks,
Nirmala
Top achievements
Rank 1
 answered on 02 Aug 2011
3 answers
229 views
Hi,

I am using Teleik 2010 Q2 Release in my project. I have a grid which has around 20,096 records with subgrid.

But when I try to export to excel, it says out of memory exception.

Is there any solution for this? Is this issue resolved? Or is there any workaround?
Jayesh Goyani
Top achievements
Rank 2
 answered on 02 Aug 2011
1 answer
188 views
Hi all,

I am applying Combobox filter for Radgrid like
http://demos.telerik.com/aspnet-ajax/grid/examples/programming/filtertemplate/defaultcs.aspx

But I would like to do more than that.
Let's say, Course column has
 + CS123
 + CS124
 + CS890
 + BM123
 + BM124

If user chooses CS123 from Combobox, of course, it will filter data has CS123 only.
Beside that, I would like add another function which allows user inputs data for filtering.
For example, user input "123" and press Enter
It will filter data includes "123", the result should be "CS123", and "BM123"

That means user can have 2 options:
 + Choose course from dropdown list
 + Or input data and press Enter (work like "Contains" function) 

Thanks,

Andy.



Elliott
Top achievements
Rank 2
 answered on 02 Aug 2011
2 answers
86 views
When the schedular is in month view, is it possible to double click on a given date, and rather than displaying the schedular in day view, direct the user to a new page and include the date clicked as part of the querystring?

I have a simple schedular in month view that I would like a user to double click a date, then the user is directed to a form that will be submitted to a database. I would like to populate a label on the form with the date the user double clicked.

Thank you in advance.
Allan
Top achievements
Rank 2
 answered on 02 Aug 2011
5 answers
183 views
I've run the test here with flying colors, it creates the folders/files, accesses them, and deletes them properly. However I still can not create a folder through the RadFileExplorer. This is running on a local intranet SBS2003 server, with I believe Unrestricted trust... any idea why I might not be able to create folders?
Dobromir
Telerik team
 answered on 02 Aug 2011
1 answer
60 views
Hi all,
There is a weird behaviour of the Chart when the zoom is active. The same graph without zoom displays all the margins, but if the zoom is active, the right and top margins aren't shown.  (images one serie.jpg, oneserieNozoom.jpg)
Another weird behaviour is about the XAxis labels: if the zoom is inactive the Xaxis label are ok, but when I turn on the zoom the first label appears cut in the middle and It cannot be read. (OneSerieLabelsOK.jpg, OneSerieLabelsCutOff.jpg)
Anyone knows what can it be due to and how can I solve it?
Thanks in advance
Giuseppe
Telerik team
 answered on 02 Aug 2011
1 answer
102 views
Hello

I'm trying to apply some custom positioning on the Y-Axislabel. This is working fine using the following code:  (left situation) in screenshot)

BaseChart.PlotArea.YAxis.AxisLabel.Visible = true;
BaseChart.PlotArea.YAxis.AxisLabel.Appearance.RotationAngle = 360;
BaseChart.PlotArea.YAxis.AxisLabel.Appearance.Position.Auto = false;
BaseChart.PlotArea.YAxis.AxisLabel.Appearance.Position.AlignedPosition = Telerik.Charting.Styles.AlignedPositions.None;
BaseChart.PlotArea.YAxis.AxisLabel.Appearance.Position.X = 20;
BaseChart.PlotArea.YAxis.AxisLabel.Appearance.Position.Y = -30;

But once I try to call GetBitmap() or the RenderControl() method on the chart the label position is lost. (right situation in screenshot)

Kind Regards,
Kristof
Giuseppe
Telerik team
 answered on 02 Aug 2011
10 answers
390 views

Hi,

Here’s the code:

 

<div>

    <telerik:RadWindowManager ID="RadWindowManager1" runat="server" ShowContentDuringLoad="true" >

        <Windows>

            <telerik:RadWindow ID="RadWindow1" runat="server" Behaviors="Close,Minimize,Move,Resize,Maximize" Modal="true" Skin="Office2007" Title="NewPage" >

                <ContentTemplate> 

                    Here's the text for Modal window!

                </ContentTemplate>                

            </telerik:RadWindow>

        </Windows>

    </telerik:RadWindowManager>

    <br />

    <input type="button" value="click Here" onclick="openRadWindow();" />

    <script type="text/javascript">

 

        function openRadWindow() {

 

            var rwManager = $find("<%= RadWindowManager1.ClientID %>");

            var rwindow = rwManager.Open("", "RadWindow1");

            rwindow.center();

            return false;

        }

    </script>

</div>


I’m using $find() to grab the Window Manager as this section is in a user control and the container page also has a RadWindowManager.

When I click on the button, the RadWindow shows up including the title but -  anything inside the Content template does not show in the window.

Am I missing something?

 

Also, I wonder if the content template is specific to Q3-2009 release as we haven’t updated to that version yet.

 

Any help pointer will be great appreciated.

v
Top achievements
Rank 1
 answered on 02 Aug 2011
1 answer
78 views
I am very new to this concept so please let me know how to integrate telerick radschedular with asp.net from the scratch..please i search a lot but couldnt find any useful links plese help.
Plamen
Telerik team
 answered on 02 Aug 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Jesse
Top achievements
Rank 2
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Jesse
Top achievements
Rank 2
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?