
I've look through all the available examples for the integration of odata in grid and none was helpful, maybe what I want is not available with radgrid for asp.net.
What I want : A simple server side datasource binding to a odata source like if I was binding to a entity collection.
I want the most simple example to demonstrate that its simple to group, sort and filter an odata feed through a telerik grid. My feed is a odata v3. I do not want client-side binding because it tends to be complexe scripting option.
I want something like that :
var grid = new radgrid();
grid.datasource = new IDatasource("http://someithing/odata") // theres any Odatadatasource implementing IDatasource?
grid.autogeratecollumns = true
grid.enablegrouping = true
grid.enablesorting = true
grid.enablefiltering = true
Thanks for any help!
Hi,
We are using radgrid and in itemdatabound we are using below code to get the text but when we are trying to read values we are getting " ". This started happening after we upgraded to latest telerik dll. we were able to read values with the old telerik dll. Is this a known issues if so what options do we have in reading the values of GridDataItem in ItemDataBound event.
Dim lblColumnName As Label = DirectCast(item.FindControl("lblColumnName"), Label)
lblColumnName.Text = item.Item("ColumnName").Text

Hello everybody
I want to create something like this
http://demos.telerik.com/aspnet-ajax/scheduler/examples/overview/defaultcs.aspx
but i have no idea how My calendars area : "Personal" and "Work" is working, how they are saved in database (what are columns in database) and how tasks are changing colors based on the My calendars area. When i save a new task how i am able to save it differently i mean for personal and for work.
please help me with this functionality. i have no clue about it.
Thank you

<
script type="text/javascript">
Telerik.Web.UI.Editor.CommandList[
"Custom1"] = function(commandName, editor, args)
{
DoLoadNewPhoto();
};
</
script>
var
str = '<img id="Tempdivphoto{1}" alt="" src="/BCW_Web/PhotoFeeders/GetNewTempForumPostPhotoThumbNail.aspx?ForumPostTempPhotoIndex={2}"/>'
var tempstr = String.format(str, temvt.get_Title(), indexcount, TempPhotoArrayIndex);
temvt.set_ObjectString(tempstr);
$find(Posteditor).setFocus();
$find(Posteditor).pasteHtml(tempstr);
but always it inserts at the top instead of where the insertion point originally was.
I have a step in my wizard that collects basic information for the user AND the user's spouse but only if the user chose Include Spouse in a previous step.
One way I've thought of resolving this is by duplicating the step called Personal Details in the first one having the input controls for only the user and in the duplicate have input controls for both the user and the spouse. Then if the user chooses to include Spouse we can just hide/remove the unecessary step?
There doesn't seem to be anything in the API that allows you to affectively Switch Off steps and by that I mean they should dissappear out of the navigation and progress bars and the next button should know to skip them if they are switched off.
WizardStep.hide - just hides the content of the step
WizardSteps.remove - throws exception "TypeError: c.unselect is not a function" (Javascript)
WizardSteps.removeAt - same as previous exception
