Telerik Forums
UI for ASP.NET AJAX Forum
8 answers
274 views
I have a grid that I am populating from a DataTable object.$0$0$0$0I've enabled drag and drop reordering, and trying to figure out how to move the e.DraggedItems to the new location.  $0$0$0$0$0Does anyone have any examples of using the drag and drop reordering with a DataTable as the datasource for the grid control.$0$0$0$0$0I appreciate any help!$0$0$0$0$0Thanks! $0
Sebastian
Telerik team
 answered on 22 Dec 2008
3 answers
122 views
Hi

I want to display in calendar only the Friday's date Instead of displaying all the dates.That means per month i want to display only Four or Five dates.Because our client will run the  report every friday.And i want to set the default date is current week friday date.How can i do this one.
Thanks
Vairam
Dimo
Telerik team
 answered on 22 Dec 2008
1 answer
150 views

Hi Guys,
       Please dont ask to rise the support ticket.We have the original version and I am not the registered user for this control.
I am having  a problem with the Scheduler not showing a new appointment in the correct time slot. I am using Rad prompt window for adding and editing the appointment.

 It is working fine in day and week view I have problem in Month and timeline view.
It is being updated to the wrong date I mean to the previous date.

 

var

SchedulerInsertMode = null;

 

 

var ScheduleID = null;

 

 

var startTime = new Date();

 

 

var endTime = new Date();

 

 

function OnClientAppointmentInserting(sender, eventArgs)

 

{ SchedulerInsertMode =

true;

 

ScheduleID = sender.get_id().split(

"_")[sender.get_id().split("_").length-1];

 

PresentSchudler = sender;

newAppointment =

new Telerik.Web.UI.SchedulerAppointment();

 

startTime = eventArgs.get_targetSlot().get_startTime();

endTime =

new Date(startTime);

 

 

 

// alert(getTimeSlotFromDomElement())

// var now = new Date();

// if (eventArgs.get_startTime() < now)

// {

// alert("Appointment Cannot be inserted!")

// eventArgs.set_cancel(true);

// }

// else

// {

 

 

openPrompt(

"Appointment :")

 

eventArgs.set_cancel(

true);

 

 

return false;

 

 

 

// }

 

 

}

 

var AppointID=null

 

 

 

 

function OnClientAppointmentEditing(sender, eventArgs)

 

{ SchedulerInsertMode =

false;

 

PresentSchudler = sender;

ScheduleID = sender.get_id().split(

"_")[sender.get_id().split("_").length-1];

 

newAppointment =

new Telerik.Web.UI.SchedulerAppointment();

 

 

var apt = eventArgs.get_appointment();

 

AppointID=apt.get_id()

 

 

// var wnd=window.radopen("Appointment.aspx?Mode=Edit&AppointmentId=" + apt.get_id() + "&CID=" + <%= Request.QueryString("CID") %>, "AdvancedForm");

// wnd.setSize(460,180);

// wnd.add_pageLoad(function(){wnd.set_status(" "); });

 

 

openPrompt(

"Appointment : (<i>" + apt.get_subject() + "</i>)")

 

eventArgs.set_cancel(

true);

 

 

return false;

 

}

 

function formatDate(date)

 

{

 

var year = padNumber(date.getUTCFullYear(), 4);

 

 

var month = padNumber(date.getUTCMonth() + 1, 2);

 

 

var day = padNumber(date.getUTCDate(), 2);

 

 

var hour = padNumber(date.getHours(), 2);

 

 

var minute = padNumber(date.getMinutes(), 2);

 

 

return year + "/" + month + "/" + day +" "+ hour + ":" + minute;

 

}

 

function padNumber(number, totalDigits)

 

{

number = number.toString();

 

var padding = '';

 

 

if (totalDigits > number.length)

 

{

 

for (i = 0; i < (totalDigits - number.length); i++)

 

{

padding +=

'0';

 

}

}

 

 

return padding + number.toString();

 

}

 

function OnClientAppointmentDeleting(sender, eventArgs)

 

{

 

var ClientName=document.getElementById("hidClientName").value

 

 

var apt = eventArgs.get_appointment();

 

 

var check= deleterecords(apt.get_id(),ClientName)

 

 

return false;

 

}

 

 

 

function openPrompt(Caption)

 

{

 

radprompt(Caption, callbackFn, 350, 80);

}

 

 

function callbackFn(arg)

 

{

endTime.setMinutes(endTime.getMinutes() + 60);

newAppointment.set_start(startTime);

newAppointment.set_end(endTime);

newAppointment.set_subject(arg);

PresentSchudler.insertAppointment(newAppointment);

 

startTime = formatDate(startTime);

endTime = formatDate(endTime)

 

if(SchedulerInsertMode)AppointmentInsert(document.getElementById("hidClientName").value, arg, startTime, endTime, ScheduleID)

 

 

else if(!SchedulerInsertMode)

 

AppointmentUpdate(document.getElementById(

"hidClientName").value,arg,AppointID)

 

document.forms[0].submit();

}

 

T. Tsonev
Telerik team
 answered on 22 Dec 2008
1 answer
126 views
I want to show the column header date format in timeline view as : 08:00 AM. format i.e hh:mm AM/PM.  
Kamen Bundev
Telerik team
 answered on 22 Dec 2008
1 answer
96 views
I have a GridEditCommandColumn in the Grid of Webpage A.

<telerik:GridEditCommandColumn UniqueName="EditCommandColumn">
 </telerik:GridEditCommandColumn>

<EditFormSettings UserControlName="SNEdit.ascx" EditFormType="WebUserControl">
                           <EditColumn UniqueName="EditCommandColumn1">
                           </EditColumn>
 </EditFormSettings>


And I set the edit for setting as follow. I created a WebUserControl which contain several controls including a telerik combo box. I need to do an action like that. When the user change the selection of the combo box, then based on the selected value, a server-side function on Webpage A need to be triggered in order to retrieve the corresponding data from database to update the screen. I am not sure if the telerik control support this action? Thanks.


Yavor
Telerik team
 answered on 22 Dec 2008
1 answer
60 views
I recently started playing with RadControls.  I've been looking at the tutorials on the site and I have found a sample that I really like and was wondering if someone might shed some light on it for me.

The article that I found interesting is here.  I'm to create a page that allows users to click on the recent works of my company.  I have ButtonImages setup for each item and I want to have them make their corresponding RadWindow open for people to see some information like the company name, website address, description, contact info.

I would greatly appreciate any help that anyone could give me.
Fiko
Telerik team
 answered on 22 Dec 2008
8 answers
347 views
Hi

I have code like :
<telerik:RadGrid ID="GridAdvert" runat="server"  PageSize="5" OnItemDataBound="GridAdvert_ItemDataBound" 
  OnNeedDataSource="GridAdvert_NeedDataSource"   >
 
<MasterTableView DataKeyNames="id"   
             EditMode="PopUp">  
 
<EditFormSettings EditFormType="Template"   PopUpSettings-ZIndex="200">  
            <EditColumn UniqueName="EditCommandColumn1"  >                                                          
            </EditColumn>        
             <FormTemplate> 
<telerik:RadComboBox ID="findCompanyBox" runat="server" Skin="Inox"               
                    AllowCustomText="True" ShowToggleImage="True" ShowMoreResultsBox="true" 
                    EnableLoadOnDemand="True" EnableVirtualScrolling="true"   
                    Width="200px" Height="200px"   
                    Text='<%# DataBinder.Eval( Container, "DataItem.companyName" ) %>' 
                    ZIndex="1000" OnItemsRequested="findCompanyBox_ItemsRequested" > 
                    <CollapseAnimation Duration="200" Type="OutQuint" /> 
                  </telerik:RadComboBox>    
 
In code behind I have :

RadComboBox FindCompanyBox = new RadComboBox();  
 
protected void GridAdvert_ItemDataBound(object sender, Telerik.Web.UI.GridItemEventArgs e)  
    {  
                if (e.Item is GridEditFormItem && e.Item.IsInEditMode)    
          {                
              GridEditFormItem item = e.Item as GridEditFormItem;  
              FindCompanyBox = (RadComboBox)item.FindControl("findCompanyBox");  
          }    
 
    }  
 
protected void findCompanyBox_ItemsRequested(object o, Telerik.Web.UI.RadComboBoxItemsRequestedEventArgs e)  
    {  
        if (e.Text.Length < 3) return;  
 
 
        String ConnString =  
                    "Provider=Microsoft.Jet.OLEDB.4.0;" +  
                    "Data Source=c:\\DataFile.mdb;" +  
                    "User Id=admin;Password=;";  
        OleDbConnection conn = new OleDbConnection(ConnString);  
        DataSet simData = new DataSet();  
        String query =  
            "SELECT id , companyName " +  
            "FROM Company  " +  
            "WHERE UCASE(companyName) LIKE UCASE('%" + e.Text + "%') " +  
            "ORDER BY id ";  
        OleDbCommand command = new OleDbCommand(query, conn);  
        OleDbDataAdapter adapter = new OleDbDataAdapter(command);  
        conn.Open();  
        adapter.Fill(simData, "Company");  
        conn.Close();  
 
        DataTable data = new DataTable();  
        data = simData.Tables[0];  
 
        int ile = data.Rows.Count;  
 
        try  
        {  
 
            int itemsPerRequest = 10;  
            int itemOffset = e.NumberOfItems;  
            int endOffset = itemOffset + itemsPerRequest;  
            if (endOffset > data.Rows.Count)  
            {  
                endOffset = data.Rows.Count;  
            }  
            if (endOffset == data.Rows.Count)  
            {  
                e.EndOfItems = true;  
            }  
            else  
            {  
                e.EndOfItems = false;  
            }  
 
 
            for (int i = itemOffset; i < endOffset; i++)  
            {  
                RadComboBoxItem boxItem =  
                    new RadComboBoxItem(data.Rows[i]["companyName"].ToString(), data.Rows[i]["companyName"].ToString());  
                boxItem.Font.Size = FontUnit.Point(8);  
                FindCompanyBox.Items.Add(boxItem);  
 
            }  
 
            if (data.Rows.Count > 0)  
            {  
                e.Message = String.Format("Items <b>1</b>-<b>{0}</b> out of <b>{1}</b>", endOffset.ToString(), data.Rows.Count.ToString());  
            }  
            else  
            {  
                e.Message = "No matches";  
            }  
        }  
        catch  
        {  
            e.Message = "No matches";  
        }  
 
    } 

And the problem is :

If I mach data from database to RadComboBox, the lines witch data disapear after loaded.
If I move RadComboBox outside of RadGrid and insted of :
  GridEditFormItem item = e.Item as GridEditFormItem;  
  FindCompanyBox = (RadComboBox)item.FindControl("findCompanyBox");

I call simply :
  findCompanyBox.Items.Add(boxItem);
without finding component, everything work well .

Where is the solution ??

Regards
Krzysztof


Yana
Telerik team
 answered on 22 Dec 2008
1 answer
173 views
I have a radEditor within a user control that gets displayed within a radGrid Edit Form (both using classic radControls). I set the radEditor width to a fixed value in code behind. But when the edit form (user control) is displayed, the width of the editor is much larger than it's parent container and the fixed value that it was set to. It sometimes appears to go under the parent container into another layer. Has anyone seen this behavior and know how to resolve it?
Rumen
Telerik team
 answered on 22 Dec 2008
1 answer
160 views
I am trying to integrate radcontrols to my site. I have installed the latest version of radcontrols. I get an error when I go to a page that has ajax enabled controls:

The control with ID 'RadTreeView1' requires a ScriptManager on the page. The ScriptManager must appear before any controls that need it.

I have a scriptmanager control on the master page.
Below is my web.config file:
<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
    <configSections>
        <section name="microsoft.web.services3" type="Microsoft.Web.Services3.Configuration.WebServicesConfiguration, Microsoft.Web.Services3, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
        <section name="SubSonicService" type="SubSonic.SubSonicSection, SubSonic" requirePermission="false"/>
        <sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
            <sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
                <section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/>
                <sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
                    <section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="Everywhere"/>
                    <section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/>
                    <section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/>
                    <section name="roleService" type="System.Web.Configuration.ScriptingRoleServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/></sectionGroup>
            </sectionGroup>
        </sectionGroup>
    </configSections>
    <connectionStrings>
    </connectionStrings>
    <SubSonicService defaultProvider="ConsumerCartel">
        <providers>
            <clear/>
            <add name="thename" type="SubSonic.SqlDataProvider, SubSonic" connectionStringName="thename" generatedNamespace="thename.Utilities"/>
        </providers>
    </SubSonicService>
    <appSettings>

    </appSettings>
    <system.web>
        <!--
            Set compilation debug="true" to insert debugging
            symbols into the compiled page. Because this
            affects performance, set this value to true only
            during development.
        -->
        <compilation debug="true">
            <!--
      <assemblies>
                <add assembly="Microsoft.Web.Services3, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
                <add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
                <add assembly="System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                <add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                <add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                <add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
                <add assembly="System.Web.Extensions.Design, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
            </assemblies>
        -->
            <assemblies>
                <add assembly="Microsoft.Web.Services3, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
                <add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                <add assembly="System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                <add assembly="System.Drawing.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                <add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                <add assembly="System.Configuration, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                <add assembly="System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                <add assembly="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                <add assembly="System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                <add assembly="System.Web.Services, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                <add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                <add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
                <add assembly="System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                <add assembly="System.Data.DataSetExtensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                <add assembly="System.Web.Extensions.Design, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/></assemblies>
        </compilation>
        <pages>
            <controls>
                <add tagPrefix="ajax" namespace="Microsoft.Web.UI" assembly="Microsoft.Web.Extensions"/>
                <add tagPrefix="ajax" namespace="Microsoft.Web.UI.Controls" assembly="Microsoft.Web.Extensions"/>
                <add namespace="AjaxControlToolkit" assembly="AjaxControlToolkit" tagPrefix="ajaxToolkit"/>
                <add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
                <add tagPrefix="asp" namespace="System.Web.UI.WebControls" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/></controls>
        </pages>
        <httpHandlers>
            <add path="Telerik.Web.UI.WebResource.axd" verb="*" type="Telerik.Web.UI.WebResource, Telerik.Web.UI" validate="false"/>
            <remove verb="*" path="*.asmx"/>
            <add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
            <add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
            <add verb="GET,HEAD" path="ScriptResource.axd" validate="false" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/></httpHandlers>
        <!--<httpRuntime maxRequestLength="22192" />-->
        <httpRuntime maxRequestLength="2212"/>
        <!--
            The <authentication> section enables configuration
            of the security authentication mode used by
            ASP.NET to identify an incoming user.
        -->
        <authentication mode="Windows"/>
        <!--
            The <customErrors> section enables configuration
            of what to do if/when an unhandled error occurs
            during the execution of a request. Specifically,
            it enables developers to configure html error pages
            to be displayed in place of a error stack trace.
    
    <customErrors mode="RemoteOnly" defaultRedirect="error.aspx">
      <error statusCode="403" redirect="NoAccess.htm" />
      <error statusCode="404" redirect="FileNotFound.htm" />
    </customErrors>
    -->
        <globalization requestEncoding="utf-8" responseEncoding="utf-8"/>
        <webServices>
            <soapExtensionImporterTypes>
                <add type="Microsoft.Web.Services3.Description.WseExtensionImporter, Microsoft.Web.Services3, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
            </soapExtensionImporterTypes>
        </webServices>
        <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>
        <directoryBrowse enabled="true"/>
        <handlers>
            <remove name="WebServiceHandlerFactory-Integrated"/>
            <remove name="ScriptHandlerFactory"/>
            <remove name="ScriptHandlerFactoryAppServices"/>
            <remove name="ScriptResource"/><add name="ScriptResource.axd_GET,HEAD" path="ScriptResource.axd" verb="GET,HEAD" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" preCondition="integratedMode,runtimeVersionv2.0"/>
            <add name="*_AppService.axd_*" path="*_AppService.axd" verb="*" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" preCondition="integratedMode,runtimeVersionv2.0"/>
            <add name="*.asmx_*" path="*.asmx" verb="*" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" 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"/></handlers>
            <validation validateIntegratedModeConfiguration="false"/>
        <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></system.webServer>
    <runtime>
        <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
            <dependentAssembly>
                <assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35"/>
                <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/>
            </dependentAssembly>
            <dependentAssembly>
                <assemblyIdentity name="System.Web.Extensions.Design" publicKeyToken="31bf3856ad364e35"/>
                <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/>
            </dependentAssembly>
            <dependentAssembly>
                <assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35"/>
                <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/></dependentAssembly>
            <dependentAssembly>
                <assemblyIdentity name="System.Web.Extensions.Design" publicKeyToken="31bf3856ad364e35"/>
                <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/></dependentAssembly></assemblyBinding>
    </runtime>
    <microsoft.web.services3>
        <messaging>
            <mtom clientMode="On"/>
        </messaging>
    </microsoft.web.services3>
    <system.codedom>
            <compilers>
                <compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CSharp.CSharpCodeProvider,System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" warningLevel="4">
                    <providerOption name="CompilerVersion" value="v3.5"/>
                    <providerOption name="WarnAsError" value="false"/></compiler>
                <compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.VisualBasic.VBCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" warningLevel="4">
                    <providerOption name="CompilerVersion" value="v3.5"/>
                    <providerOption name="OptionInfer" value="true"/>
                    <providerOption name="WarnAsError" value="false"/>
        </compiler>
      </compilers>
  </system.codedom>
</configuration>


I have used these control extensively in the past and am baffled as to why this is not working. I also have my project referencing the following dlls:
RadAjaxNet2.dll
RadEditor.Net2.dll
RadGrid.Net2.dll
RadMenu.Net2.dll
Telerik.Web.UI

I can reference the scriptmanager from the code behind, so the application sees that it is there, and if I remove all the ajax enabled controls and the code that goes along with them, the page will render the javascript that the scriptmanager generates, so I am at a loss, any help would be greatly appreciated. This application is also building using the .net 3.5 framework.
Thanks in advance

Paul
Telerik team
 answered on 22 Dec 2008
1 answer
131 views
function fnAlert()
{      
radalert(1);
radalert(2);
radalert(3);
}

When this function is called first alert is displayed. On clicking ok button in the alert, the screen gets frozen.
This is working fine in Mozilla but not in IE 7.
How to make all three alerts display with out the above said issue ?

Thanks,
SudhaKaran S.
Georgi Tunev
Telerik team
 answered on 22 Dec 2008
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?