Telerik Forums
UI for ASP.NET AJAX Forum
4 answers
267 views
hi all
i want batch updates functionality with rows in rad grid.

below is the batch update with cells but i want batch updates with rows.
http://demos.telerik.com/aspnet-ajax/grid/examples/dataediting/clienteditbatchupdates/defaultcs.aspx

regards
Ravi
mcamail2002@gmail.com
Shinu
Top achievements
Rank 2
 answered on 20 Mar 2012
7 answers
141 views
Hi,

Thanks for your help with previous inquiries that I've had.

I've got this issue and am confused by it.
This is something that we are trying to understand why it's happening here and not with other html elements.

Follow these steps:
1. In Design mode, add a table to the editor.
2. Got into HTML mode and wrap the table in a paragraph tag so all you get is something like:
<p>
<table>
    <tbody>
        <tr>
            <td>1</td>
            <td>2</td>
        </tr>
        <tr>
            <td>3</td>
            <td>4</td>
        </tr>
    </tbody>
</table>
</p>

Go into Design mode, and then go back into HTML mode.
And all of a sudden it looks like this:
<p>
</p>

<table>
    <tbody>
        <tr>
            <td>1</td>
            <td>2</td>
        </tr>
        <tr>
            <td>3</td>
            <td>4</td>
        </tr>
    </tbody>
</table>


Why did it do that?

If I put some random junk instead of a table and do the same thing, the content remains inside the paragraph.

This is currently driving me crazy as I cannot figure out how to fix this.

Any help would be appreciated.

Thanks,
Cameron


Rumen
Telerik team
 answered on 20 Mar 2012
1 answer
91 views
Hello,
Documentation about my question is found by using below link :
http://www.telerik.com/help/aspnet-ajax/grid-persist-selected-rows-client-sorting-paging-grouping-filtering.html

The question is when i move to another page in the grid the  var selected = {}; became null (before moving to another page the variable selected contains ids of the selected rows)
so it is not remembering the selected rows  when i move to another page in the grid
any suggestions.
Shinu
Top achievements
Rank 2
 answered on 20 Mar 2012
1 answer
73 views
I have a FileExplorer that I've tagged some extra functionality on so that the preview window loads larger and is resizable. However, when I close this window, it is not destroyed and continues to lurk in the background. I want to destroy it so that if I go to open another window, that window will be the active one and pick up where the previous one left off.

Here is the code I am using for the extra properties, found in another thread:

function OnExplorerFileOpen(oExplorer, args)
{
    if (!args.get_item().isDirectory()) {
        setTimeout(function ()
        {
            var oWindowManager = oExplorer.get_windowManager();
            var previewWindow = oWindowManager.getActiveWindow();
            oWindowManager.add_show(addShowHandler);
            previewWindow.setSize(800, 500);
        }, 100);   // Some timeout is required in order to allow the window to become active
 
        // destroy code will go here I hope?
    }
}

This is wired to the OnClientFileOpen event on my FileExplorer.

Thanks,
Chris
Dobromir
Telerik team
 answered on 20 Mar 2012
2 answers
196 views
I have implemented the an AJAX enabled Web Service for my combo box exactly as explained here:
http://www.telerik.com/help/aspnet-ajax/combobox-load-on-demand-wcf-service.html 
http://demos.telerik.com/aspnet-ajax/combobox/examples/loadondemand/wcf/defaultvb.aspx 

It works perfectly on my development server running IIS7.5. When I run it on my remote test server also IIS7.5 - I get a 401 error. The rest of my ASP.NET4 web app works fine. Using Fiddler I find I get a 401 Unauthorized error - the inner exception being  "Authentication Failed" System.InvalidOperationException. The IIS log shows 401 0 0 after the POST to my web service, i.e. a sub error code of 0. I think this relates to "Access is denied due to invalid credentials"?

This post sums up my problem:
http://forums.asp.net/t/1431102.aspx/1 
But as you can see no answers.

I've spent a long time looking into this with no luck and I'm really running out of ideas. It must be down to some IIS configuration or permission or something similar. Has anyone had this problem before of know how to resolve it? Thanks
Al
Top achievements
Rank 1
 answered on 20 Mar 2012
1 answer
181 views
Hello,

Can you please provide a VB.Net method that can reset (or "unrate") the value of a RadRating contol? What I need to achieve is the following:
When user rates I check the database to see if he didn't previously rate in the past by verifying the user ID. This works fine, I have all necessary code in the Rate event. However, I also need to undo his rating in case he attempts to rate twice.

Thank you,
M.R.
Slav
Telerik team
 answered on 20 Mar 2012
8 answers
95 views
Following the latest release, the RadWindow designer seems broken. If you put a new RadWindow on a page, you get one chance to edit the contents template, the rest of the changes are visible in designmode, but not in sourcemode (ie never saved to the page). Very easy to reproduce, just drop a new RadWindow onto a page, go to edit Contents template, type "test", then do a return, type "test2" and this is what you will get when you save.

    <telerik:RadWindow ID="RadWindow1" runat="server">
        <ContentTemplate>
            test
        </ContentTemplate>
    </telerik:RadWindow>

We are using latest release of Visual Studio 2010 SP1

(For obvious reasons, it's hard to know if this is infact a bug in Visual Studio or the Telerik designer)
improwise
Top achievements
Rank 1
Iron
Iron
 answered on 20 Mar 2012
1 answer
134 views

Hi, 

I have a problem related with RadNumericTextBox, RadDateInput and RadMaskedTextBox. I use a RadInputManager control, to validate some textboxes (they need to be required), and it works ok on asp:TextBox controls, but on telerik controls it doesn't seem to work. I want to have the same behavior with red textbox border and the yellow triangle with exclamation mark inside if the fields are required. Is there something i have to set on the controls?

Thanks!

Princy
Top achievements
Rank 2
 answered on 20 Mar 2012
3 answers
132 views
Hi,

I am creating Combobox dynamically and i want to use it's SelectedIndexChanged of it so please help me to do this.
                RadComboBox rdcmb = new RadComboBox();
                rdcmb.ID = "rcbContact" + i;
                rdcmb.DataSource = dt;
                rdcmb.DataTextField = "ContactType";
                rdcmb.DataValueField = "ContactTypeID";
                rdcmb.DataBind();

Now i want to use here OnselectIndexChange of this control like :

rdcmb.OnselectIndexChanged= funtion();

Thanx
Manish
                
Shinu
Top achievements
Rank 2
 answered on 20 Mar 2012
2 answers
97 views
Hi all,
I have a RadGrid with GridHTMLEditorColumn inside. RadGrid display and binding normally, but when I'm in EditMode or InsertMode, GridHTMLEditorColumn doesn't display binded value, It's empty. Anh I also can't input any value in this column in EditMode or InsertMode. Please help me. I'm in hurry.
thanks you.
_Tan_ 
Tan
Top achievements
Rank 1
 answered on 20 Mar 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?