Telerik Forums
UI for ASP.NET AJAX Forum
6 answers
290 views
Hi,
I am getting other error as "Web.config missing registration."
I followed every instruction on this link  http://www.telerik.com/support/kb/aspnet-ajax/editor/error-web-config-registration-missing-the-telerik-dialogs-require-a-httphandler-registration-in-the-web-config-file.aspx
but no success. pls guide.
Thanks
Amruta
Amruta
Top achievements
Rank 1
 answered on 14 Jul 2011
4 answers
174 views
Hi,

in our project we have problem with grid width: on page load it's ok, here's piece of markup from page source:
<div tabIndex="0" class="RadGrid RadGrid_GreenSF FullWidth" id="ctl00_cphMain_tc1_ctl00_contentArea_ctl00_ctl01_gridClient" _events="[object Object]" control="[object Object]" EmptyDataText="No data" CommandItemDisplay="Top" jQuery1605439695548107272="158">

but after postback it looks like this:

<div tabIndex="0" class="RadGrid RadGrid_GreenSF FullWidth" id="ctl00_cphMain_tc1_ctl00_contentArea_ctl00_ctl01_gridClient" style="width: 682px;" _events="[object Object]" control="[object Object]" EmptyDataText="No data" CommandItemDisplay="Top" jQuery1608745933755360553="158">

I have no idea where this inline style came from, I have not set width for the grid.

As a result, grid occupies not whole width, as FullWidth (width: 100%) prescribes, but instead some part of the page :(

What could be wrong here?

p.s. There is nothing especial with postback, the only note: postback happens from parent page and the grid is situated in iframe page.
Alexander
Top achievements
Rank 1
 answered on 14 Jul 2011
3 answers
124 views
Hi All,

  I have few buttons on my pager template. The buttons disappear when the last record is left. I want  those buttons to appear if I am on the last record. below is my code. i want the Update Record Button and Save Record button on the pager item. How can i achieve this.
<PagerTemplate>
                <table border="0" cellpadding="0" cellspacing="0" style="height: 20px" width="540px">
       <tr >
         <td style="width:10%" >
          
           <asp:ImageButton ID="btnFirst" runat="server" ImageUrl="~/images/PagingFirst.gif" AlternateText="First" CommandName="Page" CommandArgument="First" />
         </td>
         <td style="width:10%">
        
           <asp:ImageButton ID="btnPrev" runat="server" ImageUrl="~/images/PagingPrev.gif" CommandName="Page" CommandArgument="Prev" />
         </td>
         <td style="width:10%">
    
           <asp:ImageButton ID="imgNext" runat="server" ImageUrl="~/images/PagingNext.gif" CommandName="Page" CommandArgument="Next" />
         </td>
         <td style="width:10%">
         
           <asp:ImageButton ID="imgLast" runat="server" ImageUrl="~/images/PagingLast.gif" CommandName="Page" CommandArgument="Last" />
         </td>
              <td style="width:35%"  >
               <asp:Button ID="Btn_UpdateRecord" runat="server" Text="Update Record" OnClick="Btn_UpdateRecord_Click" />
           </td>
                <td  >
               <asp:Button ID="Btn_FinalizeRecord" runat="server" Text="Save Record" OnClick="Btn_FinalizeRecord_Click" />
           </td>
       </tr>
     </table>
   </PagerTemplate>

Thanks for all the help.
Anjali
Top achievements
Rank 1
 answered on 14 Jul 2011
5 answers
384 views
I'm trying to develop an grid that is entirely dynamic - the columns are defined in the code-behind, as a result of a database query.

In insert/edit, some of the columns need to be displayed as dropdown lists - and for some of them the contents of the list are the result of a database query, and for others the content is a fixed set of strings.

Right now, I'm working with the latter, thinking it'd be simpler.  Populating the dropdowns from the database I'll worry about after I get the fixed dropdowns working.

You have a note one one of your pages to the effect that the GridDropDownColumn isn't really intended for use with custom object collections, and that I should consider using a template column.  My understanding is that template columns, when added in code-behind, need to be added in Page_Init() - which would seem to rule them out, as I won't know what columns need to be added that early in the page life-cycle.  So GridDropDownColumn is what I have to work with.

In Page_Load, when !IsPostBack, I use the following code to create the column:

GridDropDownColumn col = new GridDropDownColumn(); 
this.grdRecords.MasterTableView.Columns.Add(col); 
col.DataField = "foobar"
col.UniqueName = "foobar";


And then in OnItemDataBound, I populate the dropdown with:
if (e.Item is GridEditableItem && (e.Item as GridEditableItem).IsInEditMode) 
   GridEditableItem editedItem = e.Item as GridEditableItem; 
   GridEditManager editMan = editedItem.EditManager; 
 
   GridDropDownListColumnEditor editor =  
      editMan.GetColumnEditor("foobar"as GridDropDownListColumnEditor; 
 
   editor.DataSource = new object[] { "FOO""BAR" }; 
   editor.DataBind(); 
}

When I display the grid, the foobar column is blank, though the "FOO" and "BAR" choices show up in the dropdown during edit.

I know the "foobar" DataField is correct, because when I use a GridBoundColumn instead of a GridDropDownColumn, the proper value displays in the grid.  (Though, of course, in the edit form I get a textbox, instead of a dropdown.)

I'm clearly missing something.  What?
Richard
Top achievements
Rank 2
 answered on 14 Jul 2011
2 answers
112 views
Hi,
I am trying to manipulate some controls of a RotatorItem in the ItemDataBound event. However, the e.Item.DataItem seems to be of type XmlDataSourceNodeDescriptor, with which I can't do much since it's a sealed class. I can see all my data there while debugging, but cannot access them. Any idea how? Fo example, I have a simple xml file like this:
<Images>
  <Image>
    <ImageUrl>PICT3345.jpg</ImageUrl>
  </Image>
  <Image>
    <ImageUrl>PICT4357.jpg</ImageUrl>
  </Image>
  <Image>
    <ImageUrl>PICT4479.jpg</ImageUrl>
  </Image>
  <Image>
    <ImageUrl>PICT5344.jpg</ImageUrl>
  </Image>
  <Image>
    <ImageUrl>PICT6294.jpg</ImageUrl>
  </Image>
  <Image>
    <ImageUrl>PICT6356.jpg</ImageUrl>
  </Image>
  <Image>
    <ImageUrl>PICT6898.jpg</ImageUrl>
  </Image>
  <Image>
    <ImageUrl>PICT7276.jpg</ImageUrl>
  </Image>
</Images>

(Obviously) I want to get to the InnerText of ImageUrl but I cannot.

Any help is greatly appreciated!

viktor



Viktor Takacs
Top achievements
Rank 2
 answered on 14 Jul 2011
1 answer
96 views

How can I set the radFilter culture dynamically?

I have radFilter.Main.de-DE.resx along with radFilter.Main.resx

 

But no matter what the culture of the page, it will not read the radFilter.Main.de-DE.resx file unless I explicitly

Set the properties to read that.
does that mean i have to have two web sites - one in english and one in german just to get the filter to read a different resx file?
I tag the page here. i've even got my browser set to german.

 

<%

 

@ Page Language="C#" MasterPageFile="~/NOVDarkBlue.Master" AutoEventWireup="true"

 

 

 

 

 

 

 

CodeBehind="WorkOrdersConsole.aspx.cs" Inherits="NOV.GOLD.WebApp.WorkOrders.WorkOrdersConsole" Culture="auto:en-US" UICulture="auto" %>

and i use a method to set the page culture

 

 

 

protected void InitialzeCulture()

 

{

 

 

string myLang = txtLang.Value;//this is set to de-DE

 

 

 

Thread.CurrentThread.CurrentUICulture = new CultureInfo(myLang);

 

 

 

Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture(myLang);

 

}

rik butcher
Top achievements
Rank 1
 answered on 14 Jul 2011
2 answers
81 views
Hi

Since upgrading to IE8.0.7600 I'm struggling with this stylesheet and it's affect on the RADGRID in IE8. The RADGRID has 2 Buttons on a row which can no longer be clicked, also when clicking to expand the Details table now throws a Javascript error.

The rogue stylesheet class is as follows, it's the width: 948px which seems to be causing the proble, if this is removed the page looks awful because everything is moved but the Buttons and details table work fine. I've tried inserting various z-index entries but without success. 

#container

 

 

 

{

 

 

background: #fff none;

 

 

 

height: 100%;

 

 

 

height: auto !important;

 

 

 

margin: 0 auto -100px;

 

 

 

min-height: 100%;

 

 

 

padding: 0;

 

 

 

text-align: left;

 

 

 

width: 948px;

 

}

 

Steve
Stevent
Top achievements
Rank 1
 answered on 14 Jul 2011
1 answer
120 views
I would like to scroll the tooltip according to the browser scroll, is there any property for that
Marin Bratanov
Telerik team
 answered on 14 Jul 2011
1 answer
198 views
I have a page that has RadToolTips on it.  They are never named the same and their number varies.  I can't seem to find a way to access them from javascript on page load because they seem to be hidden.  I need a collection of all the RadToolTips when the page is ready so I can determine their targetcontrolid's and bind onclick events to the target controls so that when a user clicks or hovers the target control, the tooltip is shown.  Any ideas?
Marin Bratanov
Telerik team
 answered on 14 Jul 2011
2 answers
943 views
I have a grid with EnablePostBackOnRowClick = true and GridClientSelectColumn. The problem is that when I try to select various rows with the checkbox in the GridClientSelectColumn a postback is produced and I cannot check the rows.

Is there any way to avoid the postback when selecting the rows through the GridClientSelectColumn?

Thanks in advance 



Rajiv
Top achievements
Rank 1
 answered on 14 Jul 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?