Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
207 views
Hi everyone, im new to telerik, was just building a web application, i want to include the top bar in the picture in my web form..
which control is used to do so can anyone please tell me??
I am using VB dot net.
Please help...
rdmptn
Top achievements
Rank 1
 answered on 05 Jun 2012
1 answer
103 views
Hello,

I'm using a RagGrid on a dynamically loaded UserControl. To keep row selected after postback I followed this: 
http://www.telerik.com/help/aspnet-ajax/grid-persist-selected-rows-on-sorting.html

The selected state on the server-side is succesfully set only client-side the record is not selected. When I check the select-item on the OnGridCreated event the count of selected-items is zero.

Can someone help me with this.

Regards,
  Jos Meerkerk
Maria Ilieva
Telerik team
 answered on 05 Jun 2012
1 answer
151 views
Hello,

I am having tooltips in my page. I have rad ajax panel with textboxes, labels and radio buttons.

If I click on button and radajaxpanel showsup. After that tooltips are not working.

TIA
Shinu
Top achievements
Rank 2
 answered on 05 Jun 2012
1 answer
94 views
Hello,
I have a textbox which is in invisible mode. I am making it visible on code behind.

RadTooltip is not working for that textbox. Is it because of the textbox is invisible initially ?

If so, how can I solve this ?
Princy
Top achievements
Rank 2
 answered on 05 Jun 2012
2 answers
70 views
I am using RadScheduler to bind to Exchange server via Exchange Web Services. The idea is to pull out appointments from different mailboxes on Exchange and display them in the scheduler. I've managed to accomplish this by putting all appointments into a generic list and use that list as a DataSource for RadScheduler. This works like a charm. I need to be able to group these appointments by mailbox (e-mail address of the owner of that appointment). First, I tried to display appointment owner as a resource. There were no way I could accomplish this. Then, it came to my mind that I could display appointment owner as a Custom Attribute.
My question is, how can I programmatically insert Custom Attribute value while appointments are binding?
asimptota
Top achievements
Rank 1
 answered on 05 Jun 2012
1 answer
278 views
Web Site Won't Load - VS20120 Build > Build Web Site Goes Boom.

Error 58 Assembly 'Telerik.Web.UI, Version=2012.1.411.40, Culture=neutral, PublicKeyToken=121fae78165ba3d4' uses 'System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' which has a higher version than referenced assembly 'System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'  

Error 59 Assembly 'Telerik.Web.UI, Version=2012.1.411.40, Culture=neutral, PublicKeyToken=121fae78165ba3d4' uses 'System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' which has a higher version than referenced assembly 'System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'  

// SYSTEM.CORE AND SYSTEM.WEB.EXTENSIONS IN THE GAC:

System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSI
System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL
System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL
System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL

// CONFIRMED ASSEMBLY INSTALLED IN THE GAC:
Telerik.Web.Design, Version=2012.1.411.40, Culture=neutral, PublicKeyToken=121fae78165ba3d4, processorArchitecture=MSIL

// DETERMINED WHICH VERSIONS AND SERVICE PACKES OF .NET ARE INSTALLED
http://msdn.microsoft.com/en-us/kb/kbarticle.aspx?id=318785

NET Framework Setup
v4 Client C:\Windows\Microsoft.NET\Framework64\v4.0.30319
v4 Full   C:\Windows\Microsoft.NET\Framework64\v4.0.30319


// ENTRIES IN WEB.CONFIG

<system.web>
...
<httpHandlers>
  <remove path="*.asmx" verb="*" />
  <add path="*.asmx" verb="*" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate="false" />
  <add path="*_AppService.axd" verb="*" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate="false" />
  <add path="ScriptResource.axd" verb="GET,HEAD" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate="false" />
  <add path="CaptchaImage.axd" verb="GET" type="MSCaptcha.CaptchaImageHandler, MSCaptcha" />
  <add path="Aspy.ashx" verb="GET, POST" type="ByteCarrot.Aspy.AspyHandler, ByteCarrot.Aspy" />
  <add path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" validate="false" />
</httpHandlers>
<httpModules>
  <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
</httpModules>
</system.web>

<system.webServer>
...
<handlers>
  <remove name="WebServiceHandlerFactory-Integrated" />
  <remove name="ScriptHandlerFactory" />
  <remove name="ScriptHandlerFactoryAppServices" />
  <remove name="ScriptResource" />
  <remove name="ChartImageHandler" />
  <add name="MSCaptchaImage" path="CaptchaImage.axd" verb="GET" type="MSCaptcha.CaptchaImageHandler, MSCaptcha" preCondition="integratedMode,runtimeVersionv2.0" />
  <add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
  <add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
  <add name="ScriptResource" verb="GET,HEAD" path="ScriptResource.axd" preCondition="integratedMode" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
  <add name="Aspy" path="Aspy.ashx" verb="GET, POST" type="ByteCarrot.Aspy.AspyHandler, ByteCarrot.Aspy" />
  <add name="Telerik_Web_UI_WebResource_axd" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" />
</handlers>
<modules>
  <remove name="ScriptModule" />
  <add name="ScriptModule" preCondition="managedHandler" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
</modules>
<validation validateIntegratedModeConfiguration="false" />
</system.webServer>

I don't understand how to continue to resolve this conflict.
Martin
Telerik team
 answered on 05 Jun 2012
1 answer
55 views
Hello, how can I set font-name and font-size for the text in the red frames?
 
How can I set the width of the tabs (edit modes) in the green frames?

Thank you

AB
Princy
Top achievements
Rank 2
 answered on 05 Jun 2012
0 answers
92 views
Hi,
I have published my application in local server in that radlistbox is working very well,i implemented custom transfer with e.cancel=true in OnTransfferring event of Sourcelistbox.it's working fine in locally but in public server url its item transfer is not working and 1 error is triggered as shown in attachment file(ErrorScreen.png)

error:

Sys.WebForms.PageRequestManagerServerErrorException An unknown error occurred while processing the request on the server.The status code returned from the server was: 12030

code:

  <body class="main">
        <form id="form2" runat="server">
        <asp:ScriptManager ID="ScriptManager2" runat="server" AsyncPostBackTimeout="360000"
            EnablePartialRendering="true">
        </asp:ScriptManager>
        <div class="centered">
            <asp:UpdatePanel runat="server" ID="UpdatePanel1" UpdateMode="Conditional">
                <ContentTemplate>
                    <table border="0" cellspacing="0" cellpadding="0" id="Table1" runat="server" align="center">
                        <tr>
                            <td>
                                <telerik:RadListBox ID="RadListBox1" runat="server" AllowTransfer="true" AllowTransferOnDoubleClick="true"
                                    EnableViewState="true" AutoPostBackOnTransfer="true" EnableDragAndDrop="false"
                                    Height="250px" OnItemDataBound="RadListBoxSource_ItemDataBound" Width="515px"
                                    OnTransferring="RadListBoxSource_Transferring" SelectionMode="Multiple" Skin="WebBlue"
                                    TransferToID="RadListBoxDestination">
                                    <Items>
                                    </Items>
                                    <ButtonSettings AreaHeight="40px" AreaWidth="35px" ShowTransfer="true" ShowTransferAll="true"
                                        VerticalAlign="Middle" />
                                </telerik:RadListBox>
                            </td>
                            <td>
                                <telerik:RadListBox ID="RadListBox2" runat="server" AllowTransferDuplicates="false"
                                    EnableViewState="true" AllowTransferOnDoubleClick="true" AutoPostBackOnTransfer="true"
                                    EnableDragAndDrop="false" Width="480px" Height="250px" OnItemDataBound="RadListBoxDestination_ItemDataBound"
                                    SelectionMode="Multiple" Skin="WebBlue" Sort="Ascending" />
                            </td>
                        </tr>
                    </table>
                </ContentTemplate>
            </asp:Panel>
        </div>
        </form>
    </body>

Please help.

Thanks & Regards,
Santhosh Naik


Santhosh
Top achievements
Rank 1
 asked on 05 Jun 2012
1 answer
159 views
I have a RadGrid that is currently configured for paging and grouping...  the grouping will display group footers with aggregate=sum for a data column.

Question

After the data is bound, I would like to replace the pre-existing total values in the GridGroupFooterItems with my own custom values.

More importantly, before I devise my custom values, I would like to determine the group by expression that is associated to that particular GridGroupFooterItem (i.e. GroupByExpression columnname = x; column value = x, and aggregate columnname=x, and aggregate=x).  How can I find this information?

Shinu
Top achievements
Rank 2
 answered on 05 Jun 2012
2 answers
368 views
I downloaded version Q1 2010 SP1 Released 2010/04/15 and followed the installation instructions and received no errors.  I am using Windows 7 and Visual Studio 2008.
1) Created new project (RadControls Web Application)
- Telerik.Web.UI Assembly:  v.2010.1.415.35 [Installation Folder] [Trial]
2) Opened Default.aspx
- Switched to design mode
- Click on the Toolbox => There is no RadControls tab
Other tabs exist with controls:
Standard, Data, Validation, Navigation, Login, WebParts, AJAX Extensions, Reporting, HTML, Ajax Controls Toolkit and General (only tab with no controls)

Tried creating another project as an ASP.NET Web Application, same result.  No RadControls tab.

Any suggestions?
Prassin
Top achievements
Rank 1
 answered on 05 Jun 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?