Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
148 views
Hi,

I had rad binary image working fine on my testing server.  However, when I uploaded my project to the production web server all of the images are broken.  Images in grids, images in datalists, stand alone images, everything.  I have  my web.config file configured properly.  I rebuilt the solution multiple times.

What's really odd is that other than the root of the url address (http:\\localhost\ vs. http:\\mywebsite.com) the images have identical url addresses when viewing in Firebug.  The production server's though are broken.  Even the auto resizing is correct.  But no image.

Is there any reason why this would happen?  Stumped

joe
Rosen
Telerik team
 answered on 09 Mar 2010
1 answer
113 views

Hi ,

i have created one dynaic rad grid through code and its columns are also dynamic depends on grid type request.
now i need to add terelik validation in columns == textbox and if user add records without enter data in textbox the validation fires.

please suggest.
Princy
Top achievements
Rank 2
 answered on 09 Mar 2010
1 answer
351 views
I have a RadGrid that is setup to use the InLine edit mode.  He is snippet of code containing the GridDropDownColumn.

<telerik:GridDropDownColumn DataField="BreakTypCd" ListDataMember="BreakTyp" 
                            HeaderText="Break Type" ListTextField="Descript" ListValueField="BreakTypCd" 
                            UniqueName="BreakTyp" ColumnEditorID="GridDropDownColumnEditor1">  
</telerik:GridDropDownColumn> 

When I enter Edit mode, I would like a SelectedIndex event fired.  This will allow me to update other item on the row.  I don't see any events in the GridDropDownColumn properties list.

Any thoughts on how I get an event to fire?

Thanks.

Steve
Princy
Top achievements
Rank 2
 answered on 09 Mar 2010
5 answers
204 views
Hi,

I am implementing scheduler to be a roster planning.  I have a problem to display the employee list in a cell when I select month view.   Can we customise the cell size to fit the serveral items to display?

Regards,

Duy
shreebalaji ar
Top achievements
Rank 1
 answered on 09 Mar 2010
2 answers
95 views
Hi, I have implement custom page + SEO-friendly pager + URLrewrite from URLrewter
however, the page Href does not seems to take user to the correct page

sample can be seen at
and link is like
http://dev10nz.oslweb.co.nz/404.aspx?404;http://dev10nz.oslweb.co.nz:80/property/Residential-Listings&page=2

how would i overcome this? aim of that is to have both urlrewrite and seo friendly for search optimization

James Shelton Agar
Top achievements
Rank 2
 answered on 09 Mar 2010
3 answers
99 views
I am attempting to display a panel via a modalpopupextender in a RadWindow.  The Panel displays, however the content does not.  Is it technically possible to nest a modalpopupextender within a RadWindow?
         function pageLoad()  
        {  
            EditContractMPE = $find('EditContractMPE');  
        }  
 
 
        function AddAContract()  
        {  
            $get('<%=EditContractPanel.ClientID %>').style.display = 'inline';  
 
            EditContractMPE.show();  
       }  
 
 
 
   <asp:Panel ID="EditContractPanel" CssClass="modalPopup"  style="display: none" runat="server" BorderStyle="Solid"  Width="600px">  
    <table border="0" width="20%" class="PopUpDialogbody">  
        <tr> 
            <th colspan="4" align="center" class="header" >Contract Editor</th> 
        </tr> 
        <tr> 
            <td colspan = "4" ><span id="PopUpMsg" class="ErrorMessage"></span>&nbsp;</td> 
        </tr> 
        <tr > 
            <td> 
                Contract Number  
            </td> 
            <td> 
                <input type="text" maxlength="30" size="30" id="EditContractNumber" /> 
            </td> 
            <td> 
                Acronym  
            </td> 
            <td> 
                <input type="text" maxlength="30" size="30" id="EditDivisionActive" /> 
            </td> 
        </tr> 
        <tr> 
            <td> 
                Program Name  
            </td> 
            <td> 
                <input type="text" maxlength="200" size="30" id="EditProgramName" /> 
            </td> 
            <td> 
                Division  
            </td> 
            <td> 
                <asp:DropDownList ID="DivisionDDL" runat="server"  > 
                </asp:DropDownList> 
            </td> 
        </tr> 
        <tr> 
            <td> 
                Customer  
            </td> 
            <td> 
                <asp:TextBox  runat="server" id="CustomerTB" size="30"></asp:TextBox> 
                    <ajaxToolkit:AutoCompleteExtender ID="CustomerACExtender" runat="server" TargetControlID="CustomerTB"   
                        ServiceMethod="GetCustomerList" UseContextKey="true" MinimumPrefixLength="2"   
                        CompletionListHighlightedItemCssClass="autocomplete_highlightedListItem" 
                        CompletionListItemCssClass="autocomplete_listItem" 
                        CompletionInterval="400" EnableCaching="true" CompletionListCssClass="autocomplete_completionListElement"   
                          
                         CompletionSetCount="15"  DelimiterCharacters=":;" > 
                    </ajaxToolkit:AutoCompleteExtender> 
            </td> 
            <td> 
                SubContract  
            </td> 
            <td> 
                <asp:CheckBox ID="SubContractCheckBox" runat="server" />                  
            </td> 
        </tr> 
        <tr> 
            <td> 
                Archived  
            </td> 
            <td> 
                <asp:CheckBox ID="ArchivedCheckBox" runat="server" />      
            </td> 
            <td> 
                Archive Date  
            </td> 
            <td> 
            <asp:TextBox ID="ArchiveDateTB"  TextMode="SingleLine" runat="server"></asp:TextBox> 
              
            <ajaxToolkit:CalendarExtender ID="CalendarExtender1" TargetControlID="ArchiveDateTB"   
                                          Format="mm,dd,yyyy" runat="server">  
            </ajaxToolkit:CalendarExtender> 
            </td> 
              
        </tr> 
        <tr> 
            <td> 
                Location  
            </td> 
            <td> 
                <input type="text" maxlength="30" size="30" id="EditMfgLocation" /> 
              
            </td> 
          
        </tr> 
        <tr><td>&nbsp;</td></tr>  
        <tr> 
            <td colspan="4" align="center">  
                <input type="button" id="EditOk" title="OK"  size="120" class="button" value="Save" /> 
                &nbsp;&nbsp;&nbsp;  
                <input type="button" id="EditCancel" title="Cancel"  size="120" class="button" value="Cancel" /> 
            </td> 
        </tr> 
   </table> 
</asp:Panel> 
 
      
    <asp:Button runat="server" ID="DummyTargetforContractMPE" Style="display: none" /> 
    <ajaxToolkit:ModalPopupExtender ID="EditContractMPE" runat="server" 
     PopupControlID="EditContractPanel"   
     TargetControlID="DummyTargetforContractMPE" 
     BehaviorID="EditContractMPE" 
     DropShadow="false" X="175" Y="150"    
     BackgroundCssClass="modalBackground"   
     CancelControlID="EditCancel" OkControlID="EditOk"   
     OnCancelScript="CloseContractsPanelMPE()" OnOkScript="ProcessContractsPanelMPE()" 
     > 
      
    </ajaxToolkit:ModalPopupExtender>   
Joel Brom
Top achievements
Rank 1
 answered on 09 Mar 2010
1 answer
54 views
Hello!!

The AjaxLoadingPanel Is visible normally from ie8.

But gif images of the loading panel stop from ie6

Help Me please...

(When continuously repeats sees and the loading image moving, the actual condition which stops happens.)
Daniel
Telerik team
 answered on 09 Mar 2010
4 answers
413 views
Hi,

The example on the website on how to use GridBinaryImageColumn to update an image in a radgrid does not have a "codebehind" equivalent. Would it be possible to post a simple example how to implement a "RadGrid1_UpdateCommand" where the changed image is stored? 

Thanks Peter
Peter
Top achievements
Rank 1
 answered on 08 Mar 2010
1 answer
100 views
I've read this: http://www.telerik.com/help/aspnet-ajax/grdhierarchicaldatabindingusingdetailtabledatabind.html
as well as other articles and posts, but haven't seen an example of this. I know that it works for a grid with no heirarchy.

Can I use a data table as the datasource for a detailtable?
E.g. under DetailTableDataBind

 

Dim

 

myDataTable As DataTable = New DataTable()

 

 

 

Dim

 

dc1 As New DataColumn

 

 

dc1.columnname= "xyz"

 

Dim

 

row1 As DataRow

 

row1 = myDataTable.NewRow

row1(0) =

"Testing"

 

 

 

 

myDataTable.Rows.Add(row1)

 

e.DetailTableView.DataSource = myDataTableUnderReview

Dean
Top achievements
Rank 1
 answered on 08 Mar 2010
1 answer
105 views
I am using the OnKeyPress Clientevent in my grid.  I want to perform a particular action when the user press the CTRL+ SHIFT+ A buttons.  When I place the eventArgs.get_keyCode() call in an alert box I get the value of 65 for Firefox but I get the value of 1 for Internet Explorer.  We just upgraded to the ASP.NET Ajax controls and both IE and Firefox returned 65 in the old controls.  Is there any way to get them to both return 65 again. 
Daniel
Telerik team
 answered on 08 Mar 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?