
Hi,
My application sets custom attributes from code-behind which works fine. The application also updates the value of appointment attributes in client-side code, e.g:
myClientSideAppointment.get_attributes().setAttribute("attributeName", someNewValue);
This is all fine until I move or resize an appointment with the mouse. It appears that the appointment attributes then revert to their originally-bound values, because when I subsequently click on an appointment after dragging or resizing it, the old attribute values are rendered by my click-handler code. Has anybody else seen this? (I'm using Internet Explorer 8 and the ASP.NET Ajax controls version 2010.2.929.35)
Hi,
I am working on a web application using Telerik FileExplorer with custom implementation as explained here, as I had to point the application to physical and Shared paths for browsing a set of folders from A-Z , which includes numerous sub-folders and files (refer attached Screenshot1.JPG). Each folder holds the subfolders starting with the Root folder name (A-Z)… for e.g. Folder A contains subfolders AGGH, AJJJ,AYYY etc Folder B contains subfolders BSSS,BHHHE,BYUU etc. Following is the tree view structure:
Root
--- Folder A
---Sub Folder AGGH
---Sub Folder AJJJ
---Sub Folder AYYY
--- Folder B
---Sub Folder BSSS
---Sub Folder BHHHE
---Sub Folder BYUU
I also have a lookup text box to search for a sub folder (e.g. AGGH,BYUU etc) and based on the input in the textbox, the Sub folder would be auto-selected. My requirements are:
Thanks for your quick response.
-Vineeth

<telerik:RadCodeBlock ID="RadCodeBlock1" runat="server"> <script type="text/javascript"> </script> </telerik:RadCodeBlock> RadGrid ID=”RadGrid1” MasterTableView DetailTables GridTableView EditMode=”Popup” EditFormSettings Columns FormTemplate Formview <telerik:GridCheckBoxColumn DataField="TestTitle" HeaderText="Title?" UniqueName="Test1"> </telerik:GridCheckBoxColumn> <telerik:GridNumericColumn DataField="TestNbr" HeaderText="Number" UniqueName="Test2" </telerik:GridNumericColumn>
public enum MaskTypeSet { Numbers, Letters, Custom, None }
public MaskTypeSet MaskType
{
get
{
object val = ViewState["MaskType"];
if (val == null)
return MaskTypeSet.None;
return (MaskTypeSet)val;
}
set
{
ViewState[
"MaskType"] = value;
}
}
If i set MaskType other than 'none' it is throughing this error.
PFA
Please help