Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
817 views
I m using the filter option in radgrid to filter some data on basis of the option selected in dropedown menu. Now on changing the dropdown value and clicking on submit button, my filter expression test is still there and the data gets filtered. How do I remove the filter in the text box.
Please help!
Thanks in advance.
Pramod
Top achievements
Rank 1
 answered on 06 Mar 2015
2 answers
89 views
I originally coded two buttons via C# to appear on page load inside a rad menu item which originally contained a radcombobox and two input items:
    <telerik:RadMenuItem runat="server" Value="WorkspaceMenuItems">
                        <ItemTemplate>
                            <telerik:RadComboBox ID="ComboBoxViews" runat="server"/>
                            <input type="button" value="Create View" />
                            <input type="button" value="Manage Views"/>
                        </ItemTemplate>
                    </telerik:RadMenuItem>

My question I guess is how can I use placeholders inside a radmenuitem ?, the way I have it is like so:

var menu = ((RadMenu)Master.FindControl("MenuMaster")).FindItemByValue("WorkspaceMenuItems");
        menu.Controls.Add(exportAcfps);
        menu.Controls.Add(exportAvails);

However the thing I don't like is that on the webpage the buttons added show too near eachother, not like the ones originally placed there. I included picture...is there a way to go about it using placeholders or is there another easy way ?"? thanks!!!!
Andrey
Top achievements
Rank 1
 answered on 06 Mar 2015
1 answer
227 views
I use "Silk" form  (Skin="Silk")
If I want to change the size of word, where can i set?
Ivan Danchev
Telerik team
 answered on 06 Mar 2015
16 answers
631 views
Hi.

I have a set of tabs pointing to RadPageViews, with each RadPageView containing a usercontrol.  This doesn't work at all; as soon as the usercontrol is added into the RadPageView content, the tabs no longer work.  How can I load my usercontrols into my RadPageViews?  Can this not be done declaratively?

Craig
Marin Bratanov
Telerik team
 answered on 06 Mar 2015
2 answers
182 views
Hi,

Currently I have a RadGrid that allows me to user a usercontrol to add and edit. My only issue now is that I need the usercontrol to return an object to the page holding the RadGrid. To do this I have created a custom event handler in the usercontrol. At time of edit or insert I assign a local method to the event:

if (e.Item.IsInEditMode)
{
    GridEditFormItem editItem = e.Item as GridEditFormItem;
 
    object EditControl = e.Item.FindControl(GridEditFormInsertItem.EditFormUserControlID);
    if (EditControl is ValanceProfileCoilLength)
    {
        ValanceProfileCoilLength CL = (ValanceProfileCoilLength)EditControl;
        CL.ItemInserted += new ValanceProfileCoilLength.ItemInsertedEventHandler(CL_ItemInserted);
        REC_ValanceProfileCoilLength ACL;
        if (e.Item.ItemIndex >= 0) ACL = this.VP.ActiveCoilLengths[e.Item.ItemIndex];
        else ACL = new REC_ValanceProfileCoilLength(null, this.ConnString);
         
        CL.Show(ACL);
    }
}


This only good to get the event attached but since the content is dynamic I have to re-attach the method to the ItemInserted event. I can successfully re-attach the method to the event when in insert mode at page_load but I cannot achieve this in edit mode. See code (comments inside to explain the point of failure)

protected void Page_Load(object sender, EventArgs e)
{
    // Re-attach method to events in EditForm UserControls
    // Insert EditForm
    if (this.grdCoilLengths.MasterTableView.IsItemInserted)
    {
        object EditForm = this.grdCoilLengths.MasterTableView.GetInsertItem().FindControl("EditFormControl");
        ValanceProfileCoilLength CL = (ValanceProfileCoilLength)EditForm;
        CL.ItemInserted += new ValanceProfileCoilLength.ItemInsertedEventHandler(CL_ItemInserted);  // <-- This works when in insert mode
    }
 
    // Edit EditForm (Only one edit form allowed at once)
    if (this.grdCoilLengths.EditItems.Count > 0)
    {
        object EditControl = this.grdCoilLengths.EditItems[0].FindControl(GridEditFormInsertItem.EditFormUserControlID); // <-- This returns null when in edit mode
        if (EditControl is ValanceProfileCoilLength)
        {
            ValanceProfileCoilLength CL = (ValanceProfileCoilLength)EditControl;
            CL.ItemInserted += new ValanceProfileCoilLength.ItemInsertedEventHandler(CL_ItemInserted);
        }               
    }
}






Gerry
Top achievements
Rank 1
 answered on 06 Mar 2015
7 answers
271 views
Hi today we noticed we are having a bunch of issue with the latest radasyncupload component.  We launched a site today by zipping it up, moving it to the live server, unzipping and setting up IIS the same was as on the dev server.  When we try to upload to the live site we get a yellow blinking dot on all uploads.  I checked folder permissions and they are set correctly.  The error I am seeing is as follows:

TypeError: f.fileInfo is undefined

This is a problem on a number of sites.

Jon
John
Top achievements
Rank 1
 answered on 06 Mar 2015
4 answers
95 views
Hi Team,
I implemented the autocomplete in the telerik Grid. It works perfect in Firefox and Chrome. But in IE there is late or delay in binding. As soon as we click cell having autocompleted implemented in the grid. It does not binds immediately. It there any workaround we need to implement in case of IE's


Thanks & Regards
Hristo Valyavicharski
Telerik team
 answered on 06 Mar 2015
1 answer
80 views
Hi,

Something is causing my RadWindow to display with strange little boxes on the bottom of it(see attachment). The Webform display fine when loaded by itself. The problem occurs when I display it from the parent. Any suggestions?
Marin Bratanov
Telerik team
 answered on 06 Mar 2015
1 answer
74 views
If I have a radwindow and want it to appear over the top of a PDF file that is embedded in the page using an iframe, there can be problems getting the radwindow to appear over the top of the PDF. It normally appears behind it in IE11 but above it in Chrome.
I discovered that the setting overlay="true" solves the problem for the radwindow itself, but it does not solve the problem for the modalising grey area. The grey area still shows behind the PDF, which looks a bit weird.
Is there a way to fix this?
Marin Bratanov
Telerik team
 answered on 06 Mar 2015
1 answer
44 views
Hi there,

I do get a JS alert while navigating through my scheduler. What does that mean?
it's attached.
thank you
Hristo Valyavicharski
Telerik team
 answered on 06 Mar 2015
Narrow your results
Selected tags
Tags
+? more
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?