Telerik Forums
UI for ASP.NET AJAX Forum
4 answers
132 views
Dear Friends,

Java Script is disabled in browser, Rad Controls won't working. any other way for working rad controls with out java script enabled.


thanks
-vinoth
Vinoth Arun
Top achievements
Rank 2
 answered on 05 Jan 2012
2 answers
162 views
hi i want to add hiddenvalue with RadTextbox
one of my webpage i m using html input text , i use the name property to add hidden value
mean user couldn't see the value

but in the RadTextbox i couldn't set name property
if i set with Attributes.Add("name", something)
the name property automatcally changed to id

is there any other way to add hiddenvalue related to that particular RadTextbox
Johnny
Top achievements
Rank 2
 answered on 05 Jan 2012
5 answers
84 views
I have a Radgrid with almost 7000 items. So when i click on the export to excel button, it takes quite some time before the file is created and the download message appears.

So i thought on making an loading screen. I've used ajax loading panel. The problem i have is that when i click the export button it triggers the loading panel, but after the download message appears, it stay's "on".... I think it's because the update control (the grid) isn't been updated....

I've search and search, but i can't seem to find a work around this or even an other way to achieve this.

Thanks in advance for the help!
Daniel
Telerik team
 answered on 05 Jan 2012
5 answers
231 views
Every body, please help me.

 I made a (asp.net) UserControl ,  I drag a grid into the usercontrol and rendering this usercontrol in a asp.net page.
Now my question is: I want to export the data from the grid to Excel ,and I follow the instruction within grid help documnet. But I did not see any popup window after I click  the export button.
I use version: RadControls for ASP.NET AJAX Q1 2011
my code snippet here: 

        <MasterTableView Width="100%" CommandItemDisplay="Top">
            <PagerStyle Mode="NextPrevNumericAndAdvanced" />
            <CommandItemSettings ShowExportToExcelButton="true" />
        </MasterTableView>


dominic
Top achievements
Rank 1
 answered on 05 Jan 2012
1 answer
123 views
I have a problem getting this right.

function requestStart(sender, args) {
                currentLoadingPanel = $find("<%= RadAjaxLoadingPanel1.ClientID %>");
                //debugger;
                if (args.get_eventTarget().indexOf("grdTekGrid") >= 0) {
                    currentUpdatedControl = "<%= grdTekGrid.ClientID %>";
                }
 
                if (args.EventTarget.indexOf("ExportToExcelButton") >= 0) {
                    args.EnableAjax = false;
                }
                //show the loading panel over the updated control
                currentLoadingPanel.show(currentUpdatedControl);
            }
 
            function ResponseEnd() {
                //debugger;
                //hide the loading panel and clean up the global variables
                if (currentLoadingPanel != null)
                    currentLoadingPanel.hide(currentUpdatedControl);
                currentUpdatedControl = null;
                currentLoadingPanel = null;
            }

This is the code i've seen in many threads.

The problem here is if i let this stay as it's is, the loading panel just stucks there (the circle does not move, it's "frozen") and after a while pop-ups the prompt open/save excel file. But even after the popup the loading panel doesn't disappear.... 

If i remove this bit:
if (args.EventTarget.indexOf("ExportToExcelButton") >= 0) {
                    args.EnableAjax = false;
                }

The loading panel works great, but instead of being prompt to open/save the file, the contents of the table that is created is loaded/pasted in the grid itself....

Thanks in advance for all the help
Princy
Top achievements
Rank 2
 answered on 05 Jan 2012
5 answers
476 views
Hi I am working with RadTooltipManager control. i am using the position as "BottomRight". it's working fine at the top of the page   onmouseover  event of the some text. But at the bottom of the page it's not showing properly like showing somewhere on the page instead of Bottom of the selected position. Please let me know what's the wrong with this code.
<telerik:RadToolTipManager runat="server" ID="RadToolTipManager1" Position="BottomRight" onajaxupdate="OnAjaxUpdate" ShowEvent="OnMouseOver" Visible="false" Skin ="Outlook" ManualClose="true" Height="220px" Width="220px" RelativeTo="Element" ></telerik:RadToolTipManager>

Thanks in Advance,
Chinna..

Princy
Top achievements
Rank 2
 answered on 05 Jan 2012
1 answer
110 views

The grid has grouping and hierarchy. When the grid is loaded initiially, all hierarchy rows are collapsed.  When a grid group is collapsed and then expanded, all hierarchy rows get expanded. I don't see any configuration changes to stop it. Some of the related markup:

<MasterTableView HierarchyLoadMode="Client" HierarchyDefaultExpanded="false"  
GroupLoadMode="Client">
 ExpandCollapseColumn Visible="True">
 </ExpandCollapseColumn>

Shinu
Top achievements
Rank 2
 answered on 05 Jan 2012
2 answers
72 views
The more items you add to a grid the longer it takes to invoke a GridButtonColumn event is there some means to ensure that the button does a postback without posting back the entire grid??
Timothy
Top achievements
Rank 1
 answered on 05 Jan 2012
3 answers
337 views
Running VS2010 (SP1) using the latest Telerix Q3 2011 controls, ASP.NET version 4, AjaxControltoolkit version 4 on a Windows 2008 R2 installation.
I am using a web service:-
   [ScriptService]
   [WebService(Namespace = "http://tempuri.org/")]
   [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
   public class PS_AdminWebInterface : System.Web.Services.WebService
   {
      [WebMethod(EnableSession = true)]
      public string[] GetSessionString(string sessionKey)
      {
         string[] results = new string[2];
         results[0] = sessionKey;
         try
         {
            if (Session["ClientID"].ToString() == "0")            //Logged in users only
            {
               results[1] = "";
               Session["ErrorOccurred"] = true;
            }
            else if (Session[sessionKey] == null)       //Does key exist
            {
               results[1] = "";
               Session["ErrorOccurred"] = true;
            }
            else
               results[1] = Session[sessionKey].ToString();
         }
         catch
         {
            results[1] = "";
         }
         return results;
      }
}

I have debugged the web service call and it is definitely being called and no exception is raised - however the javascript call :-
PlumSoftware.PS_AdminWebInterface.GetSessionString(ps_interface_sessionKey, GetSessionString, OnTimeOut, OnServiceError);

fails in the following function:-
function GetSessionString(result)
{
   if (result[1] != "0")
   {          //Data changed
      ps_interface_keepalive = 0; //Reset keepalive
      __doPostBack(ps_interface_postbackcontrol.value, result[1]);
   }
}

the result returned is always null

I have spent a few hours looking through your forums but have found no clues as to why this would be happening.
Timothy
Top achievements
Rank 1
 answered on 05 Jan 2012
2 answers
108 views
I have 2 VB projects one for the web application and the second is a library class project that include embb resources.

I have created a composite control which combine RadControls and ASP controls. This control finds the RadScriptManager and add a script reference of java script file using its assembly name and file name (i.e. assembleyname.filename.js). As long the JS file in located in the project's root directory, it works well, but when I move the JS file ot another directory (and update the AssemplyInfo file as well i.e. assemblyname.directoryZ.directoryY.filename.js ) the RadScriptManager cannot find it.


BTW, it work fine when I have a composite control of ASP server controls use ASP Script Manager to upload embb javascripts

Any idea what is the problem ?




Avidan
Top achievements
Rank 1
 answered on 04 Jan 2012
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?