Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
62 views
Hi ,

I need to drag an item from RadTreeView and place it in the group Panel of a radgrid in RadTreeView1_NodeDrop event  and grouping should be done accordingly . I am binding the Columns dynamically to the radgrid not in design time . Could you please send me a sample for this?

My requirement is same as : http://www.telerik.com/community/forums/aspnet-ajax/ajax/drag-columns-to-grid-group-panel-and-grid-separetly.aspx


Regards
Radhika

Marin
Telerik team
 answered on 27 Oct 2011
1 answer
62 views
Hi,

I am newbie. I have used RadTabStrip having more than five tabs in it, and pageview control as many tabs are. The question is, could I do something like create separate or sub class for each pageview and assign different panel within that classes respectively and then on the main page I just create an object of that class and attached it with RADTABSTRIP (MultiPage).

Actually, I did such a things in Java, i.e. create JInternalFrames in separate class and call them into main class, but could I use same approach with ASP.NET and RADTRAPSTRIP or should I have to initialize all the components on the same page, or if you have any better suggestion regarding this then please let me know.

Regards and Thanking in Advance.

M.A.Bamboat
Peter
Telerik team
 answered on 27 Oct 2011
2 answers
769 views
Hi,
how to check that at least one item is selected in a RadComboBox? My RadComboBox allows just single selection and I want to check that user has selected one item which is needed for next/related user input control (RadListBox) will be loaded with data (from code behind). Meaning I will check that at least one item is selected from code behind method RadComboBox_SelectedIndexChanged and if one item is checked load data into next/related RadListBox.

Why isn't there a method RadComboBox.SelectedItems.Count as there is for example RadListBox?

I have EmptyMessage set to '--- Select ---' in RadComboBox. Can I use this in some way?

Rgds,
Jesper 
Jesper
Top achievements
Rank 1
 answered on 27 Oct 2011
3 answers
236 views
I'm using the ScriptManager and StyleSheetManager controls to combine multiple JS and CSS files into 1 request.  That all works as expected when the JS and CSS files are static content files bundled with the deployment.

However, I would like to start using the same technique to include dynamic JS and CSS content that is generated by the server.  Think of it like including an ASPX page as one of the StyleSheetReference objects (although I tried this and it doesn't work by default).

Does anyone know how to do this?

Thanks,
Kevin
Simon
Telerik team
 answered on 27 Oct 2011
6 answers
231 views
Hi,

I have added the code below to the ItemDataBound event of a grid for which I want users to be able to select 100 as the Page Size. This works, but now I find that when I select this new item the grid does not do a postback and refresh. Could you please advise?

Thanks
Chris

            if (e.Item is GridPagerItem)
            {
                RadComboBox PageSizeCombo = (RadComboBox)e.Item.FindControl("PageSizeComboBox");
                RadComboBoxItem extraItem = new RadComboBoxItem("100", "100");

                if (!PageSizeCombo.Items.Contains(extraItem))
                {
                    PageSizeCombo.Items.Add(extraItem);
                }
            }
Princy
Top achievements
Rank 2
 answered on 27 Oct 2011
3 answers
108 views
Do the AJAX controls have an equivalent to the silverlight speedometer? I would like to create one, but I don't own the silverlight controls and frankly, since microsoft is moving toward html5, I don't want to require my users to have silverlight to see this page. Is there any ajax equivalent? Either a straight up speedometer, or some other control that could work in a similar function? I really only need a static speedometer i.e. I would set a min and max value, and then fill it either with a color, or move a pointer to the appropriate spot within that speedometer. It would not need to be dynamic. Any ideas?
Sebastian
Telerik team
 answered on 27 Oct 2011
1 answer
172 views
Hello!

I got a question for exporting to excel:
How can I either show all the filter values including the filtertemplete value in exported excel or hide the filter row in the excel?

I have the allowfiltering=true in the grid which uses some common filters and one custom filters ( from date to date with datepickers).

Now the filtered values in common filters show but the custom filter always only show "from" and "to" words.

I try to use allowfilteing=false then the records show all the data without filter.

If I keey all the filters value but I can't get the  two date values in filtertemplete to show in the excel.

Please tell me how to do it. Thanks.

Amy
Mira
Telerik team
 answered on 27 Oct 2011
1 answer
225 views

I get this error every time I try to load a page

'~/Telerik.Web.UI.WebResource.axd' is missing in web.config. RadScriptManager requires a HttpHandler registration in web.config. Please, use the control Smart Tag to add the handler automatically, or see the help for more information: Controls > RadScriptManager


I am confused where to go from here I tried adding it manually in the web.config file. Didn't work. I don't see smart tag. I am just very confused by this,
Shinu
Top achievements
Rank 2
 answered on 27 Oct 2011
1 answer
131 views
Hi All,

Should be the most obvious thing in the world, but I'm failing miserably to find any documentation telling me how to do this.
I have a RadTabStrip which is connected to a RadMultiPage with 4 page views (each page view has a contenturl associated with it).
I've got a RadAjaxLoadingPanel and have set the RadAjaxManager to this:

 <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
            <AjaxSettings>
            <telerik:AjaxSetting AjaxControlID="RadTabStrip1">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="RadMultiPage1" LoadingPanelID="RadAjaxLoadingPanel1" />
                </UpdatedControls>
            </telerik:AjaxSetting>                       
        </AjaxSettings>
 </telerik:RadAjaxManager>

This displays the LoadingPanel briefly then it disappears and I'm left with a blank area (MultiPage) until the contenturl has loaded. Obviously the desired behaviour would be to display the LoadingPanel until the contenturl page has completed loading.
Any help with this would be appreciated. I thought about manually invoking the LoadingPanel but I can't work out how to detect and passback when the contentURL page has completed loading? (not the contenturl is another page in the project not an external url).

Cheers,
- Will Kruss
Dimitar Terziev
Telerik team
 answered on 27 Oct 2011
8 answers
199 views
Hi,
When I try use RadAsyncUpload to upload file with sample code form your demo(http://demos.telerik.com/aspnet-ajax/upload/examples/async/imageuploader/defaultcs.aspx?product=asyncupload) on the Azure emulator. I got an exception NotFound second time upload.

Oh, one more information. If I direct access handler.aspx after site startup. I  will got "RadAsyncUpload handler is registered succesfully, however, it may not be accessed directly."  But another exception at below in handler.ashx after first file uploaded.

Value cannot be null.
Parameter name: input

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.ArgumentNullException: Value cannot be null.
Parameter name: input

Source Error:

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

Stack Trace:

[ArgumentNullException: Value cannot be null.
Parameter name: input]
   System.Web.Script.Serialization.JavaScriptSerializer.Deserialize(String input) +947910

[TargetInvocationException: Exception has been thrown by the target of an invocation.]
   System.RuntimeMethodHandle._InvokeMethodFast(IRuntimeMethodInfo method, Object target, Object[] arguments, SignatureStruct& sig, MethodAttributes methodAttributes, RuntimeType typeOwner) +0
   System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture, Boolean skipVisibilityChecks) +640
   System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) +38
   Telerik.Web.UI.AsyncUpload.SerializationService.Deserialize(String obj, Type type) +273
   Telerik.Web.UI.AsyncUploadHandler.HandleChunkUploadRequest(String serializedMetaData) +41
   System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +625
   System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +270


Any Idea for this?
Eric
Top achievements
Rank 1
 answered on 27 Oct 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Top achievements
Rank 1
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ivory
Top achievements
Rank 1
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
YF
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Top achievements
Rank 1
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ivory
Top achievements
Rank 1
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
YF
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?