Hello
I'm trying to bind a List view to a JSON object, simplified to:
{ "Data":[ { "<ClaimItemID>k__BackingField":256, "<MasterClaim>k__BackingField":{ "<PoliceStation>k__BackingField":"Bobville", }, "<AdditionalDetails>k__BackingField":"", "<ItemDescription>k__BackingField":"Lilly ", } ], "Count":1}<div>#= ClaimItemID #</div>
is working as expected
but
<div>#= MasterClaim.PoliceStation #</div>
is throwing this error
Error rendering ItemTemplate in lstClaims: MasterClaim is not defined
what am i doing wrong?
Hello,
I'm trying to figure out how to set the "SpecialDays", "RecurringEvents", and "ItemStyle-BackColor" of the rendered RadDatePicker for the RadDateTimeColumn in my RadGrid during edit mode. I want the user to see today's date highlighted when they click on the DatePicker. It's easy to do this in a regular RadDatePicker control, but I don't know how to do this in a RadGrid. Any help is appreciated.
Thanks,
Shawn A.

I have a Parent Child Radgrid set up and need to store the page index to handle the actions of a returning to the page after a redirect.
I am trying this code in the Item Command area:
if (e.CommandName == RadGrid.PageCommandName) { GridPagerItem item = e.Item as GridPagerItem; GridTableView view = item.Parent.Parent.NamingContainer as GridTableView; if (view.Name == "child") { string message = string.Format("Details table page index changed, current page index : {0}", view.CurrentPageIndex.ToString()); RadAjaxManager1.Alert(message); } else { string message1 = string.Format("Parent RadGrid page index changed, current page index : {0}", RadGrid1.MasterTableView.CurrentPageIndex.ToString()); RadAjaxManager1.Alert(message1); } //************ }Every time I change my page the results remain at page index = 0. How can I get this to store the correct page index?
I'm looking into replacing our current HTML editor with the Telerik version and the track changes and comments caught my eye. But we have different user roles, where State users can enter text, images etc in the editor. We have another group that can read the text but can not make any changes at all. is it possible for the read-only user be able to see the tracked changes (before being accepted) and the entered comments and still not be able to make any changes?
thanks
Hi,
would like to know if the Telerik editor supports uploading existing word document templates having macros in it and running those macros within the editor. if not, is there an alternate solution to achieve same or similar functionality? thanks in advance.
regards,
Rama
For a given diagram, is there an easy way to walk the diagram and determine, for each shape, what the interconnects are between that shape and any other shape and on what shape nodes? For the example, in the attached workflow diagram, there are 5 shapes with interconnects as follows:
Ideally, I need to be able to divine, for each shape, all interconnects to/from other shapes along with the specific connection node and the direction of flow (based on start cap/end cap). I have examined the diagram object of a sample workflow and the info I'm looking for appears to all be there but it putting it all together seems to be quite convoluted. Is there perhaps a working example available that demonstrates some of what I'm attempting to do?
Thanks.

Hello,
I have a RadGrid with batch editing enabled. The columns are a mixture of GridDataboundColumn and GridTemplateColumn
At the moment its configured that edit changes are saved whenever the cell being edited looses focus.
I would like to get to the point where I can have a user make an edit, then once they’ve hit the tab key it saves the cell and then moves focus to the next editable cell in the row.
I’ve enabled KeyboardNavigation but each time the grid saves its looses its place so that tab does not work.
Is this possible – Can you provide an example please?
editor.fire("DeleteTable");