Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
58 views
pls help me............................

Thankssssssssssssssss
Shinu
Top achievements
Rank 2
 answered on 20 Apr 2012
3 answers
133 views

Please help?

If I want to see below chart clearly, am trying to zoom in the chart by selecting some portion from chart.

Then, Screen is coming up as  attached Chart View Issue Due to number of x-Axis scale points1.


XY-axis Label’s position Issue: 
DID YOU OBSERVE THE X-AXIS AND Y-AXIS LABLE NAMES ARE AT THE SCALING POINT X-AXIS AROUND 25 AND Y-AXIS AROUND 150, NOW IF I SCROLL THE XYAXIS THE AXIS LABLE NAMES ARE STICKING AT 25,150 POINTS.

EXAMPLE, NOW AM ZOOMING IN MORE AND TRYING TO SCROLLING LEFT OR RIGHT ON X-AXIS AT SOME POINT, I CAN’T SEE THE LABLE NAME PLEASE SEE BELOW FOR UNDERSTANDING.

THE SAME SITUATION HAPPEN FOR YAXIS LABEL ALSO.

Please refer image XY-axis Label’s position Issue

Is this possible to limit the distance between two scale points on x-Axis ?

After I click on Zoom In, It is taking about 3mints to zoom the chart, is there any option to kill the performance?

Ves
Telerik team
 answered on 20 Apr 2012
4 answers
296 views
I have 2 listboxes on my page, I tried the allowduplicates = false and it still does not work.  what I have is a 1st LB that takes many values and they drag and drop which ones they want to a second LB, however they can reload the 1st lb with the same Id's sometimes and tehn drag tehm over agian becuase in the db I do not failsafe that they cannot get ahold of the id until they save.  I put allowSuplicates to false but it still happens, what is my way to get around this without haveing to write a bunch of codebehind to cut it out or figure out Javascript to work with it as well.

<table width="100%">
                                       <tr>
                                           <td style="width:15%"></td>
                                           <td style="width:30%"><telerik:RadListBox ID="lbItems" runat="server" Width="300px" Height="450px" AllowTransferOnDoubleClick="true" EnableDragAndDrop="true" CssClass="aspControl" 
                                                                   SelectionMode="Multiple" AllowTransfer="true" TransferToID="lbIssue" AllowTransferDuplicates="false" /></td>
                                           <td style="width:10%"></td>
                                           <td style="width:30%"><telerik:RadListBox ID="lbIssue" runat="server" Width="300px" Height="450px" CssClass="aspControl" AllowTransferDuplicates="false"></telerik:RadListBox></td
                                           <td style="width:15%"></td>      
                                       </tr>
                                   </table>

Here are the follwoing 2 events that can load the 1st dropdownlist.

Protected Sub txtSearch_TextChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles txtSearch.TextChanged
        Dim Id As Integer = HFSN.Value
        ClearLookup()
        lbItems.Items.Clear()
  
        sql = "Select dr.intRecId, dr.strSN  + ' \ ' + dm.strMake + ' ' + m.strModel SN from Drat_Received dr INNER JOIN Drat_Model m on m.intModelId = dr.intModelId INNER JOIN Drat_Make dm on dm.intMakeId = " _
            & "m.intMakeId where dr.intRecId = " & Id & " And intTransTypeID = 4 and bitTempRec IS NULL"
  
        lbItems.DataSource = getData(sql)
        lbItems.DataValueField = "intRecId"
        lbItems.DataTextField = "SN"
        lbItems.DataBind()
  
    End Sub

Protected Sub ddlModel_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles ddlModel.SelectedIndexChanged
    Dim Id As Integer = ddlModel.SelectedValue
    ClearLookup()
    lbItems.Items.Clear()
    sql = "Select dr.intRecId, dr.strSN  + ' \ ' + dm.strMake + ' ' + m.strModel SN from Drat_Received dr INNER JOIN Drat_Model m on m.intModelId = dr.intModelId INNER JOIN Drat_Make dm on dm.intMakeId = " _
        & "m.intMakeId where dr.intModelId = " & Id & " And intTransTypeID = 4  and bitTempRec IS NULL Order by dr.strSN"
    lbItems.DataSource = getData(sql)
    lbItems.DataValueField = "intRecId"
    lbItems.DataTextField = "SN"
    lbItems.DataBind()
End Sub


Kate
Telerik team
 answered on 20 Apr 2012
1 answer
291 views
Hello,

ASP.NET Ajax: 2012.1.215.40

I used a bounded RadDatePicker inside a DetailsView with the following parameters:
<telerik:RadDatePicker ID="Test" runat="server" SelectedDate='<%#Bind("Birthday") %>' SkipMinMaxDateValidationOnServer="true" MinDate="1900-01-01"></telerik:RadDatePicker>

Initially, the "Birthday" property from datasource is DateTime.MinValue. 

When I turn the DetailsView from ReadOnly to Edit mode, the RadDatePicker text box displays the value "01/01/0001 00:00:00" and its border becomes red with a warning triangle in the right.

I would like that when my "Birthday" property is set to DateTime.MinValue and the DetailsView is bound in Edit mode, the RadDatePicker empties its text box in place of displaying the red border. But when the user enters a date smaller than MinDate, the normal behaviour remains, ie red border is displayed.

How can I do this?

Thank you,
Alain

 
Maria Ilieva
Telerik team
 answered on 20 Apr 2012
4 answers
330 views
I am trying to make the nodes clickable so that I can do something when they are clicked. I am doing simple manual binding using a  list of objects. I am only binding one level at a time because of how deep our heirarchy can be. So when they click on the node I will bind the level below that person. I have a button inside an item template. After the nodes render, I click on the button and it does a post back but does not fire the button click event. If I click it a second time it does a postback and DOES fire the button click event. I have also tried to handle the GroupItemDataBound to use the FindControl you introduced in SP1 with the hopes of attaching the event there instead of the markup as I am doing below. How ever FindControl("LinkButtonNode") returned null. Please advise as I have not run into this before. Or if you know a better way to make the node clickable please advise.

Markup:

<telerik:RadOrgChart ID="RadOrgChartDirectReports1" EnableViewState="true" Skin="Office2010Silver"
           runat="server">
           <ItemTemplate>  
               <asp:Button CausesValidation = "false" OnClick="LinkButton_Click" CommandArgument='<%# DataBinder.Eval(Container.DataItem, "EmployeeId")%>'
                   runat="server" Text = "Click" ID="LinkButtonNode"></asp:Button>
           </ItemTemplate>
           
       </telerik:RadOrgChart>


Code behind:

private void BindOrgChart2()
   {
       RadOrgChartDirectReports1.DataSource = DataAccess.GetNewHireList();         
       RadOrgChartDirectReports1.DataBind();
   }

public void LinkButton_Click(object sender, EventArgs e)
   {
       string test = "";
   }


DataAccess:

namespace RadControlsTestWebApp1
{
    public class DataAccess
    {
        public static List<HeirarchyBind> GetNewHireList()
        {
            var list = new List<NewHireNotification>();
            using (var client = new RadControlsTestWebApp1.EmployeeService.NewHireNotificationClient())
            {
                list = client.GetEmployeeNewHireNotifications(null);
            }
 
            var newlist = list.Select(x => new HeirarchyBind
            {
                Name = string.Format("{0} '{1}' {2}", x.HireInformation.FirstName, x.HireInformation.PreferredName, x.HireInformation.LastName),
                EmployeeId = x.HireInformation.EmployeeId,
            }).ToList();
 
            return newlist;
        }
    }
}


Peter Filipov
Telerik team
 answered on 20 Apr 2012
1 answer
156 views
Hi Team,

I have a rad combobox for which i am checking the check boxes on client side based on the text entered using the below code.

combo.get_items().getItem(i).set_checked(

 

true);

 but it did not show the text of all the items checked which matches the typed criteria, instead shows the text of only the first matching item. and after any event on the page the text chnages (to the correct text).

for example if i type a in the combo box, it cheks the items 'apple' and 'ant' but shows the text of the combox only as 'apple' instead of 'apple, ant' and once i click on any button it changes to 'apple, ant'

Tried to use combo.set_text("mytext"), but did not work

Thanks for any suggestions

Ivana
Telerik team
 answered on 20 Apr 2012
0 answers
95 views
<telerik:RadTabStrip ID="radTabIn" runat="server" Skin="Web20" SelectedIndex="0"  style="float:none" MultiPageID="radIPPage" Width="100%">
                           <Tabs>
                <telerik:RadTab Text="<span class='underline'>R</span>egistration Address" Width="22%" TabIndex="0" Selected="True" 
                                   AccessKey="R" ToolTip="Alt+r">
                </telerik:RadTab>
                <telerik:RadTab Text="<span class='underline'>P</span>atient Details" Width="22%" TabIndex="1" AccessKey="P" ToolTip="Alt+p">
                </telerik:RadTab>
                <telerik:RadTab  Text="<span class='underline'>W</span>ork Address" Width="21%" TabIndex="2" AccessKey="W" ToolTip="Alt+w">
                </telerik:RadTab>
                <telerik:RadTab IsBreak="true" Text="Past <span class='underline'>H</span>istroy" Width="25%" TabIndex="3" AccessKey="H" 
                                   ToolTip="Alt+h">
                </telerik:RadTab>
                <telerik:RadTab Text="Aller<span class='underline'>g</span>ies" Width="22%" TabIndex="4" AccessKey="G" ToolTip="Alt+g">
                </telerik:RadTab>
                <telerik:RadTab Text="Ha<span class='underline'>b</span>its-Immunisation" Width="22%" TabIndex="5" AccessKey="B" 
                                   ToolTip="Alt+m">
                </telerik:RadTab>
                <telerik:RadTab Text="D<span class='underline'>o</span>ctor Details" Width="21%" TabIndex="6" AccessKey="O" ToolTip="Alt+o">
                </telerik:RadTab>
                <telerik:RadTab Text="Roo<span class='underline'>m</span> Allotment" Width="25%" TabIndex="7" AccessKey="M" ToolTip="Alt+m">
                </telerik:RadTab>
            </Tabs>
                                </telerik:RadTabStrip>

Hi

This is Rathan . I palced one radmenu control inside the form ,its showing properly in IE7 ,But not properly align the
 IE8 version like below screenshot and tabcontrol  sourcecode. Please help me for rectify this problem .

Thank u in Advance.

Rathan
Top achievements
Rank 1
 asked on 20 Apr 2012
0 answers
198 views
Hi Support
I need a help for my RadGrid . In this Grid data are comming from data base and it has five hundred of records . So definetly we need paging with Page Size 20 . In this grid we also set Radio Button . In my page there is one telerik treeview control , suppose the one treeview node is select by User that corresponding row should be selected in RadGrid . See the below code , one thing We need not to think anything about of Treeview , because I hadrcoded one node number  which is QuestionNumber in the below code :

protected void SomeButton_Click(object sender, EventArgs e)
{
 int Questionnumber = 100// this number is actually pass through method parameter .

 RadGrid1.Allowpaging = false;
 RadGrid1.ReBind();
 foreach (GridDataItem item in grid1.Items)
 {
  RadioButton btn = (RadioButton)item.FindControl("radiobutton1");
  string value = item.GetDataKeyValue("Questionnumber").ToString(); 
    if( Convert.ToInt32(value) == Questionnumber)
          {
                 btn.checked = true; // see this is mandatory , because Question number is coming from a method which is related to a
// treeview selected node , and that node corresponding row should be selected in RadGrid , here in this button click have nothing to do with
//treeview , so we hard coded the QuestionNumber 100

RadGrid1.CuurentPageIndex = Questionnumber;// here I need to set something like that the selected RadioButton Corresponding
Row or Page should be load . suppose my selected Radio Button row relies in 315 Row number , so show datagrid in such a way that
corresponding page number I mean paging suppose it is 9 th page that page should come in grid rather than starting from page 1
and also radio button should selected with it
          }
 
}
RadGrid1.Allowpaging = true ;
 RadGrid1.PageSize = 20; // If I make this Size my selected Radio button is Not Showing in DataGrid
//and if I make it 100 or above then it is Showing .

RadGrid.ReBind(); //If I make it ReBind then it is my radio button is not showing  selected row in RadGrid .
 
}

This is very important , other wise my telerik control becomes unused. See in aspx page I don't set any
AllowPaging = true .
Pl give me any suggestion pl

One Solution may be , though the grid  may have thousands of records getting from database , so see the paging where the selected row is existing , suppose radiobutton.selected row is in page 5 so start paging and load grid data from 5th page and there is option previous and next paging...something like that , how can I do
DEBAL
Top achievements
Rank 1
 asked on 20 Apr 2012
3 answers
155 views
Here is the code I am trying.How to access datepicker in server validate?
<EditItemTemplate>
                            <telerik:RadDatePicker ID="StartDate" runat="server">
                            </telerik:RadDatePicker
<asp:CustomValidator ControlToValidate="StartDate" ID="CustomValidator2" runat="server"
ErrorMessage="Please select" OnServerValidate="CustomValidator2_ServerValidate"> </asp:CustomValidator>
<EditItemTemplate>
Princy
Top achievements
Rank 2
 answered on 20 Apr 2012
1 answer
95 views
Hello Community


So, in my hosting, when the page is open, many controls for example:


- RadComboBox
- RadMaskedTextField


not working, i need click the action button to working


But the problem not occurs in my  machine , just in the hosting...


I have to make any setting in my host?
Kate
Telerik team
 answered on 20 Apr 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
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?