Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
99 views
I have a ribbon bar and some javascript that handles resizing the width of the page.

My ribbon bar as a number of groups on it and it will automatically collapse the groups starting from the right hand side, normally this is not a problem and it all works well, except if the last group is a template, it will just remove the complete group!!

What would be nice is having the ability to assign a collapse order on the groups, so that groups with an order of 1 are collapsed before those with an order of 2 etc.... 

Or is there some way that i can do this now ? That is, some way other than code it completely by hand in my resize function
Ivan Zhekov
Telerik team
 answered on 17 Apr 2013
1 answer
62 views
Hi,

I know that the documentation says that for resource grouped views you need to do a postback to get the necessary html. I tried to code around this shortcoming by populating the view with all the available resources and then hide/show the columns for the resources that the user does not want to see.

This works until the user decides to drag or resize an appointment, then I receive javascript errors. Would there be any way I can get this to work? If needed I can create a sample that demonstrates this use case.
Plamen
Telerik team
 answered on 17 Apr 2013
2 answers
71 views
I am currently using Q3 2012

Is it OK to upgrade to Q1 2013 SP1?

Early on I saw a lot of posts regarding issues with buttons, masters pages, etc. 
Before Q1 2013 I was upgrading as soon as the upgrade was available. I am a little more cautious now.
I could really use the new features of async upload like pause and resume provided they work and I do not have to make too many changes to an existing project. 

Marty
moegal
Top achievements
Rank 1
 answered on 17 Apr 2013
2 answers
202 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
183 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
96 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
176 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
770 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
189 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
171 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
Narrow your results
Selected tags
Tags
+? more
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?