Telerik Forums
UI for ASP.NET AJAX Forum
0 answers
168 views

To provide better File Upload experience and usability, starting from Q3 2012, RadAsyncUpload is enabled out-of-the box in RadEditor's File Browser dialogs. Therefore the handler for the AsyncUpload should be registered in the web.config explicitly:

<httpHandlers>
    <add path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler" verb="*" validate="false" />
    <add path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" validate="false" />
</httpHandlers>
 ...
<handlers>
    <add name="Telerik_Web_UI_DialogHandler_aspx" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler" />
    <add name="Telerik_Web_UI_WebResource_axd" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" />
</handlers>

If the Telerik.Web.UI.WebResource.axd handler is not registered AsyncUpload will not function correctly and the File Browser (ImageManager, DocumentManager, MediaManager, etc) dialogs will look in a similar way:

Both Telerik.Web.UI.DialogHandler.aspx and Telerik.Web.UI.WebResource.axd handlers can be registered in the web.config file via the RadEditor's smart tag.
Telerik Admin
Top achievements
Rank 1
Iron
 asked on 15 Nov 2012
3 answers
261 views
Hello,
I am trying to do reports using HtmlCharts. When i tried to do sample one i  got this Build Error like

"Unknown server tag 'telerik:RadHtmlChart'."
I using "2011.2.915.40" version Telerik dll. If i need to use Update dll,can u please help me,how i can find that.

Thanking You,
N.Vishnu Vardhan Reddy
Marin Bratanov
Telerik team
 answered on 15 Nov 2012
4 answers
245 views
Hi,

       In my page I have to popup the radconfirm on a button click.  Depends upon the value return by radconfirm I have to perform some actions that is if it is false or null  then cancel the click event action. If it is true then I donot perform no operation because  i have written the server side button click event handling function so it will call. My problem is if i click button radconfirm is popuped and it doesnt wait for  the value return by the radconfirm it postbacks and perform the server side action.

I checked the documentation in  following tutorial
http://demos.telerik.com/aspnet-ajax/window/examples/confirmserverclicks/defaultcs.aspx,

In this they are using ASP button  but I have to use radbutton. Please give a solution for this.

Thanks
Velkumar.
Marin Bratanov
Telerik team
 answered on 15 Nov 2012
1 answer
326 views
Trying to update RadGrid with the following SQL update command along with this sql select statement.  The table I am updating to has 1 column named "Contactnum" which contains contact #'s and a column "Priority" which lists the Priority as 1,2, or 3.  In my update statement, I need to know how to add the Contactnum2 & Contactnum3 and the Priority 2 and 3 to the update statement.
DECLARE @ContactNum  NVARCHAR(50)
SET @ContactNum = '555-5555 Office'
DECLARE @Priority int
SET @Priority = 1
UPDATE Physician_Contacts
SET ContactNum = @ContactNum
From Physician_Contacts
WHERE Priority = @Priority
SELECT A.Phys_Name, E.Specialty, A.Clinic, A.Office_No, A.Residence_No, A.Fax_no, A.Beeper_note,
                    b.ContactNum, c.ContactNum as Contactnum2,  d.ContactNum as Contactnum3
                    FROM PhysicianMainList as A
                    left join Physician_Contacts as B on A.Phys_Staff_ID = B.Phys_Staff_ID and b.priority = 1
                    left join Physician_Contacts as C on A.Phys_Staff_ID = C.Phys_Staff_ID and c.priority = 2
                    left join Physician_Contacts as D on A.Phys_Staff_ID = D.Phys_Staff_ID and d.priority = 3
                    left join WTH_Specialties as E on E.abbr = A.Specialty                   
                    ORDER BY A.Phys_Name
Eyup
Telerik team
 answered on 15 Nov 2012
5 answers
83 views
In Firefox / Safari / Chrome (all non IE browsers), IF we have the new Comments feature enabled, it will bypass the Browser Context Menus and only show the Commenting feature.

In IE, all RADeditor, and Browser Content Menu's appear. I understand this is not possible to duplicate on Firefox and Safari, but I would still like the ability to correct spelling errors by allowing the default browser context menu for Firefox/Safari/Chrome.

Is there a way we can enable the default browser content menu for the other non IE browser, but still retain the RADEditor context menu for other elements (like right clicking images, tables, links, etc...)?

Nikolay
Telerik team
 answered on 15 Nov 2012
4 answers
73 views
Hello,

we use the RadGrid and translate it via ressource files. Strangely not all texts are translated, most of the times the header right-click menu (for grouping, hide columns etc.) is translated but the filter strings (contains, between, equal etc.) are not. Those texts are taken from the default ressource file instead. Even more strange: for one of our grid instances those filter texts are translated...

Anything we might be missing?

Regards
Chris
Pavlina
Telerik team
 answered on 15 Nov 2012
3 answers
413 views
Good day,

we have a working radgrid that shows an unusual behavior.
The grid works as expected, but after entering editmode, pressing the enter key alone will display the default radgrid filter menu, on the top left corner of the containing div (where there's no grid columns)

We've noticed that this seems related to control focus: after sorting the grid with a column header click, pressing enter after edit mode, will exit edit mode as expected, without displaying the default filter menu, and updating the record.

We'd like to know where and how this filter menu enter key is listened to, especially since we have a different grid, where this does not happen (it's in a page with a form view, while the troublesome one is just a grid).

Do note that we've successfully 'solved' this by intercepting the FilterMenuShowing event, but we believe there's a behavior problem that we'd like to pinpoint.

Thanks.
Eyup
Telerik team
 answered on 15 Nov 2012
1 answer
68 views
Could anyone tell me which Telerik control is used for the pull-down 'Show Cart Info' box on this page please?

http://demos.telerik.com/aspnet-ajax/ecommercestore/categoryview.aspx?Category=26234

Is it the menu control?

Thanks.
Ivan Zhekov
Telerik team
 answered on 15 Nov 2012
1 answer
60 views
I have no idea how to even describe this so I'm attaching a screen shot.  

For the most part I've had no problem positioning Rad controls since they're either virtually the only item on the screen (i.e. RadGrid) or I've put them in a table.  

But by themselves on a template or a blank screen they seem to be accompanied by a 'blue box', and if I try to re-position them I sometimes get negative x-y values.  (And the blue box itself doesn't seem to do anything...)

Could there be a problem with my Visual Studio 2012 setup?
Slav
Telerik team
 answered on 15 Nov 2012
1 answer
107 views
Hi,
I've two RadButton in my page, the first button using async postback to rebind a RadGrid and enable the second radButton.

I've used RadAjaxManager to do this, when press the button, radgrid and radbutton are updated as well, but the second button starts to do async postback..

How can i solve it?
Thanks

Maria Ilieva
Telerik team
 answered on 15 Nov 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?