Hi
Is there an easy way to style a LinkButton as a regular hyperlink? I would like the visuals of a HyperLink but have the event handling of the button
I really don't know this question belongs to this category. But I think this will be most suitable place for this question.
Here is my situation.
I am making a dynamic form with a help of this article article.
Here you can see it use kendo template .
<script id="fieldsTemplate" type="text/x-kendo-template">
<li>
<label data-bind="attr: { for: name}, text: label"></label>
<input data-bind="attr: { type: type, name: name, class: css}" # if (get("required")) {# required #} # />
</li>
</script>
After form generated this form is just use HTML5 make the form. It does't have kendo attribute. for a example if I bound data-role attribute and value is numerictextbox It doesn't give me a numeric text box(Think its' type is number). It doesn't have those properties.( if I type a number it doesn't show the default decimal point. It only shows that number.)
But in this example says if we add data-role attribute and value as numerictextbox it will be a numeric text box.
But in documentation or in this , it seems I have to call kendoNumericTextBox method to make a numeric text box.
Even I try to add this code to template but it doesn't work(Please assume that I add this correctly with this ).
$("#mytextboxid").kendoNumericTextBox();
So what option do I left ??
Thank you very much.
Hi,
I have one appointment for two time slots on same day for example
Subject : Appointment 1
Id : 1218
Start time : 8 AM
Date : 09/03/2015
Subject : Appointment 1
Id : 1218
Start time : 11 AM
Date : 09/03/2015
when I try to delete 11 AM appointment, scheduler is deleting 8 AM appointment. Even in AppointmentDelete event am getting start time as 8 AM.
Can any one please help me out to resolve this issue.
Regards,
Maddela

I'm using the scheduler with webservice databinding.
Is it possible to enable the context menu for some appointments, but not for all? If so, how could that be accomplished?

RadImageGallery is not displaying any image.
<telerik:RadImageGallery ID="rigRMA" runat="server" OnNeedDataSource="rigRMA_NeedDataSource" DataImageField="FILE_PATH" DataThumbnailField="FILE_PATH" DataKeyNames="FILE_PATH" Visible="false" DataTitleField="FILE_NAME" Width="647px" Height="480px" LoopItems="true"> <ThumbnailsAreaSettings ThumbnailWidth="120px" ThumbnailHeight="80px" Height="80px" /> <ImageAreaSettings Height="400px" /> </telerik:RadI
protected void rigRMA_NeedDataSource(object sender, ImageGalleryNeedDataSourceEventArgs e)
{
rigRMA.DataImageField = "FILE_PATH";
rigRMA.DataSource = GetView();
}
mageGallery>I have a RadGrid that is bound to a SQL database. On the select statement I generate a column that is not in the table. "SELECT '-' as [CheckBox] ...". I then use the ItemDataBound(object sender, Telerik.Web.UI.GridItemEventArgs e) event on the RadGrid to add a column of check boxes (one on each row). The user selects certain check boxes (specifying a row) and presses a submit button. How can I read what rows were selected?
I do not use the information to update the database. The database is used for management and does not change. If I can't read the selection is there a different way to do this? Using a RadGrid is just so nice so I would like to keep using that, but I don't need to bind it to a database.
Thanks,
Scott

Hello,
I've been working with radgrids lately and they are working very inconsistently for me.
Here is my latest grid:
[CODE] <telerik:RadGrid ID="PermissionsGrid" runat="server" AllowPaging="True" CellSpacing="0" GridLines="None" AutoGenerateColumns="false" OnPageSizeChanged="PermissionsGrid_PageSizeChanged" OnPageIndexChanged="PermissionsGrid_PageIndexChanged" OnNeedDataSource="PermissionsGrid_OnNeedDataSource" EnableLinqExpressions="False" Skin="Tabbed" EnableEmbeddedSkins="False" AllowCustomPaging="True" OnPreRender="PermissionsGrid_PreRender" OnInit="PermissionsGrid_Init"> <ClientSettings> <Selecting AllowRowSelect="false"></Selecting> <Scrolling AllowScroll="True" UseStaticHeaders="true"></Scrolling> <Resizing AllowColumnResize="True" /> </ClientSettings> [/CODE]
However the pageindexchanged event was not fiiring, therefore I added rebind on postback, which then fired onneeddatasource which made the page index changed event fire only then, which was very weird, as well it only worked if i did databind on the radgrid once again (rebind was not working).
Now I am having problem with PageSizeChanged event, was not inteding to put it, but it is not working for me at all. However this time it's neither fiiring even after rebinding on postback and I cant seem to find why.
Init and prerender are only for nestedViewTemplate purposes, therefore there is nothing interesting there.
I am using one of the newer telerik controls (2015.2.623.35)
As well as the pager dissapears even if I set pager style on mastertableview as always visible, on in the grid itself and even in the code, it does not intend to stay even with all this code on its back. I am out of ideas and I need help with this.
