Telerik Forums
UI for ASP.NET AJAX Forum
4 answers
386 views
Application Version: 2014.1.210.1
Description: Application needs to close
Details:
System.ArgumentException: operations

Server stack trace:
   at Telerik.OperationFramework.Operation.OperationSequence..ctor(IOperationDependencies operationDependencies)
   at Telerik.OperationFramework.OperationManager.QueueSequence(IOperationInfoDependencies operationInfos)
   at Telerik.CommonInstaller.Application.ProductInstaller.InstallProduct(IInstallable product)
   at Telerik.CommonInstaller.Application.Actions.InstallAction.GetSequenceCookie()
   at Telerik.CommonInstaller.Application.Actions.InstallActionBase.Initialize()
   at Telerik.CommonInstaller.Application.Services.InstallationService.TrackAndStartActions(IList`1 actions)
   at Telerik.CommonInstaller.Application.Services.InstallationService.StartActions(IList`1 actions)
   at Telerik.CommonInstaller.InstallerUIBase.ViewModels.InstallationProgressPageViewModelBase.<OnNavigated>b__12()
   at System.Runtime.Remoting.Messaging.StackBuilderSink._PrivateProcessMessage(IntPtr md, Object[] args, Object server, Int32 methodPtr, Boolean fExecuteInContext, Object[]& outArgs)
   at System.Runtime.Remoting.Messaging.StackBuilderSink.AsyncProcessMessage(IMessage msg, IMessageSink replySink)

Exception rethrown at [0]:
   at System.Runtime.Remoting.Proxies.RealProxy.EndInvokeHelper(Message reqMsg, Boolean bProxyCase)
   at System.Runtime.Remoting.Proxies.RemotingProxy.Invoke(Object NotUsed, MessageData& msgData)
   at System.Action.EndInvoke(IAsyncResult result)
   at Telerik.CommonInstaller.InstallerUIBase.ViewModels.InstallationProgressPageViewModelBase.<>c__DisplayClass16.<>c__DisplayClass19.<OnNavigated>b__15()
   at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
   at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(Object source, Delegate method, Object args, Int32 numArgs, Delegate catchHandler)


There's a proxy setting in the settings box, is it a requirement to always have a proxy?
Missing User
 answered on 27 Feb 2014
1 answer
145 views
Hi,
I am looking to select files, and then allow the user to give the file a description, and then upload the files in 'batch'. So I would allow the user to choose files, add the filename to a grid(?), add a title for each file, and then upload them.

I may want to do this as a 'local' upload or an 'azure' upload.

What is the best way to approach this please?

Thanks

Pete
Hristo Valyavicharski
Telerik team
 answered on 27 Feb 2014
2 answers
101 views
Can i open 2 radtooltips at same time in client side?

radToolTip = $find("RadToolTipPerfil1");
$("#TextoTruco1").text("Sem chance !!!");
radToolTip.show();
radToolTip1 = $find("RadToolTipPerfil3");
$("#TextoTruco3").text("Sem chance !!!");
 radToolTip1.show();

It showing only one.

Thanks
Gilberto
Top achievements
Rank 1
 answered on 27 Feb 2014
4 answers
329 views
Hi all
I need to show a RadAlert with a link (anchor tag) for the user.
When i include the <a tag> the window doesn't popup.

string message = "<A process with this ID already exists <br />, you can find the process <a href='http://mydomain.com'>Here</a>";

(i have reference to the element)
radWindowAlert.radalert(message,330,180,"Process Exists", null);

If i remove the a tag it shows the rest of the text.

(asp.net C#)
Omer B
Top achievements
Rank 1
 answered on 27 Feb 2014
1 answer
161 views
Hi

I have a RadMenu inside a RadGrid Template row. The goal is to use Eval() to configure properties of the menu items by operating on the grid row, not the menu. I understand that because the menu is a naming container itself this is not directly possible.

for example <telerik:radMenuItem text='<%# Eval("SomeFieldName") %>' /> and the result would be that the text of the menu item is taken from the value of the "SomeFieldName" column of the row that it appears on.

There is a similar thread here from five years ago:
http://www.telerik.com/forums/radgrid-template-column-and-binding-to-radmenu

which offers a workaround but the link to that workaround is dead.

So, five years later and this is still a problem. We need to be able to bind radmenu items to the rows of a radgrid. It seems really obvious to me that this is something everyone would want to do, and to do it easily.

What can you suggest as a practical solution?

Thanks
Chris
Plamen
Telerik team
 answered on 27 Feb 2014
5 answers
180 views
Hi,
i'm using rad controls version 2013.2.611.40 and i need to have in a pivot grid a calculated with a formula.
How is possible to do it?

Thanks.
Vasil
Telerik team
 answered on 27 Feb 2014
3 answers
75 views
Hi,

I want to hide 2 command buttons when the user is in edit mode.  I've tried doing it in PreRender, ItemCreated without success.  Would you please help~

Thanks,

Helen

This is my CommandItemTemplate

<CommandItemTemplate>
  <div style="padding: 5px 5px;">
    <table>
    <tr>
        <td width="8%" >
            <asp:LinkButton ID="LinkButton2" runat="server" CommandName="InitInsert"
                Visible='<%# !gdvBuilding.MasterTableView.IsItemInserted %>'>
                <img style="border:0px;vertical-align:middle;" alt="" src="../../images/add.png" />Add new
            </asp:LinkButton
        </td>                                   
        <td width="20%" align="left" >
            <asp:LinkButton ID="LinkButton1" OnClick="LinkButton1_Click" Visible="false"
                runat="server" CommandName="UpdateSelected">
                <img style="border:0px;vertical-align:middle;" alt="" src="../../images/disk_save.png" />Synchorize Info to SOS
            </asp:LinkButton
        </td>
        <td width="72%"></td>
        <td width="10%">                        
            <asp:LinkButton ID="btnRefresh" Text="Refresh" OnClick="btnRefresh_Click" runat="server" >
                <img style="border:0px;vertical-align:middle;" alt="" src="../../images/table_refresh.png" />Refresh
            </asp:LinkButton>
        </td>
    </tr>
    </table>
</div>
</CommandItemTemplate>


Helen
Top achievements
Rank 1
 answered on 27 Feb 2014
3 answers
624 views
I've just upgraded to the latest Telerik Ajax controls.

In several of my screens, I use an OnClientClicked event to disable the RadButton after one click to prevent multiple posts.

Now it seems to be failing.  The button is disabled but the postback never occurs.  (If I remove the OnClientClicked, the postback works.)

It is my understanding that this approach is now obsolete.  (I am aware of the 'SingleClick' option and I intend to try it.)

However I have another screen that is using the identical approach and it is still working.  So far I have not been able to find any significant difference.  I'd like to know what's happening here.

Danail Vasilev
Telerik team
 answered on 27 Feb 2014
3 answers
139 views
I have a Rad Grid with Buttons in the GridTemplateColumn that update a Crystal Reports Viewer on the page.

I also have a few other buttons on the page that update the database then refresh the grid.

When I add the other buttons to the Ajax Manager to update the grid the template column buttons no longer refresh the Crystal View.

If I add the panel where the viewer resides to the manager the Viewer disappears when I click the buttons in the Template column.
Maria Ilieva
Telerik team
 answered on 27 Feb 2014
1 answer
106 views
Hi,

PFA.

It is possible to perform filtring sorting and grouping on the column which has drop downlist inside it..

Please check and let me know if possible to do it.

Reply asap.


thanks.
Boyan Dimitrov
Telerik team
 answered on 27 Feb 2014
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?