Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
194 views
Hi Guys!
I have a big problem and i need some body help.
I have a radComboBox load with a concatenated string.
the filter doesn't work within i type a not number 0. i'm waiting some reply to solve my problem. thank's a lot.
protected void loadComboBox() 
{
    try 
    {
        Random rdCombo = new Random();
        this.ComboTest.Items.Clear();
        this.ComboTest.Items.Insert(0, new Telerik.Web.UI.RadComboBoxItem("", ""));
        for(int i = 0; i < 120; i++)
        {
            this.ComboTest.Items.Insert((i + 1), new Telerik.Web.UI.RadComboBoxItem("000" + rdCombo.Next(120) + " - " + "Descrizione " + (i + 1), Convert.ToString((i + 1))));
        }
        this.ComboTest.Filter = Telerik.Web.UI.RadComboBoxFilter.Contains;
        this.ComboTest.Sort = Telerik.Web.UI.RadComboBoxSort.Ascending;
    }
    catch(Exception ex)
    {
        throw ex;
    }
}
Clyde
Top achievements
Rank 1
 answered on 17 Apr 2013
2 answers
179 views
Hi All,

I have Grid with country column here i need to apply filter for this column and also i need to make that filter as Combo Box.
How to bind data for that but not static data.How to implement this?

Thanks in Advance..!
Shinu
Top achievements
Rank 2
 answered on 17 Apr 2013
1 answer
94 views

I am testing the RadDock control out for my company. Are there any demos in which the control is not "ajaxafied". I am incorporating the control into a legacy system having a requirement that all commands use the postback model without any ajax ability. The reason being is we have     <xhtmlConformance mode="Legacy" /> in the web.config , This kills the pagerequestmanager, if there is a work around having this on that would be great, but I havent found one yet. So, I guess I need one of two things


ONE

RadDock which doesnt require the radscript manager using a postback model instead of an AJAX model


OR


TWO

A work around for having the xhtmlConfromance mode set to legacy. 

Dobromir
Telerik team
 answered on 17 Apr 2013
1 answer
168 views
I have read the forums and removed all assemblies , cleared cache and all other thins but I am getting this error still:

RadGrid - RadGrid1System.InvalidCastException: [A]Telerik.Web.UI.RadGrid cannot be cast to
[B]Telerik.Web.UI.RadGrid. Type A originates from 'Telerik.Web.UI, Version=2013.1.403.40,
Culture=neutral, PublicKeyToken=121fae78165ba3d4' in the context 'LoadNeither' at location
'C:\Users\simon.SOUTHGATE\AppData\Local\Microsoft\VisualStudio\11.0\ProjectAssemblies\mxvuxvpg01\Telerik.Web.UI.dll'.
Type B originates from 'Telerik.Web.UI, Version=2013.1.403.40, Culture=neutral, PublicKeyToken=121fae78165ba3d4'
in the context 'LoadNeither' at location 'C:\Users\simon.SOUTHGATE\AppData\Local\Microsoft\VisualStudio\11.0\ProjectAssemblies\b1apdsv701\telerik.web.ui.dll'.
at Telerik.Web.Design.RadGridDesigner.GetDesignTimeHtml(DesignerRegionCollection regions) at System.Web.UI.Design.ControlDesigner.GetViewRendering(ControlDesigner designer)

Can anyone help please!!!!
Eyup
Telerik team
 answered on 17 Apr 2013
2 answers
764 views
Hi Telerik Team,

I was using a radbutton with toggletype set to checkbox and buttontype as standard button, what I am doing is setting the checked property to true server-side, then if I unchecked it on the UI to set the property to false the radbutton checked property is still set to true though I have unchecked it. 

Hope you could help me.

Thanks,
Jeff
Jeff
Top achievements
Rank 1
 answered on 17 Apr 2013
3 answers
186 views

I have a problem editing a HTML form with Telerik Editor using Google Chrome. When I add a button, I can not edit the properties of the button and if I add a submit button, when I click the submit button into the editor (design view) the form is submitted.

Is there a fix for this error ?

To reproduce this strange behavior, simply open the demo editor with Chrome.
http://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx
and add these lines of html code to the bottom of the page (or use the editor tools to add the buttons).

<input style="width: 50px; height: 22px;" type="button" value="Execute" /><br />
<input style="width: 50px; height: 22px;" type="submit" value="Submit" /><br />

then try to click on the buttons in the design view.

Best Regards,
Massimo

Misho
Telerik team
 answered on 17 Apr 2013
3 answers
164 views
I want to bind an async function result to grid's child raddropdownlist while editing but there is no datasource property to bind. How could i do this .Thanks for your help from now.

my result serviceresult func is

void Sclient_ListRolCompleted(object sender, HzgKullaniciService.ListRolCompletedEventArgs e)
       {
           roller = e.Result.ToList<HzgKullaniciService.Kullanici_rol>();
       
       }

i want to bind roller that result of webservice to ddlistroller dropdownlist data source.

<telerik:RadGrid runat="server"
            ID="rgv_yetkiler"
            CellSpacing="0"
            Culture="tr-TR"
            GridLines="None"
            Skin="Metro"
            AutoGenerateColumns="False"
            AllowPaging="True"
            AllowSorting="True"
            AllowAutomaticUpdates="True"
            AllowAutomaticInserts="True"
            ShowStatusBar="True">
 
            <MasterTableView ShowFooter="false" DataKeyNames="ID" EditMode="InPlace" CommandItemDisplay="TopAndBottom">
                <CommandItemSettings ExportToPdfText="Export to PDF"></CommandItemSettings>
                <RowIndicatorColumn Visible="True" FilterControlAltText="Filter RowIndicator column"></RowIndicatorColumn>
                <ExpandCollapseColumn Visible="True" FilterControlAltText="Filter ExpandColumn column"></ExpandCollapseColumn>
                <Columns>
                    <telerik:GridBoundColumn DataField="yetkiadi" HeaderText="Yetki Adı" HeaderStyle-Width="300px" ItemStyle-Width="300px">
                        <ColumnValidationSettings>
                            <ModelErrorMessage Text=""></ModelErrorMessage>
                        </ColumnValidationSettings>
 
                        <HeaderStyle Width="300px"></HeaderStyle>
 
                        <ItemStyle Width="300px"></ItemStyle>
 
 
 
 
                    </telerik:GridBoundColumn>
                    <telerik:GridTemplateColumn HeaderText="Rol" UniqueName="rol" ItemStyle-Width="240px">
                        <ItemTemplate>
                            <%#roller.Where(r=>r.ID==new System.Guid(DataBinder.Eval(Container.DataItem, "rolID").ToString())).First<HzgMainWebApp.HzgKullaniciService.Kullanici_rol>().roladi%>
                        </ItemTemplate>
                        <EditItemTemplate>
                            <telerik:RadDropDownList
                                runat="server"
                                ID="ddlistroller"
                                DataTextField="roladi"
                                DataValueField="ID"
                                SelectedValue='<%#Bind("rolID")%>'
                                 
                                >
                            </telerik:RadDropDownList>
                        </EditItemTemplate>
                        <ItemStyle Width="240px"></ItemStyle>
                    </telerik:GridTemplateColumn>
                    <telerik:GridEditCommandColumn
                        FooterText="EditCommand footer"
                        UniqueName="EditCommandColumn"
                        HeaderText="Düzenle" HeaderStyle-Width="100px"
                        CancelText="İptal"
                        UpdateText="Güncelle">
                        <HeaderStyle Width="100px"></HeaderStyle>
                    </telerik:GridEditCommandColumn>
                </Columns>
                <EditFormSettings>
                    <EditColumn UniqueName="EditCommandColumn1" FilterControlAltText="Filter EditCommandColumn1 column"></EditColumn>
                </EditFormSettings>
                <PagerStyle PageSizeControlType="RadComboBox"></PagerStyle>
            </MasterTableView>
            <PagerStyle PageSizeControlType="RadComboBox"></PagerStyle>
            <FilterMenu EnableImageSprites="False"></FilterMenu>
 
 
 
        </telerik:RadGrid>
Angel Petrov
Telerik team
 answered on 17 Apr 2013
1 answer
73 views
<telerik:RadTreeView ID="RadTreeView1" runat="server" CheckBoxes="True" Width="100%"
          Height="250px">
          <Nodes>
              <telerik:RadTreeNode Text="Personal Folders" Expanded="True">
                  <Nodes>
                      <telerik:RadTreeNode Text="Deleted Items (6)">
                      </telerik:RadTreeNode>
                      <telerik:RadTreeNode Text="Drafts">
                      </telerik:RadTreeNode>
                      <telerik:RadTreeNode Text="Inbox (14)" Expanded="True">
                      </telerik:RadTreeNode>
                      <telerik:RadTreeNode Text="Junk E-mail">
                      </telerik:RadTreeNode>
                      <telerik:RadTreeNode Text="Outbox">
                      </telerik:RadTreeNode>
                      <telerik:RadTreeNode Text="Sent Items">
                      </telerik:RadTreeNode>
                      <telerik:RadTreeNode Text="Search Folders">
                      </telerik:RadTreeNode>
                  </Nodes>
              </telerik:RadTreeNode>
          </Nodes>
</telerik:RadTreeView>
I would love to have the ability of declare DropDownTree structure from markup, similar to other Telerik Controls like RadTreeView.
Peter Filipov
Telerik team
 answered on 17 Apr 2013
1 answer
82 views
Dear Telerik Team,

  I experienced a very strange bug when using RadDatePicker with following settings : Culture="fr-FR" & DateInput-DateFormat="ddd dd MMM yyyy".

  Whatever Tuesday I try to select in april 2013, it automatically select the right day and year but set Month to March.

  Best Regards,
Fabien.

It can be reproduced with IE9 and .Net Framework 3.5 and Telerik releases : 2011.3.1115.35, 2013.1.403.35

here is extract of declaration in .aspx file.

            <telerik:RadDatePicker ID="RadDatePickerMaxDate" runat="server"
                Culture="fr-FR"
                DateInput-DateFormat="ddd dd MMM yyyy"
                AutoPostBackControl="Calendar" 
                AutoPostBack="True"
                >
            </telerik:RadDatePicker>

when used as following, no problem at all :
                <telerik:RadDatePicker ID="RadDatePickerMaxDate" runat="server"
                AutoPostBackControl="Calendar" 
                AutoPostBack="True"
                >
                </telerik:RadDatePicker>

Kostadin
Telerik team
 answered on 17 Apr 2013
4 answers
92 views
Hi,

I have implemented sorting. If my column is not sorted then i want to show an image that particular column is not sorted sorting is available for this column. if its shorted then my default behavior should happen. any one can help me in this.

Regards,
Nithya
Nithya Rani
Top achievements
Rank 1
 answered on 17 Apr 2013
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?