I am using a sql dataset and binding to the scheduler fine including several appointments that recur. However, on more than one occasion, I have used the recurrence editor to set a weekly or monthly event and I get
A circular reference was detected while serializing an object of type 'System.Data.DataView'.
The specific item where recurrence was just set is this
ID 210
Subject 'whatever'
Description 'whatever'
Start 2010-07-06 07:00:00.000
End 2010-07-06 08:00:00.000
RecurrenceRule DTSTART:20100706T070000Z DTEND:20100706T080000Z RRULE:FREQ=WEEKLY;UNTIL=20110701T000000Z;INTERVAL=
If I clear out the recurrence rule, all is well.
In the recurrence editor, am I skipping/not setting something properly? I edited the entire series, specified weekly recurrence on Tuesday, and set the end by to June 30 2011 and saved. after the save, the calendar displays fine. It is when I close the browser and revisit this same data, that I get the error, i.e. on initial binding. Any help appreciated.
I want to display lots of data in RadGrid in which there will be some child controls in the grid which are having some events.
My point is here.. with this huge data if I call those events from server side it will definitely takes some time. I want a solution to
reduce the time using any client side techniques. How to call events using Javascript client side techniques?
If anyone of you know help please help me in this connection.
How do you use RadSyncUpload with MVC? Do you have any example code that I can look at? I took a look at the images uploader demo, but I'm not sure how to apply that to MVC.
I would like to create a RadMaskedTextBox for Date of Birth Entry. However, if I simply use a mask of ##/##/####, this will allow values which are potentially invalid numbers. Is there a mask that I can use for a Date of Birth entry like <1..12>/<1..31>/<1920..DateTime.Now.Year>?
in command one or more check box are checked
i check going to insert the record
i fill the record first time. that record only stay for last time it's self .
how i solve this
which record selected that record going to saved but one condition
that already check in and save .
select a.Contract_Description from Asset_Service_Contracts a, Asset_Service_Contracts b " +
" where a.Contract_AssetID is null and a.Contract_Description = '" +
name + "' and " +
" a.Contract_Description=b.Contract_Description
else if (e.CommandName == "RowClick")
{
DataTable dt1 = new DataTable();
DataTable dt2 = new DataTable();
foreach (GridDataItem item1 in RadGrid_ServiceContracts.SelectedItems) // Loop through each selected items
{
Response.Write(item1["ContractID"].Text.ToString()); // Where ID is the ColumnUniqueName
Response.Write(item1["Contract_Description"].Text.ToString()); // Where ID is the ColumnUniqueName
string ID = item1["ContractID"].Text;
string name = item1["Contract_Description"].Text;
try
{
string selectQuery = " select a.Contract_Description from Asset_Service_Contracts a, Asset_Service_Contracts b " +
" where a.Contract_AssetID is null and a.Contract_Description = '" + name + "' and " +
" a.Contract_Description=b.Contract_Description ";
sqladp.SelectCommand = new SqlCommand(selectQuery, sqlconn);
sqladp.Fill(dt1);
int i = dt1.Rows.Count;
dt1 = null;
if (i == 0)
{
I have this issue. I have a table1 with column Info (Ntext).
And aspx page with RAD EDITOR.
I am using UPDATE operation with N for special character and RADEDITOR.TEXT property, which will save entered text to my table.
But I want to load that saved data back to RAD EDITOR on other page, but to keep the formatting, because after saving with
RADEDITOR.TEXT property the text displayed on RADEDITOR is in flat format - all loaded text from database is appear on one row only?
I don't want to use here radeditor.content property, because i am using that column after that to generate some reports on word and i will need data in this way for generating special symbols on word, and i need to use RADEDITOR.TEXT property instead of .CONTENT property. But after that i have loading issue on radeditor- evrtng is appearing on one row?
How can i avoid this?
Is it possible using RadEditor.Content property to save â„¢ as â„¢ in datatable instead of &trade?
I have a few rad panels on the same page, and i keep getting the same errors when i try and update the panels. I am attaching my solution for your review.
Here is the code for the page:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
Message: Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 405
Line: 6
Char: 84093
Code: 0
URI: http://localhost/ShopfloorNew/Telerik.Web.UI.WebResource.axd?_TSM_HiddenField_=RadScriptManager1_TSM&compress=1&_TSM_CombinedScripts_=%3b%3bSystem.Web.Extensions%2c+Version%3d4.0.0.0%2c+Culture%3dneutral%2c+PublicKeyToken%3d31bf3856ad364e35%3aen-US%3a1f68db6e-ab92-4c56-8744-13e09bf43565%3aea597d4b%3ab25378d2
Can you implement animations for the Ended (or ending) methods please?
I've done this so many times myself I really would like to save some time\code in the future :)
So on callback completed, have the resulting string rendered with a jQuery fade or slide animation after it's rendered in the panel so it doesn't just "pop" in
So again, I don't need the code to do this, I just would like a PITS item to get it added for a future release please :)
I have a two grids to do drag drop with. One grid contains child view. If I select more than one child items (from different views) and drage them, the destination gets only one item dragged and not other.
For example, I have products Like this
Product A
child 1
Child 2
Product B
Child 3
Child 4
If I select Child 1 and Child 3, and drag them, I only get either Child1 or Child 3, not both.
Is that by design? Or there is something I might be missing? If I select Product A and Product B, both are dropped fine on destinaion grid.