Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
46 views
Use example from http://www.telerik.com/help/aspnet-ajax/tabstrip-multipage-integrate-with-tabstrip.html

After opening 3d tab in ie, 1st tab will never show again.
Dimitar Terziev
Telerik team
 answered on 30 Apr 2012
1 answer
77 views
I have a nested grid.

In the child grid 
i have settings like below.

 <PagerStyle Mode="NextPrevNumericAndAdvanced" Wrap="false"  Position="TopAndBottom"
                                    PageButtonCount="5" />

now the pager style are missing.Please see the attachment file.




Pavlina
Telerik team
 answered on 30 Apr 2012
1 answer
96 views
Hi Everybody,

  I am using Rad controls for asp.net ajax version (DLL Version : 2008.3.1314.35) 

  I have created a grid with checkbox column. 

  i want to check the checkbox using javascript, using rowid and column unique name.

  i am trying to do that in a user defined javascript function, lets say i have an array of row id and another with column unique name.

    for instance i want to do like the below code block.

    function UDFCheckboxChecker()
    {
         var a="1,2,3,4,5";
         var arrayRowid= a.split(',');    
         var b="java,c++,c#,asp,php"
         var arrayColumnUniqueName=b.split(',')
 
         var grid =//get the grid.
           
        //loop through each element in the array arrayRowid 
         for(var i=0;i<arrayRowid.length;i++)
         {
                var rowretreived =//get the radgrid row with row id arrayRowid[i] 
               var cell = get the cell with uniquename arrayColumnUniqueName[i] from the grid using rowretreived  
                cell checked=true or false. // check or uncheck the retreived cell(checkbox column)
         }         
    }
   I know how to do this is itemdatabound or using a boolean datatype and bind the data,
 
   My requirement is to loop the grid rows in client side and get the checkboxcolumn in specific columns and check/uncheck it,
   like what i have explained in the above code skeleton.

   is it possible to do so?
  any one please give me a solution.

Thank You,
Jayesh Goyani
Top achievements
Rank 2
 answered on 30 Apr 2012
1 answer
109 views
Would it be possible to add exception handling to the next version of the Web parts? It seems the exceptions are not caught, logged, and displayed properly. For example, enter a bad exchange calendar in the scheduler Web part and you get the normal asp.net error and the page becomes broken. This type of problem occurs for all the Web parts. Please, please make then user friendly.

Kalina
Telerik team
 answered on 30 Apr 2012
1 answer
59 views
I  have a screenset with multiple radtab panels. On the first panel I have a raddatepicker. I'm using telerik version: 2012, 1, 411, 35 and IE9.0.8112

When I open the screenset with all the tabpanels, it works fine the first time because tab panel #1 is loaded first. If I go to tabpanel #2 and then reload the control by opening the screen using a menu item, it loads the last panel I was on, for instance panel #2. If I click on panel #1 that contains the datepicker, the datepicker is  now munged. I'm assuming because it wasn't loaded first.

There is nothing in there that's loaded or not loaded either way, so I don't know what the difference is.

I didn't notice this until today, after upgrading to 2012,1,411,35. But I can't be certain.

Also, I have a nearly identical tabpanel for a different set of tables that this never occurs on, but it only has 5 tab panels, and the one I'm having problems with has 8 tab panels.

I'm attaching my screenshot.

Thanks!




Vasil
Telerik team
 answered on 30 Apr 2012
1 answer
66 views
Hello everyone ,

I have problem in radupload control that is File Type casesensive means (Allow Fileextension : docx,pdf,gif) but DOCX,PDF,GIF can't upload. So change the small letter can upload. How can I solve this issue. Urgently.

I am really appreciate your help. Thanks for your time.
 now we are using Version=3.5.0.0,
Shinu
Top achievements
Rank 2
 answered on 30 Apr 2012
2 answers
396 views
Hi everyone,

I have a radgrid which is created enitrely within the code behind. I have enabled grouping which works (sort of - minimising the group doesn't currently work although the page is refreshing), however each group's header text defaults to the following format:

[Grid ColumnName]: [BoundDataField value]

One of my columns contains an image determined by the underlying data - which doesn't necessarily make sense to the users and contains capital letters and underscores. Screenshot attached. Is there a way of intercepting this and changing the text?

Thanks

Mark
MarkSci
Top achievements
Rank 1
 answered on 30 Apr 2012
1 answer
85 views
i'm trying to have a ajax accordion panel like behavior in RadPanelbar but collapse Expand is not working.plz help

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2" %>


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">


<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>


</head>
<body>
    <form id="form1" runat="server">
    <telerik:RadScriptManager ID="RadScriptManager1" runat="server">
    </telerik:RadScriptManager>
    <div>
    
    </div>
    </form>
</body>


   <telerik:RadPanelBar ID="RadPanelBar1" runat="server">
   <Items>
       <telerik:RadPanelItem Text="Standard Reports">
          <Items>
              <telerik:RadPanelItem>
                 <ItemTemplate>
                     ... Standard HTML Template code here ...
                 </ItemTemplate>
              </telerik:RadPanelItem>
          </Items>
       </telerik:RadPanelItem>
       <telerik:RadPanelItem runat="server" Text="Standard Reports">
           <Items>
               <telerik:RadPanelItem runat="server" Text="Child RadPanelItem 1">
                <ItemTemplate>
                     ... Standard HTML Template code here ...
                 </ItemTemplate>
               </telerik:RadPanelItem>
           </Items>
       </telerik:RadPanelItem>
   </Items>
</telerik:RadPanelBar>
</html>

 
Chamara
Top achievements
Rank 1
 answered on 30 Apr 2012
1 answer
257 views
Hi,
When i enter a value in rad numeric text box in my site page, it display in normal font, and when changes the focus from this control, it's font changes to bold.
In my css class, in order to change the font weight of span to bold, i have declared as below
span
 {
    font-family:Verdana;
    font-size:8pt;    
    font-weight:bold;
 }
when changing the font-weight to normal, the numeric text box's value doesn't changes to bold when focus lost.
( but the font weight can't be changed to normal since it is mandatory for all span in the site.)
how can we fix this issue?


Thanks
jiju
Vasil
Telerik team
 answered on 30 Apr 2012
0 answers
79 views
Hello,

I have created a page with example from http://demos.telerik.com/aspnet-ajax/tabstrip/examples/applicationscenarios/loadondemand/defaultcs.aspx. I am using RadGrid in tab pages and couple of page have clickable icons. Clicking these icons calls RadWindow, which refreshes the tab/grid. I have couple of problems

1. Javascript function called is expected in the first tab as opposed to the selected tab. To work around this problem I have added the same Javascript function in all tabs.
2. Closing the RadWindow updates the grid but again it is the same problem, the update function of the first tab is called as opposed to the selected tab. This is causing us major problem as our project is going live next week.

I have following scenario in my application

1. jobauthorisation.aspx -> Main page containing Multipage and Tabstrip. I have logic in the OnLoad function to set the first tab based on how user arrived on this page.This page adds tabs.
 
2. jobauthorisationauthorised.ascx, jobauthorisationawaiting.ascx, jobauthorisationawaitingresponse.ascx and jobauthorisationresponsereceived.ascx tab pages with JavaScript functions to call RadWindow and refresh grid - the same functions are copied in all pages to work around the problem of JS functions being called from the first tab

Steps to reproduce the problem are

1. Load the page with A, B, C and D tabs added in this order
2. Select the tab B, click on one of the images to open RadWindow. If the called function is not defined in tab A then gets scripting error. To workaround I have added the same function to tab A.
3. Click the Send button of RadWindow should call function in tab B. However it calls the function in tab A causing tab A to refresh the data but tab B does not get refreshed. I added alert in the Javascript function of tab A to prove it.

Please go through the code and let me know what I am doing wrong. 
Neetu
Top achievements
Rank 1
 asked on 30 Apr 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?