I wasn't quite sure where to post this but I figured here was as good as any. When viewing the JS Kendo UI Demos for the Calendar (http://demos.telerik.com/kendo-ui/calendar/disable-dates), the second calendar example under Disabled Dates shows the calendar with all federal holidays disabled. These are both helpful examples but it took me a few minutes to realize that the federal holidays are for year 2015. At first it appeared the example was broken but jumping back to December 2015 showed Christmas Day 12/25/2015 blocked out. Upon further investigation, I noticed all the dates in the code sample were for 2015. While this isn't necessarily a bad thing, it may give the impression (as it did with me at first) that the demo is broken and doesn't work as suggested. Is it possible to update these dates accordingly?
Hello community and Telerik employees,
And especially to Telerik:
Would it be a good idea not to display a full screen .Net developer survey request every time you open up a page at the docs section?
It's getting quite annoying and really asks for people not to fill in the survey seriously and thus messing up your survey results.
Yesterday after being bugged for the -lost -count- time I decided to fill it in, hoping it would store a cookie or something and stop bugging me over and over again with the survey. Unfortunately today it keeps blocking the entire screen again.
Not sure how other people experience this neither if this is the right forum thread to post this.. just needed to get this out of my system.
Best regards,
Ed
I have a RadGrid inside of a RadPanelItem that is being bound via a DataSourceID in the markup. The Update and Delete functions are defined within an SQLDatasource object and are working fine.
However, I have chosen to write my own markup to customize the look and feel by implementing my own design just above the RadGrid inside of a div with labels and buttons to perform addition of a record to the Grid.
When the Add button is clicked, an ajax call is made via javascript to a webservice PageMethod that performs the addition of a record and then rebinds the grid.
The problem I am having is after the RadGrid is rebound, the div above the RadGrid and all its content is gone and only the RadGrid remains on the page. The only way to have all the content displayed as it was before rebinding the Grid is to perform a PostBack of the entire page which isn't acceptable. I'd like the entire RadPanelItem to appear as it was before the Grid Rebind event. I don't know why Rebinding the Grid should affect all the content in the RadPanelItem.
I have attempted to resolve the issue by placing only the RadGrid inside of a RadAjaxPanel but the results are the same although the loading image clearly indicates that only the RadGrid should be affected.
How can I refresh the RadGrid content without loosing the layout of other items within the Panel Item? This behavior does not seem correct.
<
telerik:RadPanelBar
runat
=
"server"
ID
=
"pnlAdminConsole"
Height
=
"680"
Width
=
"100%"
ExpandAnimation-Type
=
"InOutSine"
ExpandMode
=
"SingleExpandedItem"
<
Items
>
<
telerik:RadPanelItem
Text
=
"Other Tasks"
Value
=
"Other Tasks"
HoveredImageUrl
=
"../Images/folderopen.gif"
SelectedImageUrl
=
"../Images/folderopen.gif"
ImageUrl
=
"../Images/folderclose.gif"
Expanded
=
"false"
<
ContentTemplate
>
<
div
class
=
"cssPanelItem"
>
<
img
id
=
"Img1"
src
=
"../Images/comingsoon.png"
runat
=
"server"
/>
</
div
>
</
ContentTemplate
>
</
telerik:RadPanelItem
>
<
telerik:RadPanelItem
Text
=
"Manage User Access"
Value
=
"Manage User Access"
HoveredImageUrl
=
"../Images/folderopen.gif"
SelectedImageUrl
=
"../Images/folderopen.gif"
ImageUrl
=
"../Images/folderclose.gif"
Expanded
=
"false"
>
<
ContentTemplate
>
<
div
class
=
"cssPanelItem"
>
<
div
class
=
"container well"
id
=
"NewUserHeader"
style
=
"height:175px;"
>
<
div
class
=
"row"
>
<
div
class
=
"col-sm-12"
>
<h4><label>Create New User</label></h4>
</
div
>
</
div
>
<
div
style
=
"position:relative;margin-left:auto;margin-right:auto;height:50px;"
class
=
"row"
>
<
div
class
=
"col-sm-3"
>
<
label
>First Name</
label
>
</
div
>
<
div
style
=
"position:relative;left:-50px;"
class
=
"col-sm-2"
>
<
label
>Last Name</
label
>
</
div
>
<
div
style
=
"position:relative;"
class
=
"col-sm-3"
>
<
label
>Email</
label
>
</
div
>
<
div
style
=
"position:relative;left:-50px;"
class
=
"col-sm-2"
>
<
label
>Phone</
label
>
</
div
>
<
div
style
=
"position:relative;left:-40px;"
class
=
"col-sm-2"
>
<
label
>Enable Admin Access</
label
>
</
div
>
</
div
>
<
div
style
=
"position:relative;top:-30px;left:10px;"
class
=
"row"
>
<
div
class
=
"col-sm-3"
>
<
input
style
=
"margin-left:5px;"
type
=
"text"
id
=
"txtUserFirstName"
/>
</
div
>
<
div
style
=
"position:relative;left:-60px;"
class
=
"col-sm-2"
>
<
input
style
=
"margin-left:5px;"
type
=
"text"
id
=
"txtUserLastName"
/>
</
div
>
<
div
style
=
"position:relative;"
class
=
"col-sm-3"
>
<
input
style
=
"position:relative;left:-7px;"
type
=
"text"
id
=
"txtUserEmail"
/>
</
div
>
<
div
style
=
"position:relative;left:-69px;"
class
=
"col-sm-2"
>
<
input
type
=
"text"
id
=
"txtUserPhone"
style
=
"margin-left:5px;"
name
=
"txtAdminPhone"
maxlength
=
"14"
/>
</
div
>
<
div
style
=
"position:relative;left:-23px;top:5px;"
class
=
"col-sm-2"
>
<
input
type
=
"checkbox"
style
=
"margin-left:5px;"
id
=
"chkEnableAdminAccess"
/>
</
div
>
</
div
>
<
div
style
=
"position:relative;top:-20px;"
class
=
"row"
>
<
div
class
=
"col-sm-12 col-sm-push-10"
>
<
input
onclick
=
"ValidateNewUser();"
type
=
"button"
class
=
"btn-sm"
value
=
"Add New User"
/>
</
div
>
</
div
>
</
div
>
<
div
class
=
"container"
>
<
telerik:RadAjaxLoadingPanel
ID
=
"RadAjaxLoadingPanel1"
runat
=
"server"
></
telerik:RadAjaxLoadingPanel
>
<
telerik:RadAjaxPanel
ID
=
"RadAjaxPanel1"
runat
=
"server"
LoadingPanelID
=
"RadAjaxLoadingPanel1"
>
<
div
class
=
"row"
>
<
div
id
=
"gridAdminContainer"
style
=
"position:relative;left:-15px;top:-30px"
class
=
"col-sm-12"
>
<
telerik:RadGrid
ID
=
"gridUsers"
DataSourceID
=
"AdminDataSet"
ViewStateMode
=
"Enabled"
EnableViewState
=
"true"
OnDataBound
=
"gridUsers_DataBound"
AllowSorting
=
"true"
PagerStyle-Mode
=
"Slider"
runat
=
"server"
AllowAutomaticUpdates
=
"true"
AllowAutomaticDeletes
=
"true"
AutoGenerateColumns
=
"true"
MasterTableView-DataKeyNames="UserID, UserName,
FirstName, LastName, Email, AllowAdminAccess"><
MasterTableView
EditMode
=
"InPlace"
AllowPaging
=
"true"
PagerStyle-Mode
=
"Slider"
>
<
PagerStyle
AlwaysVisible
=
"true"
/>
<
Columns
>
<
telerik:GridEditCommandColumn
ButtonType
=
"FontIconButton"
EditText
=
"Edit"
/>
<
telerik:GridButtonColumn
Text
=
"Delete"
CommandName
=
"Delete"
ButtonType
=
"FontIconButton"
/>
</
Columns
>
</
MasterTableView
>
<
ClientSettings
AllowKeyboardNavigation
=
"true"
>
<
Selecting
AllowRowSelect
=
"true"
/>
<
Scrolling
AllowScroll
=
"true"
ScrollHeight
=
"500"
/>
</
ClientSettings
>
</
telerik:RadGrid
>
</
div
>
</
div
>
</
telerik:RadAjaxPanel
>
</
div
>
</
div
>
</
ContentTemplate
>
</
telerik:RadPanelItem
>
</
Items
>
</
telerik:RadPanelBar
>
We have a 3-week contract opportunity in the UK to provide training and script writing for a company that have implemented Telerik and want to do better system-level testing. The start date is as soon as possible and the work should ideally be completed before Christmas 2015. It is possible that there will be a contract extension in 2016.
Please contact steve.green@testpartners.co.uk for further details.
Hello,
More than a year ago we bought a Kendo UI license and one of our developers has worked with it and finished his work on a project half a year ago. After that product was in internal testing and tunning phase and we plan to publish it for publish in a few weeks. Is it ok if our license has been expired few months ago?
Does Kendo license somehow affect sites which were released after license expiration?